/ Published in: PHP
Expand |
Embed | Plain Text
function saveAndResize($filename, $name, $new_width, $new_height, $pathAndFilename){ $image_p = imagecreatetruecolor($new_width, $new_height); $image = imagecreatefromjpeg($filename); imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height); imagejpeg($image_p, $pathAndFilename); imagedestroy($image_p); }
You need to login to post a comment.
