Skip to content

Instantly share code, notes, and snippets.

@digitalhydra
Created December 13, 2013 19:19
Show Gist options
  • Save digitalhydra/7949656 to your computer and use it in GitHub Desktop.
Save digitalhydra/7949656 to your computer and use it in GitHub Desktop.
generar thumbnail conGD
<?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