Search found 11064 matches

by magick
2006-03-21T16:19:49-07:00
Forum: Users
Topic: Command line order
Replies: 4
Views: 19615

ImageMagick resource usage is dependant on the area of the image so with less area you would expect faster processing time. If you want to rotate an image 90 degrees and resize it to 50% it would make sense to first resize the image then rotate it.
by magick
2006-03-21T16:17:09-07:00
Forum: Bugs
Topic: make check: 6 of 714 tests failed
Replies: 1
Views: 16473

Well there you go, ImageMagick cannot compile/link against the Freetype delegate library unless the header files are available. Fix this problem and rerun the ImageMagick configure script.
by magick
2006-03-21T15:05:14-07:00
Forum: Users
Topic: Magick++ convert to monochrome problem
Replies: 1
Views: 13060

Grab ImageMagick-6.2.6-5, the current release and see if you have better luck. We added a patch for Fax and group 4 compression. If it fails, let us know and we will investigate further.
by magick
2006-03-21T14:56:59-07:00
Forum: Bugs
Topic: make check: 6 of 714 tests failed
Replies: 1
Views: 16473

ImageMagick requires the Freetype delegate library and Ghostscript to run the regression tests. Run the configure script again. The last 40 lines or so probably says it could not validate the Freetype library. Check config.log to determine why. Fix the problem and rerun the configure script until th...
by magick
2006-03-21T14:49:58-07:00
Forum: PerlMagick
Topic: use Image::Magick; not working???
Replies: 0
Views: 14734

Not sure what the problem is. We run over 350 PerlMagick regression tests before PerlMagick is released to ensure no bugs are present in the distribution.
by magick
2006-03-21T14:44:33-07:00
Forum: MagickWand
Topic: MPEG encoding?
Replies: 2
Views: 25864

You can affect the MPEG creation with the -quality , -delay, -ticks-per-scond, and -sampling-factor command line options. You could always edit the source of coders/mpeg.c to adjust the MPEG configuration file.
by magick
2006-03-21T14:34:56-07:00
Forum: Bugs
Topic: process hangs
Replies: 6
Views: 34694

Not a bug, but there is room to improve the algorithm. It appears for 45 degrees we are over allocating the initial rotated image size before it is cropped to the final size. We could speed up the rotation a bit by attending to this enhancement. We'll add it to the list of things to do.
by magick
2006-03-21T11:29:36-07:00
Forum: Users
Topic: extracting channels from a PDF
Replies: 6
Views: 26995

We have staging areas for development code. The PDF patch was in a staging area that has not quite made it to release status. It will be in the next point release. Look for an update to ImageMagick-6.2.6-6 within 48 hours.
by magick
2006-03-21T08:50:53-07:00
Forum: Developers
Topic: --without-threads implications on preformance
Replies: 0
Views: 12382

AcquireSemaphore() is light-weight. There is a fair bit of overhead when starting ImageMagick so if you have a short quick task the start-up costs are high. The start-up cost becomes negligible for longer running tasks. You can initalize any of the ImageMagick lists before threading is enabled by ca...
by magick
2006-03-20T22:55:01-07:00
Forum: Users
Topic: How do I best tile a large image?
Replies: 6
Views: 23968

Try -crop again but add +repage after it so your PNG images will display properly.
by magick
2006-03-20T19:15:22-07:00
Forum: Bugs
Topic: process hangs
Replies: 6
Views: 34694

You would probably would have better luck with the Q8 version of ImageMagick if you are not already using it. It uses 50% less memory than the Q16 version. We tried your command under Fedora Core 5 on a 1GB machine with ImageMagick 6.2.6-5 Q16 and it created a 2811x2811 rotated image in 17 seconds o...
by magick
2006-03-20T14:51:17-07:00
Forum: Bugs
Topic: process hangs
Replies: 6
Views: 34694

Your image is being cached to disk which is dog slow compared to in-memory rotation. Add -debug cache to your command line to track progress.
by magick
2006-03-20T14:11:37-07:00
Forum: Bugs
Topic: process hangs
Replies: 6
Views: 34694

Ok, post a URL so we can attempt to reproduce the problem.
by magick
2006-03-20T13:14:06-07:00
Forum: Users
Topic: Need help with decode error...?
Replies: 2
Views: 15027

The reason the PNG delegate library failed to validate can be found in the config.log file generated by the configure script. Fix the problem and rerun the configure script until the PNG delegate library is validated.
by magick
2006-03-20T13:12:17-07:00
Forum: Bugs
Topic: process hangs
Replies: 6
Views: 34694

Your process is probably not hanging, instead its probably just taking a real long time to complete. Add -monitor to your command line to monitor the progress of the image rotation operation.