我想知道如何在PHP中创建占位符图像服务,如lorempixel.com或dummyimage.com 特别是,如何从文件夹中获取图像并根据GET参数裁剪它。 任何人
答案 0 :(得分:1)
您应该使用GD库
只需使用参数
创建宽度和高度的新图像http://nl1.php.net/manual/en/function.imagecreate.php
?的script.php宽度= 200安培;高度= 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);