Frustration with tiff files

Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Post Reply
blairt10
Posts: 1
Joined: 2013-01-16T13:50:41-07:00
Authentication code: 6789

Frustration with tiff files

Post by blairt10 »

I have been at this since almost 7am this morning! Any help would be appreciated. I am trying to get this source code to execute. I have installed the tiff delegates so it sould be running. I dont understand.



convert newtestnc1.tif:quantum:polarity=min-is-white -sharpen 0.3x1.0 +antialias -density 204X196 -despeckle -enhance -monochrome -raise 40 newtestim.tif


and these are the errors I am getting:

convert: no decode delegate for this image format `newtestnc1.tif' @ error/constitute.c/ReadImage/550.
convert: no images defined `newtestim.tif' @ error/convert.c/ConvertImageCommand/3066.



PLEASE HELP!!
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: Frustration with tiff files

Post by Bonzo »

First thing I would do is start with something very simple to cut down on the possible problems:

Code: Select all

convert newtestnc1.tif -resize 500x500 newtestim.tif 
Then add one option at a time.

I pressume this "newtestnc1.tif:quantum:polarity=min-is-white" is an error when posting the code here?
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Frustration with tiff files

Post by fmw42 »

convert newtestnc1.tif:quantum:polarity=min-is-white -sharpen 0.3x1.0 +antialias -density 204X196 -despeckle -enhance -monochrome -raise 40 newtestim.tif
Should be

convert newtestnc1.tif -define quantum:polarity=min-is-white -sharpen 0.3x1.0 +antialias -density 204X196 -despeckle -enhance -monochrome -raise 40 newtestim.tif

see the section on tiff at http://www.imagemagick.org/script/formats.php

or

http://www.imagemagick.org/Usage/formats/#tiff
Post Reply