Ghostscript is installed and working
convert \test.pdf \test.jpg 2>&1
$im = new Imagick();
$im->readimage('/test.pdf[0]');
$im->setImageFormat('jpeg');
$im->writeImage('/thumb.jpg');
$im->clear();
$im->destroy();
I think, there is no need for delegate.xml because shell and PHP are working. Anyway, inserted:
<delegate decode="pdf" encode"jpg" command=""convert %i %o""/>
Anyway, getting error in admincp:
Please ensure that Ghostscript is installed and that relevant entries in ImageMagick's delegates.xml point to the proper path for Ghostscript's executable. You can ignore this and set this option to "Yes" if PDF conversion already works without the delegates check.
Ignoring this has no effect.
Uploading images - thumbs are createt.
uploading pdf - thumb not and also no error...
Is this feature working? What is wrong?
P.S. tryed with VB 5.3.3 RC2
Comment