Hah, sorry about not cropping the image! That should have been an obvious thing to me!
Anyway, thanks for the help! This is a
lot more than I was expecting, and now that I've figured out how to get the imagemagick functions working, (I feel like an idiot for not having figured it out sooner--it's so simple,) I think I'll be able to make the these images turn out looking halfway decent. I'm actually pretty excited about this. Thanks, again!
---
And another few questions, and ones that may be just as noobish as my last one, but if someone has an answer to this, it will help me save a bunch more time, and will be very helpful.
For some reason, I'm having a difficult time getting the convert command to run well for all the files within a folder (with the *.png and *.tif wildcards) -- but the mogrify command/program/whateveryouwouldcallit works fine. I think that's the one I'm supposed to use? Anyway, I've been trying it out, and it looks like this command works properly:
- Code: Select all
mogrify -format png -alpha set -transparent white *.tif
Is this correct? Should I be using a command similar to this? To be noted: I haven't tried playing around with the Masking with Anti-Aliased Edges yet; but to be honest, a good number of the images are looking just fine without that. Most have sharp, aliased borders, and go from a pure white background to the image themselves. The sample I put up here was a bit of an exception, actually. Still, I'm planning to work out how to make those few look at least a little smoother, too.
But anyway, my big question:
Is there a fairly simple way to cause this code to run for the folder you're in, as well as all subdirectories, so that I don't have to navigate through this complicated system of directories and run the command in each folder--and instead just run it once?
I'm thinking, if there's nothing simpler, that perhaps creating a .bat file of some sort might work?
P.S.: I've attempted using the /s parameter in the cmd window, and things glitch up when 'convert' tries to do stuff with the folders. I'm not sure what exactly the problem is, unfortunately.