Search found 11064 matches

by magick
2006-03-30T12:04:57-07:00
Forum: Users
Topic: Grayscale Issue while converting from RGB
Replies: 1
Views: 11799

Add -colors 256 to your command line to produce a 1 sample per pixel grayscale TIFF image.
by magick
2006-03-29T17:55:07-07:00
Forum: Users
Topic: Supported fonts
Replies: 1
Views: 40408

Do you have Ghostscript installed? It is required to utilize the n022003l.pfb font. We get these fonts under Windows: Path: type-ghostscript.xml Name Family Style Stretch Weight -------------------------------------------------------------------------------- AvantGarde-Book AvantGarde Normal Normal ...
by magick
2006-03-29T17:49:28-07:00
Forum: Users
Topic: Converting EPS to transparent GIF
Replies: 4
Views: 23196

SVG is the recommended vector format. If ImageMagick fails to convert your SVG you can always use rsvg which does a great job of interpretting SVG.
by magick
2006-03-29T17:46:41-07:00
Forum: Users
Topic: IMPORT command root or window with cursor
Replies: 1
Views: 12567

There is a -pause option to pause between snapshots and -snaps tells how many snapshots to take.
by magick
2006-03-29T12:32:55-07:00
Forum: Users
Topic: word wrap text in JMagick
Replies: 0
Views: 8709

You could of course use standard Java string functions to decide where to break up a stream of text and render one line at a time with JMagick or you can write to a file with the caption: prefix, for example, "caption:This is a long winded paragrapth that seems ... to go on and on forever"...
by magick
2006-03-29T11:08:19-07:00
Forum: Developers
Topic: Source installation on a shared server?
Replies: 0
Views: 10863

Try
  • make -k -i install
This will install everything but PerlMagick. You can then go to the ImageMagick-6.2.6/PerlMagick directory and install PerlMagick separately.
by magick
2006-03-29T08:56:26-07:00
Forum: Users
Topic: extracting channels from a PDF
Replies: 6
Views: 26990

You could try going to http://www.adobe.com or http://www.appligent.com to see if they have a solution for you. Or try working directly with Ghostscript, they have multiple devices for producing CMYK that may give you what you want.
by magick
2006-03-29T08:49:49-07:00
Forum: Users
Topic: profile lost during conversion
Replies: 0
Views: 8457

We use the Jasper JPEG-2000 delegate library to write JPEG-2000 images. If you can determine how to leverage the library to save image profiles and save images in the CMYK colorspace we'd like to know.
by magick
2006-03-29T08:44:38-07:00
Forum: Users
Topic: Supported fonts
Replies: 1
Views: 40408

To list the fonts ImageMagick knows about, use this command:
  • identify -list type
by magick
2006-03-29T08:42:19-07:00
Forum: Bugs
Topic: ImageMagick-6.2.6 for CPG
Replies: 2
Views: 19234

Grab the latest release, ImageMagick 6.2.6-7. Rebuild and install and the missing XError() method should be resolved.
by magick
2006-03-29T08:40:33-07:00
Forum: PerlMagick
Topic: Change profile
Replies: 1
Views: 25770

You can get the ICC, ICM, or IPTC image profiles with $image->Get('ICC'); Substitute ICM or IPTC if need be. You can also save profiles to disk with the Write() method by using these prefixes: 8BIM, 8BIMTEXT, 8BIMWTEXT, APP1, APP1JPEG, EXIF, XMP, ICM, ICC, IPTC, IPTCTEXT, IPTCWTEXT (e.g. $image->Wri...
by magick
2006-03-28T21:37:59-07:00
Forum: Users
Topic: Converting EPS to transparent GIF
Replies: 4
Views: 23196

You might be able to simply upgrade your version of Ghostscript to enable the pngalpha device. If not you can grab the source and make sure pngalpha is enabled when you build/install. Have fun.
by magick
2006-03-28T21:11:30-07:00
Forum: Users
Topic: Combine Single Page PDFs into One File
Replies: 4
Views: 15799

You can create uniform page sizes with the -page option (e.g. -page 612x792). To reduce the image size, use -compress (e.g. -compress zip).
by magick
2006-03-28T21:07:35-07:00
Forum: Users
Topic: Converting EPS to transparent GIF
Replies: 4
Views: 23196

Type
  • convert -verbose -colorspace rgb clipart.eps clipart.gif
Is the listed device pnmraw or pngalpha? Its possible that your version of Ghostscript does not support the pngalpha device. To confirm type
  • gs -h
by magick
2006-03-28T19:10:34-07:00
Forum: Users
Topic: HELP: Coversion Mpeg to Dicom Files
Replies: 0
Views: 8552

ImageMagick reads most DICOM images but currently does not write them.