Hi again, I finally worked it out!
Thanks for not making it too easy for me just to cut and paste, feel like I learned something.
You have no idea of the sense of accomplishment I'm feeling right now!
Hi, Ideally I'd like to take a text file list with thousands of lines of text and turn each line of text into an individual image with a transparent background and white text. So far all I've managed to do is turn the whole list in to a single image, as for chopping it up it really is beyond me at ...
try mogrify -background transparent -units pixelspercentimeter -density 37.8 -depth 8 -format png *.svg But I am not sure it will work, because it may try to do -background transparent after reading the svg and not before as per my convert command. If it does not work, then you may have to write a ...
How about this one: convert 00a9.svg -transparent white -background black -alpha background -units pixelspercentimeter -density 37.8 -depth 8 PNG8:00a9_im8c.png http://www.fmwconcepts.com/misc_tests/svg_tests/00a9_im8c.png or this one convert -background transparent 00a9.svg -units ...
Sorry, correct command and image are: convert 00a9.svg -transparent white -units pixelspercentimeter -density 37.8 -depth 8 00a9_im8b.png http://www.fmwconcepts.com/misc_tests/svg_tests/00a9_im8b.png Sorry no this one doesn't work. What about this one from your cloud link? http://www.fmwconcepts ...
Do either of these images work? convert 00a9.svg -transparent white 00a9_im16.png http://www.fmwconcepts.com/misc_tests/svg_tests/00a9_im16.png convert 00a9.svg -transparent white -depth 8 00a9_im8.png http://www.fmwconcepts.com/misc_tests/svg_tests/00a9_im8.png Using IM 6.9.7.9 Q16 Mac OSX If ...
Have you tried http://www.google.com/url?q=https://www.youtube.com/watch%3Fv%3DiJi47o1K6R0&sa=U&ved=0ahUKEwia0JWy9LDSAhVW9GMKHbvnDqYQtwIIFTAA&usg=AFQjCNHp7INA9Y_Wildr5zW4K3CJhoRQ1w Yeah that's what I've been doing and it works but I was wanting to add hundreds of images automatically and the only ...
Other pngs work fine in vegas ... Can you post a link to one of those? None that I have edited in imagemagick myself but just any transparent image will usually work fine 95%+ of the time easily in vegas. http://i.imgur.com/lr6lZND.png This png is from the original svg and works fine in vegas and ...
Ha I was hoping you'd know what it meant! ;-) When I load the png into sony vegas the transparency is black and I have to right click the png and choose properties/edit/ then click this option on alphachannel from "none" to "straight(unmatted)" and that fixes it https://i.gyazo.com ...
Hi. I converted some svgs into pngs and it was good. they looked fine with all the transparencies intact when i imported them to photoshop however when i imported the pngs into sony vegas all the transparencies show up as black and the only way that i know to fix it is to change the alpha channel ...
Thanks I ended up getting there after even more head scratching. Ran into a few problems like the transparencies turned to pure white so a bit of googling and I discovered the "-background none" option and yeah I needed to add the -density and I couldn't get your mogrify code working but I got there ...
Hi, I'm trying to batch resize and convert 1000+ svgs to pngs and I'm very confused. Ideally I'd like to resize all the svgs to 2160pixels x 2160pixels and then convert them to png. So far I can only convert and resize one at a time by typing the file name in manually and the end result is a mess as ...