Hello all,
I had a question regarding images and fetching them from a remote server. I have a JPG image that resides on a remote server and I"m trying to grab it & make a thumbnail of it & such. I was wondering if its possible to even do this, and if so, how would I go about it?
I already have the thumbnailing part done, there's no problem there, the only problem is fetching the image.
Thanks.
[SOLVED] Fetch image from URL
Moderator: General Moderators
Yea it's possible.
If your using gd you can pass the url to imagecreatefromjpeg() and things should work.
If your using gd you can pass the url to imagecreatefromjpeg() and things should work.
Code: Select all
$im = imagecreatefromjpeg("url");