I am trying to generate thumbnail on the fly using phpThumb() library. It is working fine for those images store in my server. But it is not generating thumbnail for external images. Reference :- http://phpthumb.sourceforge.net/demo/demo/phpThumb.demo.demo.php
Working :-
<img border="0" src="../phpThumb.php?src=images/disk.jpg&w=300&hash=ec4f5e1b9224180800c7ae9f88758a2b" alt="">
Not working:-
<img border="0" src="../phpThumb.php?src=http://externaldomain.com/images/anyimages.jpg&w=300&hash=ec4f5e1b9224180800c7ae9f88758a2b" alt="">
Can anyone guide me if I doing anything wrong here. Or any other php thumbnail library can help me??
Thanks in advance.