Tagged Questions

2
votes
2answers
124 views

Upload three versions of an image, full size, thumbnail and resized

So far, I've been uploading one image by hand (FTP to the server when live, locally moving a file), and then resizing them on the fly using the img tag's width and height properties to resize them. ...
2
votes
5answers
409 views

best practice of generating thumbnail?

I am creating a social network where users upload their profile image. This image will be used in their profile page in 150 / 150 px dimension. In the home page i.e user Activity feed I need the ...
1
vote
3answers
593 views

How to move image to new folder?

As the title says ..How to move/rename image to new folder? I have this so far and the new image is resized/cropped but it doesn't move to "new/" folder: $in_filename = '4csrWqu9ngv.jpg'; ...
1
vote
1answer
830 views

curl and resize remote image

I use this script to download and resize a remote image. In the resize part something goes wrong. What is it? <?php $img[]='http://i.indiafm.com/stills/celebrities/sada/thumb1.jpg'; ...
1
vote
1answer
534 views

Merging (watermark) a jpg with png while resizing the png in PHP GD

I am sure I could somehow figure this out but it's just taking me way too long since I am not a PHP guy. Hopefully someone can set up the script for me in minutes... So here's what I need to do: I ...
0
votes
0answers
79 views

Resizing an image upon php file upload

I looked through posts, but could not find one that answered my specific question. I have a file upload script that uploads a song and an image. However, when I upload the image, I need it to become ...
0
votes
1answer
367 views

Resize uploaded image - PHP

I am using the basic upload code from the w3schools website but I would like to add the ability to resize the image on upload to 200px wide. Is this something that can be simply added to this code or ...
0
votes
1answer
102 views

PHP: if more than ..px resize to

I want to do so if the image are over the dimensions 604x453, then resize it to 604x453. Ive made it this far: $org_name = stripslashes($_FILES[$upload_name]['name']); $file_size = ...
0
votes
1answer
168 views

How to resize and display images from another domain using php?

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 ...
0
votes
1answer
449 views

Image resizing with PHP advice

From previous experiences, I've noticed that I'm not very good at integrating 'scripts' created by others, with my own existing code, as of now. I need some advice on understanding what this person is ...
0
votes
3answers
546 views

resize an image to an exact size, retain aspect, and fill any space in php

hy, Let's say I want to convert an image to an exact size, eg: 400x300. The trick is, if the image, due to its aspect ratio, does not fit in 400x300, then place it in there with black borders. A ...
0
votes
1answer
503 views

PHP Fatal Error while uploading/resizing images

I'm using a code which will upload an image, put the image in the "resize" folder, resize the image, move the image into another folder, then delete the image from the "resize" folder, however I'm ...