Search found 9 matches

by phleagol
2018-04-02T16:26:11-07:00
Forum: PerlMagick
Topic: Howto give an image partial transparency
Replies: 3
Views: 47192

Re: Howto give an image partial transparency

Okay, I was on the right track. This works better. Thanks.

Code: Select all

$img->Set( alpha => 'Set' ) ;
$img->Evaluate( channel => 'Alpha', operator => "Multiply", value => .5 ) ;
by phleagol
2018-04-02T06:59:08-07:00
Forum: PerlMagick
Topic: Howto give an image partial transparency
Replies: 3
Views: 47192

Re: Howto give an image partial transparency

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 work...
by phleagol
2018-04-02T00:10:10-07:00
Forum: PerlMagick
Topic: Howto give an image partial transparency
Replies: 3
Views: 47192

Howto give an image partial transparency

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,...
by phleagol
2018-03-04T14:18:09-07:00
Forum: Users
Topic: Text images with unicode chars looking blurry.
Replies: 7
Views: 9087

Re: Text images with unicode chars looking blurry.

Bonzo wrote: 2018-03-04T14:12:25-07:00I am using Windows 10 and double clicking the file opens it in "Windows font viewer".
I am using Debian 9, and my file manager is ranger. Slightly awkward, but I will find a way...
by phleagol
2018-03-04T14:03:58-07:00
Forum: Users
Topic: Text images with unicode chars looking blurry.
Replies: 7
Views: 9087

Re: Text images with unicode chars looking blurry.

Bonzo wrote: 2018-03-04T08:01:08-07:00 If you click on a .ttf file it should open as an image showing the standard sizes.
Having trouble "opening" the ttf file. Which application is your file manager using to open ttf files plz? Thanx.
by phleagol
2018-03-04T06:17:45-07:00
Forum: Users
Topic: Text images with unicode chars looking blurry.
Replies: 7
Views: 9087

Re: Text images with unicode chars looking blurry.

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...
by phleagol
2018-03-04T03:56:11-07:00
Forum: Users
Topic: Text images with unicode chars looking blurry.
Replies: 7
Views: 9087

Text images with unicode chars looking blurry.

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. Disappointi...
by phleagol
2017-12-16T17:38:40-07:00
Forum: PerlMagick
Topic: [Solved] Brightness...
Replies: 2
Views: 49534

Re: [Solved] Brightness...

Thank you, that works fine :)
by phleagol
2017-12-16T02:32:48-07:00
Forum: PerlMagick
Topic: [Solved] Brightness...
Replies: 2
Views: 49534

[Solved] Brightness...

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 plea...