I want to resize images using php. with out losing its quality. Currently I have two domains. I have to display images from portfolio section of my old site to new website. How to resize the images and display in my new portfolio section. how can I do that? any body have the scritps or codes please share with me.

link|improve this question

Your nickname is learner but it is a wrong way to learn anything. If you really want to learn how to program - then split your task to small subtasks and solve one after another. – zerkms Dec 21 '10 at 4:20
feedback

1 Answer

up vote 1 down vote accepted

There are many functions for creating images, all of which do not have a problem with external domains. For instance, imagecreatefromjpeg(). http://php.net/manual/en/function.imagecreatefromjpeg.php If you go to that link, and check out all the functions on the left, you will find ones that crop, resize, etc., and most of them have examples.

For your question, I believe the best way to go about it is create one image from your existing image, and create a blank new image, then use the imagecopyresized() function to copy from your portfolio image to the blank one.

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.