- -> ufraw-batch --out-type=ppm --out-depth=16 --output=test.pnm test.cr2
ufraw-batch: Cannot decode file test.cr2
CR2 RAW file conversion
Re: CR2 RAW file conversion
The ufraw-batch delegate program reports:
Re: CR2 RAW file conversion
the image
- This can be tested by sending me an good CR2 file?
ufraw-batch
- How do I test this?
- This can be tested by sending me an good CR2 file?
ufraw-batch
- How do I test this?
Re: CR2 RAW file conversion
Code: Select all
ufraw-batch /home/user/domains/domain.nl/public_html/test/image/test.cr2
ufraw-batch: /usr/local/lib/libpng12.so.0: no version information available (required by ufraw-batch)
ufraw-batch: Cannot decode file /home/user/domains/domain.nl/public_html/test/image/test.cr2
Re: CR2 RAW file conversion
The solution is to report this as a bug to the ufraw-batch maintainers.
Re: CR2 RAW file conversion
Hi I meet the same problem in Mac OS but not Linux(in Fedora, it works well).
I install php55-imagick/3.3.0 and ufraw/0.22 from homebrew, I have tried both CR2 and NEF format images.
It works at php shell but when I use it in php script, I meet an error like below:
The code is:
I install php55-imagick/3.3.0 and ufraw/0.22 from homebrew, I have tried both CR2 and NEF format images.
It works at php shell but when I use it in php script, I meet an error like below:
Code: Select all
[Thu Dec 24 05:27:47.318902 2015] [:error] [pid 22517] [client 1xx.87.3x.4x:50264] exception 'ImagickException' with message 'unable to open image `/var/tmp/magick-22517fDB6MUmmdJck.ppm': No such file or directory @ error/blob.c/OpenBlob/2702' in /Library/WebServer/
Code: Select all
try {
$img = new Imagick($sTempRAWFileName);
$img->setFormat('JPG');
$img->setImageCompressionQuality(80);
if(!($img->writeImage($sTempFileName)))
return false;
} catch (Exception $e) {
error_log($e);
return false;
}
break;