I'm trying to do a simple thumbnail generation from an image that isn't located on my server using the iMagick wrapper for ImageMagick. For some reason, the following code will not display anything when called:

<?php
   $image = new Imagick("http://kunaki.com/ProductImage.ASP?T=I&ST=FO&PID=PX003Y9EDJ");
   $image->thumbnailImage(100, 0);
   header( "Content-Type: image/jpg" );
   echo $image;
?>

I've also tried using http://kunaki.com/ProductImage.ASP?T=I&ST=FO&PID=PX003Y9EDJ.jpg to no avail.

Based on comments below, I've attempted this as well with no results, but am not sure if the syntax is correct.

<?php
   $kunaki_image = file_get_contents("http://kunaki.com/ProductImage.ASP?T=I&ST=FO&PID=PX003Y9EDJ");
   $name = tempnam("/tmp", "kunaki");
   $final = file_put_contents($name, $kunaki_image);
   $image = new Imagick($final);
   $image->thumbnailImage(100, 0);
   header( "Content-Type: image/jpg" );
   echo $image;
?>

Does anyone have any suggestions?

Thanks!

link|improve this question

do you get this error? Parse error: syntax error, unexpected T_STRING in /home/jmvarela/public_html/ihateyourjacket.com/game/image.php on line 2 – Trufa Oct 13 '10 at 15:08
no, I just don't get any result at all. – Dave Kiss Oct 13 '10 at 15:30
feedback

2 Answers

up vote 1 down vote accepted

ImageMagick's constructor is badly documented so I can't tell for sure, but maybe Imagick can't deal with remote file paths.

Try fetching it separately e.g. using file_get_contents() or curl. Store it locally under a temporary name, and pass it that.

link|improve this answer
I tried with local image it is not any good either! – Trufa Oct 13 '10 at 15:08
@Trufa meaning what exactly? What happens? – Pekka Oct 13 '10 at 15:09
I get this error: Parse error: syntax error, unexpected T_STRING in /home/jmvarela/public_html/ihateyourjacket.com/game/image.php on line 2 with either one... – Trufa Oct 13 '10 at 15:13
@Trufa that error has nothing to do with whether the file is fetched remotely or locally. It is a sign of a syntax error on line 2. – Pekka Oct 13 '10 at 15:14
i tried file_get_contents() , nothing. How would I approach storing locally, then removing when the page is closed? – Dave Kiss Oct 13 '10 at 15:14
show 8 more comments
feedback

I had to do the same thing with Youtube... you need to pass the file path to ImageMagic, not the file_put_contents instance.

<?php
   $kunaki_image = file_get_contents("http://kunaki.com/ProductImage.ASP?T=I&ST=FO&PID=PX003Y9EDJ");
   $name = tempnam("/tmp", "kunaki");
   file_put_contents($name, $kunaki_image);
   $image = new Imagick($name);
   $image->thumbnailImage(100, 0);
   header( "Content-Type: image/jpg" );
   echo $image;
?>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.