Search found 8 matches

by sandy.ps4
2016-01-29T15:41:31-07:00
Forum: Bugs
Topic: CR2 RAW file conversion
Replies: 35
Views: 56676

Re: CR2 RAW file conversion

Thanks snibgo and magick.

Code: Select all

convert E1DXINBI003200.CR2 -set colorspace RGB -resize 800x600 -colorspace sRGB out.png
is giving an output that is much lighter. It's better than the earlier dark image though. I'll try some of the options provided by UFRaw and update it here if I get any success. Thanks.
by sandy.ps4
2016-01-28T09:09:50-07:00
Forum: Bugs
Topic: CR2 RAW file conversion
Replies: 35
Views: 56676

Re: CR2 RAW file conversion

Instead of trying to explain one side of a ten-year-old conversation, let's start again . Yes, we can start afresh. This is the command I'm using: convert E1DXINBI003200.CR2 -colorspace RGB -resize 800x600 -colorspace sRGB out.png I'm getting similarly dark image as output with this command as well...
by sandy.ps4
2016-01-27T12:44:13-07:00
Forum: Bugs
Topic: CR2 RAW file conversion
Replies: 35
Views: 56676

Re:

For color conversion you need two color profiles, a linear one and a sRGB one. The linear profile tells the profiler the original colorspace is linear and the second profile tells the profiler to convert the colorspace to sRGB. If you don't want to bother, use the dcraw program. It has a auto white...
by sandy.ps4
2015-10-23T12:38:51-07:00
Forum: Bugs
Topic: TIFF directory is missing required "ImageLength" field
Replies: 9
Views: 9432

Re: TIFF directory is missing required "ImageLength" field

Thanks for the reply. It works like this convert -quiet CR2:test output.png I was trying to get it to work without the extension. Anyways, thanks. IM can usually detect the file type from the header for files that have headers. I am not sure if CR2 files have headers, if they are raw camera files. I...
by sandy.ps4
2015-10-23T12:36:30-07:00
Forum: Bugs
Topic: TIFF directory is missing required "ImageLength" field
Replies: 9
Views: 9432

Re: TIFF directory is missing required "ImageLength" field

Thanks for the detailed reply. I'll see if I can get around the extension issue. Thanks. To put it differently, is having an extension a requirement for ImageMagick to work? In my application, the files are stored without extensions. Thanks. In brief, I think this is a bad idea. More fully: An exten...
by sandy.ps4
2015-10-22T15:38:56-07:00
Forum: Bugs
Topic: TIFF directory is missing required "ImageLength" field
Replies: 9
Views: 9432

Re: TIFF directory is missing required "ImageLength" field

convert -quiet test out.png If test is a TIFF file, it might help to add the proper suffix of .tif or .tiff. Yes, it works with an extension. These are actually CR2 files whose extensions have been removed. To put it differently, is having an extension a requirement for ImageMagick to work? In my a...
by sandy.ps4
2015-10-22T15:35:11-07:00
Forum: Bugs
Topic: TIFF directory is missing required "ImageLength" field
Replies: 9
Views: 9432

Re: TIFF directory is missing required "ImageLength" field

What is your operating system and can you reproduce this issue with the latest version of ImageMagick? Please share your file on something like dropbox if you want us to have a look at it. I'm using a MAC OS X (10.9.5) and ImageMagick Version is 6.9.1-10. Actually those are CR2 files (Canon Raw Fil...
by sandy.ps4
2015-10-22T13:03:36-07:00
Forum: Bugs
Topic: TIFF directory is missing required "ImageLength" field
Replies: 9
Views: 9432

TIFF directory is missing required "ImageLength" field

convert: TIFF directory is missing required "ImageLength" field. `MissingRequired' @ error/tiff.c/TIFFErrors/553. I'm getting this error while trying to convert a CR2 file (without extension) using the following command: convert -quiet test out.png Even though an error is thrown, the conv...