Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. function gerarThumb($fotoThumb){
  2.  
  3. $foto = "imagens/".$fotoThumb;
  4.  
  5. // Novas dimensões da imagem
  6. $novaLargura = 200;
  7. $novaAltura = 200;
  8.  
  9. list($largura,$altura) = getimagesize($foto);
  10.  
  11. // Gerar a miniatura
  12. $miniatura = imagecreatetruecolor($novaLargura, $novaAltura);
  13. $imagem = imagecreatefromjpeg($foto);
  14. imagecopyresampled($miniatura, $imagem, 0, 0, 0, 0, $novaLargura, $novaAltura, $largura, $altura);
  15.  
  16. imagejpeg($miniatura,50);
  17.  
  18. // destruir a imagem
  19. imagedestroy($miniatura);
  20. //return true;
  21. }
  22. echo "<img src='aqui entraria a função'>";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement