cr2 php problem

IMagick is a native PHP extension to create and modify images using the ImageMagick API. ImageMagick Studio LLC did not write nor does it maintain the IMagick extension, however, IMagick users are welcome to discuss the extension here.
Post Reply
ChrisHESS
Posts: 8
Joined: 2013-03-20T12:43:28-07:00
Authentication code: 6789

cr2 php problem

Post by ChrisHESS »

Hello,

I need help for print an image withe a script in my page. My file source in a cr2 file to print in ma page in jpeg.

Code: Select all

<?php
#$url = './IMG_6968.JPG';
$url = './IMG_6968.CR2';

$canvas = new Imagick($url);

/* Définition du format à JPEG */
$canvas->setImageFormat('JPEG');

/* Affiche l'image */
header("Content-Type: image/JPEG");
echo $canvas;
?>
If I run this script, I obtain a whit paper, but if I change the source file in a jpeg file, I obtain ma picture.

Code: Select all

$url = './IMG_6968.JPG';
phpinfo:

Code: Select all

imagick
imagick module	enabled
imagick module version 	3.1.0RC1
imagick classes 	Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator
ImageMagick version 	ImageMagick 6.6.9-7 2012-08-17 Q16 http://www.imagemagick.org
ImageMagick copyright 	Copyright (C) 1999-2011 ImageMagick Studio LLC
ImageMagick release date 	2012-08-17
ImageMagick number of supported formats: 	206
ImageMagick supported formats 	3FR, A, AAI, AI, ART, ARW, AVI, AVS, B, BGR, BGRA, BMP, BMP2, BMP3, BRF, C, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CRW, CUR, CUT, DCM, DCR, DCX, DDS, DFONT, DJVU, DNG, DOT, DPX, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FAX, FITS, FRACTAL, FTS, G, G3, GIF, GIF87, GRADIENT, GRAY, GROUP4, HALD, HDR, HISTOGRAM, HRZ, HTM, HTML, ICB, ICO, ICON, INFO, INLINE, IPL, ISOBRL, J2C, JNG, JP2, JPC, JPEG, JPG, JPX, K, K25, KDC, LABEL, M, M2V, M4V, MAC, MAP, MAT, MATTE, MIFF, MNG, MONO, MOV, MP4, MPC, MPEG, MPG, MRW, MSL, MSVG, MTV, MVG, NEF, NULL, O, ORF, OTB, OTF, PAL, PALM, PAM, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PGX, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG24, PNG32, PNG8, PNM, PPM, PREVIEW, PS, PS2, PS3, PSB, PSD, PTIF, PWP, R, RADIAL-GRADIENT, RAF, RAS, RGB, RGBA, RGBO, RLA, RLE, SCR, SCT, SFW, SGI, SHTML, SR2, SRF, STEGANO, SUN, SVG, SVGZ, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TTC, TTF, TXT, UBRL, UIL, UYVY, VDA, VICAR, VID, VIFF, VST, WBMP, WMF, WMV, WMZ, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, Y, YCbCr, YCbCrA, YUV

Directive	Local Value	Master Value
imagick.locale_fix	0	0
imagick.progress_monitor	0	0
My question is what I must doing for print my cr2 file in the script ?

In advance, thanks for your help. :)
Last edited by ChrisHESS on 2013-04-04T11:41:08-07:00, edited 1 time in total.
ChrisHESS
Posts: 8
Joined: 2013-03-20T12:43:28-07:00
Authentication code: 6789

Re: cr2 php problem

Post by ChrisHESS »

they are an example of a cr2 file:
http://www.envoyercefichier.com/files/I ... 87761.html
it is a French site [free], validity time 20 days for the link, op to 5 April 2013.

tanks for your help.
Last edited by ChrisHESS on 2013-04-10T23:45:39-07:00, edited 1 time in total.
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: cr2 php problem

Post by Bonzo »

I had a go with one of my CR2 photos yesterday on my Imagick install and it just failed with a compression problem so I am afraid I can not help.
Post Reply