Search found 108 matches

by RetroJ
2007-06-28T09:41:50-07:00
Forum: PerlMagick
Topic: How to ... OptimizePlus
Replies: 4
Views: 18126

Re: How to ... OptimizePlus

magick wrote:Bug. Fixed in ImageMagick 6.3.5-0 beta available sometime tommorrow.

Great, and thank you for the quick reply.
by RetroJ
2007-06-28T08:33:08-07:00
Forum: PerlMagick
Topic: How to ... OptimizePlus
Replies: 4
Views: 18126

Re: How to ... OptimizePlus

Hi,
Does PerlMagick 6.3.4 have this feature? It is documented in the PerlMagick manual, but when I do:

Code: Select all

$image->Layers ('method'=>'optimize');
I get the error,

Code: Select all

Usage: Layers(ref) at ./foo.pl line 20
by RetroJ
2007-03-19T07:22:07-07:00
Forum: Bugs
Topic: bug report: convert -composite in 6.3.3
Replies: 3
Views: 13815

Re: bug report: convert -composite in 6.3.3

Great! Thanks!
by RetroJ
2007-03-18T17:22:44-07:00
Forum: Bugs
Topic: bug report: convert -composite in 6.3.3
Replies: 3
Views: 13815

bug report: convert -composite in 6.3.3

Hello, I have described this bug here:

http://jjfoerch.com/bitbucket/compose-bug/

Thanks!
by RetroJ
2007-02-17T12:52:56-07:00
Forum: Users
Topic: forum font size
Replies: 1
Views: 7702

forum font size

I want to request that this forum have a user-option to change the font size.
by RetroJ
2007-02-17T12:48:11-07:00
Forum: Users
Topic: combining two images
Replies: 8
Views: 25633

Re: combining two images

Thank you for for the replies. The commands mentioned work perfectly for PNG-results. but i ned the TIFF, because only the TIFF-images has right colorspace information and so on (PNG only supports RGB). If i just change the extension to .tiff the background is black and there's no transparency. Thi...
by RetroJ
2007-02-12T09:28:40-07:00
Forum: Bugs
Topic: x-offset of annotate with stroke
Replies: 4
Views: 17288

Re: x-offset of annotate with stroke

Thank you!
by RetroJ
2007-02-11T18:51:39-07:00
Forum: Bugs
Topic: x-offset of annotate with stroke
Replies: 4
Views: 17288

x-offset of annotate with stroke

Hi,

Please see the experiment shown at this url:

http://jjfoerch.com/bitbucket/annotest/

Whether you want to call this a bug or not is a subjective matter, but I believe the images shown in the second table represent a more useful behavior of annotate.
by RetroJ
2007-02-11T12:18:43-07:00
Forum: Users
Topic: combining two images
Replies: 8
Views: 25633

Re: combining two images

Thanks, Anthony.

This works:

Code: Select all

convert Winter2.tif -matte -fill none -draw "color 0,0 reset" Winter2.tif \( Winter2.png -channel matte -negate -separate \) -composite test.png
by RetroJ
2007-02-09T17:44:33-07:00
Forum: Users
Topic: combining two images
Replies: 8
Views: 25633

Re: combining two images

I think a bug has been uncovered here. In the course of figuring out the command to do what you describe, I found this: This produces a transparent image, as expected: convert Winter2.png -fill none -draw "color 0,0 reset" test.png But if we use Winter2.tif as the source image, the output ...
by RetroJ
2007-02-09T15:03:51-07:00
Forum: Developers
Topic: feature request, concerning -trim in convert
Replies: 3
Views: 14779

Re: feature request, concerning -trim in convert

Ah, so there will be a variable-space implemented with the percent-sign syntax like that found in -format. I think that's an exellent idea, and I look forward to it.
by RetroJ
2007-01-31T12:59:50-07:00
Forum: Developers
Topic: feature request, concerning -trim in convert
Replies: 3
Views: 14779

feature request, concerning -trim in convert

Hello, My feature request is to be able to crop to the geometry that was the result of the last trim, with a single invocation of convert. Anthony shows how to crop to the geometry of a trim via a subshell, at: http://www.cit.gu.edu.au/~anthony/graphics/imagick6/crop/#trim_blur convert noisy.jpg -cr...
by RetroJ
2007-01-17T14:16:59-07:00
Forum: Bugs
Topic: corrupt image when using -gaussian with PNM files
Replies: 3
Views: 16605

Very interesting. Nice to see that ImageMagick is not at fault here, and indeed, has a feature that those other programs lack.
by RetroJ
2007-01-16T09:24:45-07:00
Forum: Bugs
Topic: corrupt image when using -gaussian with PNM files
Replies: 3
Views: 16605

I was able to reproduce this bug on http://jjfoerch.com/bitbucket/cookie.jpg

This works fine:

Code: Select all

convert cookie.jpg new.pnm
This produces a corrupt image:

Code: Select all

convert cookie.jpg -gaussian 1x1 new-blurred.pnm
Using Imagemagick 6.3.1 01/10/07 Q16 on Debian.
by RetroJ
2006-11-24T10:46:38-07:00
Forum: Users
Topic: relative pixels in -fx operator (Game of Life)
Replies: 14
Views: 40624

With the latest IM you can spedd up things as follows. neighbors='(p{i-1,j-1} + p{i,j-1} + p{i+1,j-1} + p{i-1,j} \ + p{i+1,j} + p{i-1,j+1} + p{i,j+1} + p{i+1,j+1})' rules="nn=$neighbors; ((nn<5)|(nn>6)|(nn==6 & u==1)) ? 1.0 : 0.0" convert gliders.png -channel R -fx "$rules" ...