I don't use Perl, but the documentation http://www.imagemagick.org/script/perl-magick.php says there is an "Evaluate()" method. Doesn't that work? Yeah, I saw the Evaluate method, and it looked like the way, but syntax examples were lacking. How does 'evaluate set 50%' translate into working ...
If I have an image without transparency, then how do I give it partial transparency the PerlMagick way? At the commandline, this can be achieved with something like this... convert input.png -alpha set -channel A -evaluate set 50% output.png So if anyone can show me how to do the same in perlmagick ...
Not sure what the standard font sizes are for ttf DejaVu-Sans-Mono-Bold. But having just tested for all sizes between 6pt and 22pt, I havent really found a sweet spot where unicode chars look accurate. So still having mixed results with ttf dejavu. And I'm still not sure why IM didn't render unicode ...
I want imagemagick to create an image of unicode chars that is sharp and accurate. And my attempts with ttf fonts worked okay, but didn't look exactly right. So I tried again with the fixed bitmap font, which I read has good unicode support, but the unicode chars failed to render at all ...
I'm looking to change the brightness of a set of icons. When I previously used imagemagick from the cmdline, the -brightness-contrast option worked fine. But as I look at the perlmagick webpage, I don't see that option there. So I ask, what is the best way to brighten some icons with perlmagick ...