AvalancheImagineBundle
AvalancheImagineBundle copied to clipboard
ImageMagick fails to open a JPG
I have used the avalance imagine bundle(https://github.com/avalanche123/Imagine) in my symfony2 web app to resize and create thumbnails. My server is centOS.
When my form uploads the image and imagine tries to open with "**lcms: Error #12288; Pointer error;** probably corrupted file
" in the apache error log. I tried catching the exception while opening but the catch block is never executed. I dont know what is the problem.
try{
$this->imagine->open($path);
}catch(\Exception $e){
die($e->getMessage());
}
The image is http://rghost.net/56833261 Thanks