RaposoTKD

miniatura.php

Apr 11th, 2012
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php
  2.     $imagem=imagecreatefromjpeg("IMAGEM.jpg");
  3.     $im=imagecreatetruecolor(150,150);
  4.     list($w,$h)=getimagesize("IMAGEM.jpg");
  5.     $x0=($w-(0.8*$h))/2;
  6.     $y0=0.1*h;
  7.     imagecopyresized($im,$imagem,0,0,$x0,$y0,150,150,0.8*$h,0.8*$h);
  8.     imagejpeg($im,"miniatura.jpg");
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment