Hi,
i have a little problem again, this time with imagick:
Fatal error: Class 'Vokuro\Controllers\Phalcon\Image\Adapter\Imagick' not found in
I use the code from the example:
<?php
$image = new Phalcon\Image\Adapter\Imagick("upload/test.jpg");
$image->resize(200, 200)->rotate(90)->crop(100, 100);
if ($image->save()) {
echo 'success';
}
Path ImageMagick:
C:\Program Files\ImageMagick-6.8.8-Q16;
Imagick:
imagick module enabled
php.ini:
extension=php_imagick.dll
extension=php_phalcon.dll
Thx again :-)