Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <? 
  2.     $img = $_GET['img'];
  3.     $img2 = md5($img).'.jpg';
  4.     $image = imagecreatetruecolor(214,300);
  5.     $image = imagecreatefromjpeg($img);
  6.     Header('Content-Type: image/jpeg');
  7.     imagejpeg($image,"/home/site/public_html/imgs/$img2",100); // pasta imgs ta com chmod 777
  8. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement