PHP – Redimensionar imagem JPG

Este código utilizei em um projeto que precisava obrigatoriamente redimensionar uma imagem para exibir em um aplicativo mobile, repare que na função imagejpeg o último parâmetro eu estou definindo com valor 50 ou seja caindo a definição.

// Redimensiona uma imagem JPG em 130 X 130
function imagem($path){

list($width, $height) = getimagesize($path);
$new_width = 130;
$new_height = 130;
$image_p = imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefromjpeg($path);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
ob_start();
imagejpeg($image_p, null, 50);
$contents = ob_get_contents();
ob_end_clean();

return $contents; // Conteudo da imagem.

}



// Usando a função
$retorno = imagem("/home/teste/caminhoarquivo.jpg")

// Podemos transformar em base64 o retorno e o resto começamos a brincar
$base64 = base64_encode($retorno);

Deixar uma resposta