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.
PHP Fatal error: Uncaught exception 'ImagickException' with message 'no decode delegate for this image format `/mnt/discovery/2013/07/24/1769623_\xd1\x81\xd0\xbf\xd1\x80\xd0\xb0\xd0\xb2\xd0\xba\xd0\xb0 154.djvu'
$img = new Imagick();
$img->setResolution(200,200);
$img->readImage($filepath);
Error is throwing in last line (readImage() function). I am trying just to read DJVU (to save it in JPG files).
And the test file converts well via IM convert program.
You are using Imagick and I would first try running some code in Imagemagick with the command line to see if the problem is with Imagemagick or imagick.
I wrote above that the file converts well with convert utility, so I think the problem is in imagick.
I will try your code a bit later, because I have no access to the test server at this moment.