Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. $filename = './'.$fold.'/' . mt_rand(100,999) . date('YmdHis') . mt_rand(100,999) . '.' . $match[1]; //создаем уникальное имя
  2.  
  3. $info = getimagesize($image);//получили размер
  4. $w = $info[0];
  5. $h = $info[1];
  6. $create = 'imagecreatefrom' . $type;
  7. $img = $create($filename);
  8. //вычисляем
  9. $ratio = min($width/$w, $height/$h);
  10. $width = $w * $ratio;
  11. $height = $h * $ratio;
  12. $x = 0;
  13.  
  14. $new = imagecreatetruecolor($width, $height);
  15.  
  16. imagecopyresampled( $new, $img, 0, 0, $x, 0, $width, $height, $w, $h );
  17.  
  18. //вот тут даем картинке уникальное имя и как-то записываем ее
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement