嗨,我为要并排放置的图像编写了一些代码。我为此目的使用了 Imagick 库。这是我的代码。
$im = new Imagick();
// session contain image path like upload/my.jpg
$im->readImage("http://localhost/wordpress3.5/".$_SESSION['imgname']);
$im->readImage("http://localhost/wordpress3.5/".$_SESSION['preimgurl']);
$im->resetIterator();
$combined = $im->appendImages(false);
/* Output the image */
$combined->setImageFormat("png");
header("Content-Type: image/png");
echo $combined;exit();
但是输出不是我想的那样。这是输出。我在插件/文件下编写了这段代码。我还想将该图像保存到像“localhost/wordpress/uplaod_pic/”这样的目录中。