Created
December 13, 2013 19:19
-
-
Save digitalhydra/7949656 to your computer and use it in GitHub Desktop.
generar thumbnail conGD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Simple Thumb Gen | |
// Por Alex para WebTaller.com | |
$original = imagecreatefromjpeg("original.jpg"); | |
$thumb = imagecreatetruecolor(150,150); // Lo haremos de un tamaño 150x150 | |
$ancho = imagesx($original); | |
$alto = imagesy($original); | |
imagecopyresampled($thumb,$original,0,0,0,0,150,150,$ancho,$alto); | |
imagejpeg($thumb,'thumb.jpg',90); // 90 es la calidad de compresión | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment