PHP Imagick "değnek resim yok"

0 Cevap php

PHP basit bir dönüşüm yapmak için çalışırken, ben bu hatayı alırsınız:

exception 'ImagickException' with message 'wand contains no images `MagickWand-2' @ error/magick-image.c/MagickSetImageFilename/10080'

MagickWand orada ne yapıyor? Bunu yüklemek vermedi ...

İşte benim basit bir koddur:

  $a = "/[...]/test.jpg";
  $im = new Imagick();
  $im->pingImage($a);
  $im->readImage($a);               
  $im->setImageFormat("png");
  $im->writeImage("/[...]/output.png");

I checked the chmod of all folders... I suspect an 'incompatibility' between Imagick and ImageMagick? Here is my install details : - ImageMagick 6.6.2-8 - Imagick 2.3.0 - Php 5.2.3 - Ubuntu 7.10

Eğer pleeeeease herhangi bir ipucu varsa! Thanx

Maz

0 Cevap