Search found 11064 matches

by magick
2006-03-20T10:00:49-07:00
Forum: Users
Topic: Whta does the three columns in a TXT image file mean?
Replies: 2
Views: 13318

The three numbers are the red, green, and blue intensities scaled from 0 .. 255 for that particular pixel.
by magick
2006-03-19T18:09:15-07:00
Forum: Users
Topic: Resized images have jagged \ sawtooth edges
Replies: 4
Views: 21444

Ok, we got reasonable results with this command:
  • convert -size 110x110 1012405M.jpg -resize 110x110 +strip -quality 92 image.jpg
by magick
2006-03-19T17:29:15-07:00
Forum: Users
Topic: Resized images have jagged \ sawtooth edges
Replies: 4
Views: 21444

We're using this command with ImageMagick 6.2.6-5 and we got reasonable results:
  • convert -size 200x200 1012405M.jpg -resize 200x200 image.jpg
by magick
2006-03-19T17:25:51-07:00
Forum: Users
Topic: how can I control quality of commpresion (jpeg ,jpeg200) fro
Replies: 0
Views: 8828

To set the image compression quality call the quality() method with a value from 0 to 100.
by magick
2006-03-19T17:24:41-07:00
Forum: Developers
Topic: Opacity and re-use of Image
Replies: 0
Views: 12660

Call matte(false) before you call the opacity().
by magick
2006-03-18T18:19:58-07:00
Forum: Users
Topic: conversion to lossless jpeg2000 files?
Replies: 0
Views: 10704

Try the following:
  • convert logo: logo.jp2
    compare -metric MSE logo: logo.jp2 logo.png
A 0db result confirms the compression is lossless.
by magick
2006-03-18T13:13:49-07:00
Forum: Developers
Topic: Group4 and Fax encoding issues in pdf
Replies: 2
Views: 20050

The Group4-compression bug is scheduled to be fixed in the next point release. It should be available in the next 10 days.
by magick
2006-03-17T20:51:20-07:00
Forum: Users
Topic: Magick++ convert to monochrome problem
Replies: 1
Views: 13089

You need to set the image compression to Group4Compression in order to produce a Group 4-compressed TIFF image.
by magick
2006-03-17T20:50:15-07:00
Forum: Users
Topic: Need help with decode error...?
Replies: 2
Views: 15059

To add PNG support to ImageMagick download the PNG delegate library and build/install. Next rerun the ImageMagick configure script and ensure the output of the script says it found the PNG delegate library.
by magick
2006-03-17T20:48:22-07:00
Forum: Users
Topic: Resized images have jagged \ sawtooth edges
Replies: 4
Views: 21444

Post a URL to one of your images and its corresponding thumbnail versions from your older version of ImageMagick and the new version. We need to see the results to account for any differences.
by magick
2006-03-17T20:40:09-07:00
Forum: Bugs
Topic: tiff to jpeg
Replies: 1
Views: 17079

Try
  • identify -list format
. Tiff should have a mode of rw-. Its possible in your case, ImageMagick is not finding its configuration files. Try
  • convert -debug configure logo: logo.gif
and see where ImageMagick is looking for its configuration files and if it finds them.
by magick
2006-03-17T13:28:28-07:00
Forum: Bugs
Topic: tiff to jpeg
Replies: 1
Views: 17079

To convert TIFF to JPEG, type
  • convert image.tiff image.jpg
Of course the command will only work if you have ImageMagick installed and it was built with support for TIFF and JPEG.
by magick
2006-03-17T10:32:27-07:00
Forum: Users
Topic: Need help with decode error...?
Replies: 2
Views: 15059

ImageMagick requires the optional PNG delegate library to read/write PNG. Type
  • identify -list format
on both machines. Chances are on the one that fails, it does not mention PNG with a mode of rw-. If so, rebuild the distribution and ensure PNG support is noted after you run the configure script.
by magick
2006-03-17T10:29:35-07:00
Forum: Users
Topic: Fonts, Aliasing, Transparency 6.2.5 vs 6.2.6
Replies: 9
Views: 33311

We'll need a URL to the Airconditioner.ttf font.
by magick
2006-03-17T08:59:25-07:00
Forum: Users
Topic: convert bmp to ps. Big files under linux
Replies: 0
Views: 10461

You can always add compression to reduce the image size. Try
  • convert -density 150x150 image.bmp -compress rle image.ps
    convert -density 150x150 image.bmp -compress zip ps2:image.ps
    convert -density 150x150 image.bmp -compress zip ps3.image.ps