Search found 12163 matches

by snibgo
2010-04-08T17:22:23-07:00
Forum: Bugs
Topic: large gif resize doesn't work
Replies: 2
Views: 6686

Re: large gif resize doesn't work

If you tell us where it is, someone can try with a more recent IM version.
by snibgo
2010-04-08T15:33:03-07:00
Forum: Users
Topic: Large Format psb to bmp file size query
Replies: 7
Views: 15623

Re: Large Format psb to bmp file size query

When I download panel2.psb, it is only 25,645 bytes. It is an HTML file that says, among other things, "panel2​.psb 232.13 MB file uploaded 2 weeks, 6 days ago."
by snibgo
2010-04-07T05:06:47-07:00
Forum: Users
Topic: Read from file on a different server
Replies: 0
Views: 2898

Re: Read from file on a different server

You might get a better response on the imagick forum: viewforum.php?f=18
by snibgo
2010-04-06T10:26:01-07:00
Forum: Users
Topic: can't change depth to 8bit in png
Replies: 3
Views: 8953

Re: can't change depth to 8bit in png

The options are in the wrong order. Try:

convert testimage.png -colors 255 -depth 8 testimage8bit.png
or
convert testimage.png -colors 255 -depth 8 -type Palette testimage8bit.png

See http://www.imagemagick.org/Usage/formats/
by snibgo
2010-04-06T08:39:16-07:00
Forum: Users
Topic: Batch convert and errors logging
Replies: 8
Views: 17621

Re: Batch convert and errors logging

Like most command-line software, IM writes errors to stderr. You can use a shell facility to redirect this to a file, something like:

mogrify -format png ~/SRCS/*.jpg 2>error.lis
by snibgo
2010-04-06T08:34:04-07:00
Forum: Bugs
Topic: Thumbnials are not created properly in Imagemagick 6.5.9.10
Replies: 4
Views: 9801

Re: Thumbnials are not created properly in Imagemagick 6.5.9

Can you post a sample input and output image that shows the problem?
by snibgo
2010-04-06T06:02:02-07:00
Forum: Users
Topic: extract exif thumbnail
Replies: 6
Views: 22457

Re: extract exif thumbnail

"thumbnail:" is documented on http://www.imagemagick.org/Usage/formats/ We don't all have a Nikon D70s, so posting your file will help diagnostics. When I use the command on an image from my camera: convert PICT0001.JPG thumbnail:th0001.jpg I get the expected image, which is the (rather ho...
by snibgo
2010-04-06T05:30:46-07:00
Forum: Bugs
Topic: Morphology "iterations" changes each iteration.
Replies: 12
Views: 22938

Re: Morphology "iterations" changes each iteration.

I agree, auto-level should do nothing, so I have removed it from my series of commands, and tried your command. Still, the alpha channel for all pixels becomes 255. In my series, the problem is shown in erode4.png. I expect the final 13 pixels to be changed to alpha=0, and "verbose" report...
by snibgo
2010-04-05T19:14:20-07:00
Forum: Bugs
Topic: Morphology "iterations" changes each iteration.
Replies: 12
Views: 22938

Re: Morphology "iterations" changes each iteration.

Code: Select all

Can you compile a version without thread support?
Not readily. I'm on Windows without MSVC, so it will have to wait until I can get on Linux. Tomorrow, perhaps.

That could easily explain a bad count. How about the final erode setting all pixels to 255?

Cheers.
by snibgo
2010-04-05T18:57:02-07:00
Forum: Bugs
Topic: Morphology "iterations" changes each iteration.
Replies: 12
Views: 22938

Re: Morphology "iterations" changes each iteration.

I should have spotted that "verbose" issue. Should I start a new thread? For my current purposes (video effects), I'm more interested in smooth changes than binary transitions, so I think 3D greyscale kernels would be useful to me. Perhaps I can do that at a lower level with "convolve...
by snibgo
2010-04-05T17:51:55-07:00
Forum: Bugs
Topic: Morphology "iterations" changes each iteration.
Replies: 12
Views: 22938

Re: Morphology "iterations" changes each iteration.

Thanks, Anthony. The same bad behaviour occurs with diamond, plus, disk and square.
by snibgo
2010-04-05T15:10:28-07:00
Forum: Bugs
Topic: Morphology "iterations" changes each iteration.
Replies: 12
Views: 22938

Re: Morphology "iterations" changes each iteration.

On a related note, the number of transparent pixels increases until erode3.png, which has only 13 pixels with alpha > 0. But then erode4.png has all pixels set to alpha = 255, when I would expect them to be set to alpha = 0.
by snibgo
2010-04-05T14:39:25-07:00
Forum: Bugs
Topic: Morphology "iterations" changes each iteration.
Replies: 12
Views: 22938

Morphology "iterations" changes each iteration.

Window 7, 6.6.0-8 Q16, Source file: http://www.snibgo.org/images/f604_blackwhite_both.png convert f604_blackwhite_both.png -channel alpha +verbose -morphology Erode Euclidean:1,100 -verbose -auto-level erode.png Morphology Erode:1 => Changed 37194 f604_blackwhite_both.png=>erode.png PNG 604x536 604x...
by snibgo
2010-04-05T08:56:22-07:00
Forum: Bugs
Topic: error/jp2.c/WriteJP2Image/877 (Win64 6.6.1-0 2010-04-02 Q16)
Replies: 5
Views: 11915

Re: error/jp2.c/WriteJP2Image/877 (Win64 6.6.1-0 2010-04-02

For me, on Windows 7:

Code: Select all

convert -limit area 80mb IMG_TIF.tif img.jp2
completes, and the result looks fine.
by snibgo
2010-04-05T08:31:46-07:00
Forum: Bugs
Topic: error/jp2.c/WriteJP2Image/877 (Win64 6.6.1-0 2010-04-02 Q16)
Replies: 5
Views: 11915

Re: error/jp2.c/WriteJP2Image/877 (Win64 6.6.1-0 2010-04-02

On Windows 7, IM 6.6.0-8, on a 4GB laptop:

convert IMG_7490-7589v2.tif x.jpg

works fine, and is fast. I suppose IM doesn't need to unpack/repack.

convert IMG_7490-7589v2.tif x.jp2

takes 30 seconds, consumes memory, then falls over.