Search found 31 matches
- 2007-07-27T10:07:27-07:00
- Forum: Users
- Topic: convert creates invalid TIFF files
- Replies: 0
- Views: 6645
convert creates invalid TIFF files
The ImageMagick 6.3.5 07/22/2007 convert Mac OS X binary creates invalid TIFF files, that can not be read, nor displayed as TIFF images. The ImageMagick 6.2.8 07/07/2006 convert Mac OS X binary creates valid TIFF files. $ convert -version Version: ImageMagick 6.3.5 07/22/07 Q16 http://www ...
- 2007-02-06T19:58:36-07:00
- Forum: Users
- Topic: How to copy only the red channel?
- Replies: 5
- Views: 29186
Re: How to copy only the red channel?
Here is how to create from a three channel RGB input image, a single channel R only output image
convert imageIn_RGB.tif -channel R -separate imageOut_R.tif
convert imageIn_RGB.tif -channel R -separate imageOut_R.tif
- 2007-02-06T17:17:38-07:00
- Forum: Users
- Topic: How to copy only the red channel?
- Replies: 5
- Views: 29186
Re: How to copy only the red channel?
Using an older version of ImageMagick, ImageMagick 6.2.8 07/07/06 Q8, for Mac OS X that still supports TIFF images I tried the suggested syntax exec("/usr/local/bin/convert imageIn_RGB.tif -channel BG -fx 0 imageOut_R.tif"); but this syntax creates a three channel RGB image (not the desired one ...
- 2007-02-06T16:33:35-07:00
- Forum: Users
- Topic: How to copy only the red channel?
- Replies: 5
- Views: 29186
Re: How to copy only the red channel?
Thanks. I see the logic behind that. The problem now is that identify -list format indicates that the official ImageMagick for Mac OS X that I downloaded today can not read nor write any TIFF images. I must use TIFF, because all of my images are GeoTIFF images, which are TIFF images that includes ...
- 2007-02-06T16:10:29-07:00
- Forum: Users
- Topic: ImageMagick 6.3.2 identify can not read any raster images
- Replies: 8
- Views: 24844
Re: ImageMagick 6.3.2 identify can not read any raster images
I had set DYLD_LIBRARY_PATH, and had set IMHOME, but not MAGICK_HOME. Sorry about that. Thanks for the help. The good news is now when I do identify -list format I get a list of 152 formats that are supported. But the bad news is that the TIFF format in not on the list of supported formats. Has ...
- 2007-02-06T14:05:10-07:00
- Forum: Users
- Topic: ImageMagick 6.3.2 identify can not read any raster images
- Replies: 8
- Views: 24844
ImageMagick 6.3.2 identify can not read any raster images
The ImageMagick-6.3.2 for Mac OS X binary that I downloaded today from your official site as the file ImageMagick-universal-apple-darwin8.8.0.tar.gz seems to me to be useless, because identify says it can not read any raster image formats. Is there a Mac OS X binary version that can read and write ...
- 2007-02-06T13:28:21-07:00
- Forum: Users
- Topic: How to copy only the red channel?
- Replies: 5
- Views: 29186
How to copy only the red channel?
I need to create an output image that contains ONLY the Red channel of the input image.
The command below copies from the input image the Red, Green, and Blue channels to the output image.
I want to copy only the Red channel.
convert -channel R imageIn_RGB.tif imageOut_R.tif
The command below copies from the input image the Red, Green, and Blue channels to the output image.
I want to copy only the Red channel.
convert -channel R imageIn_RGB.tif imageOut_R.tif
- 2006-12-20T19:25:54-07:00
- Forum: Users
- Topic: identify: no decode delegate for this image format image.tif
- Replies: 5
- Views: 18050
- 2006-12-20T19:07:55-07:00
- Forum: Users
- Topic: identify: no decode delegate for this image format image.tif
- Replies: 5
- Views: 18050
- 2006-12-20T18:21:57-07:00
- Forum: Users
- Topic: identify: no decode delegate for this image format image.tif
- Replies: 5
- Views: 18050
identify: no decode delegate for this image format image.tif
I am using the Mac OS X binary release of ImageMagick, downloaded today from this web site. While I can successfully start up identify, identify reports that it does not recognize the TIF image format. convert misbehaves in this same way. identify -version Version: ImageMagick 6.3.0 11/03/06 Q16 ...
- 2006-09-01T00:20:08-07:00
- Forum: Users
- Topic: Simple Text Label Examples Fails
- Replies: 16
- Views: 57118
- 2006-08-27T23:05:35-07:00
- Forum: Users
- Topic: Installed ImageMagick - but no fonts!
- Replies: 0
- Views: 6362
- 2006-08-17T21:13:46-07:00
- Forum: Users
- Topic: compare syntax
- Replies: 4
- Views: 16345
I work a lot with TIF and JPEG2000 images, and need to quantify the difference between the original TIF an an irreversible or lossy compressed JP2 image, and I use the GeoJasPer utility geoimgcmp to do that. I do not have any interest in looking at a difference image. Here is an example. $ geoimgcmp ...
- 2006-08-14T00:36:33-07:00
- Forum: Users
- Topic: Simple Text Label Examples Fails
- Replies: 16
- Views: 57118
Let's say I want to use the fixed width font Courier. Courier comes in 4 flavors, under Mac OS X. Courier Regular Courier Oblique Courier Bold Courier Bold Oblique How do I tell ImageMagick which of these 4 flavors to use? I would still like to see example syntax for using convert to draw text under ...
- 2006-08-14T00:19:44-07:00
- Forum: Users
- Topic: compare syntax
- Replies: 4
- Views: 16345
compare syntax
compare says its -metric option can be used to measure differences between two images. But when I enter the compare command, it always claims the image is missing. What is the syntax for measuring the rmse difference between two images with compare? Usage: compare [options ...] image reconstruct ...