所以我已经知道如何使用带有php的GD图像库来组合两个图像并保持透明度但是我需要能够从服务器中提取图像,同时保持尺寸为2的幂,以便我可以将它们用作要应用于opengl中的3d对象的纹理。
所以我真正的问题是如何放置图像的缩放版本,使其原始比例保持在具有256x256或128x128维度的透明图像中。我也喜欢将调整后的图像放在完全透明的图像的中心。
对此的一些帮助将是非常棒的。
答案 0 :(得分:1)
查看此引用,我认为这是您想要的:http://php.net/manual/en/function.imagecopyresized.php
<?php
// File and new size
$filename = 'test.jpg';
$percent = 0.5;
// Content type
header('Content-Type: image/jpeg');
// Get new sizes
list($width, $height) = getimagesize($filename);
$newwidth = $width * $percent;
$newheight = $height * $percent;
// Load
$thumb = imagecreatetruecolor($newwidth, $newheight);
$source = imagecreatefromjpeg($filename);
// Resize
imagecopyresized($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
// Output
imagejpeg($thumb);
?>