我正在将徽标上传到我的系统,他们需要修复一个60x60像素的盒子。我有所有代码按比例调整大小,这不是问题。
我的454x292px图像变为60x38。问题是,我需要图片为60x60,这意味着我想用白色填充顶部和底部(我可以用颜色填充矩形)。
理论上我创建了一个白色矩形,60x60,然后我复制图像并将其调整为60x38并将其放在我的白色矩形中,从顶部开始11px(这相当于我需要的22px总填充量
我会发布我的代码,但它很长,虽然我可以提出要求。
有谁知道如何做到这一点,或者你能指点我这样做的代码/教程吗?
答案 0 :(得分:7)
使用GD:
$newWidth = 60;
$newHeight = 60;
$img = getimagesize($filename);
$width = $img[0];
$height = $img[1];
$old = imagecreatefromjpeg($filename); // change according to your source type
$new = imagecreatetruecolor($newWidth, $newHeight)
$white = imagecolorallocate($new, 255, 255, 255);
imagefill($new, 0, 0, $white);
if (($width / $height) >= ($newWidth / $newHeight)) {
// by width
$nw = $newWidth;
$nh = $height * ($newWidth / $width);
$nx = 0;
$ny = round(fabs($newHeight - $nh) / 2);
} else {
// by height
$nw = $width * ($newHeight / $height);
$nh = $newHeight;
$nx = round(fabs($newWidth - $nw) / 2);
$ny = 0;
}
imagecopyresized($new, $old, $nx, $ny, 0, 0, $nw, $nh, $width, $height);
// do something with new: like imagepng($new, ...);
imagedestroy($new);
imagedestroy($old);
答案 1 :(得分:0)
http://php.net/manual/en/function.imagecopyresampled.php
这基本上是你要复制的功能并顺利调整大小。
http://www.php.net/manual/en/function.imagecreatetruecolor.php
使用那个你创建一个新的黑色图像。
http://www.php.net/manual/en/function.imagefill.php
该部分解释了如何填充白色。
其余部分如下。