我想知道如何在 PHP 中创建占位符图像服务,例如 lorempixel.com 或 dummyimage.com,特别是如何从文件夹中获取图像并根据 GET 参数对其进行裁剪。有人吗?
问问题
2374 次
1 回答
2
您应该使用 GD 库
只需使用参数的宽度和高度创建一个新图像
http://nl1.php.net/manual/en/function.imagecreate.php
script.php?width=200&height=300
$width = (int)$_GET["width"];
$height = (int)$_GET["height"];
header("Content-Type: image/png");
$im = @imagecreate($width, $height) or die("Cannot Initialize new GD image stream");
$background_color = imagecolorallocate($im, 0, 0, 0);
imagepng($im);
imagedestroy($im);
于 2013-01-27T15:52:15.333 回答