Jump to content



Photo
- - - - -

Exporting reel images on the b2s designer?


  • Please log in to reply
3 replies to this topic

#1 Itchigo

Itchigo

    Pinball Wizard

  • Members
  • PipPipPipPipPip
  • 2,774 posts
  • Location:Chicago, Illinois

  • Flag: United States of America

  • Favorite Pinball: All




  • Trophies:

Posted 10 June 2024 - 10:28 PM

Is this possible? Can I export reel images from a table with reel images I like and use them on another backglass??

 

Or, does anyone know of an EM reel download?


Founder of Rogue Pinball! https://roguepinball.com/index.php                 Making Pinball great again!!

 

partylikeits1776-.jpg


#2 bluenmaize

bluenmaize

    Hobbyist

  • Members
  • PipPip
  • 29 posts

  • Flag: United States of America

  • Favorite Pinball: Attack from Mars

Posted 11 June 2024 - 12:35 PM

I don't believe you can export reel sets out of the b2s designer, but you can import them into it.  Just export whatever set you want from inside a tables images, chop it into 10 individual images, and import it into the b2s designer as a set starting from 0 and ending with 9.



#3 Itchigo

Itchigo

    Pinball Wizard

  • Members
  • PipPipPipPipPip
  • 2,774 posts
  • Location:Chicago, Illinois

  • Flag: United States of America

  • Favorite Pinball: All




  • Trophies:

Posted 11 June 2024 - 10:54 PM

Thanks Bluenmaize. I know how to add them, I used to all the time when I was converting vp9's to FS. I'd really love to be able to get reel images from say a Hauntfreaks EM to use on another backglass (for my own personal use). I can't find any of the old images I used to use though. They were not near as good as anything now, but if you have a backglass with the wrong reels you can understand. :shutup:

 

Unless anyone has some reel images for download?


Edited by Itchigo, 11 June 2024 - 10:55 PM.

Founder of Rogue Pinball! https://roguepinball.com/index.php                 Making Pinball great again!!

 

partylikeits1776-.jpg


#4 Manel

Manel

    Hobbyist

  • Members
  • PipPip
  • 16 posts
  • Location:Barcelona

  • Flag: Spain

  • Favorite Pinball: Underwater

Posted 30 November 2024 - 01:35 PM


- From the .directb2s file extract what is between Image=" and " to a text file.
- At that text file suppress all occurrences of 

- Convert the text file from Base64 to binary format, using a web like https://www.base64decode.org or the linux command base64 -d

Here there is a linux command that extracts all the images inside a file named name.directb2s file to files called ImageN.png:

n=1; for i in `cat 'name.directb2s' | grep -Go 'Image=\"[^"]*\"'`; do echo $i | sed -e 's/Image="//g' -e 's/"//g' | sed 's/
//g' | base64 -d > "Image$n.png" ; let n=n+1; done