php GD中的“z-index”

Posted

技术标签:

【中文标题】php GD中的“z-index”【英文标题】:"z-index" in php GD 【发布时间】:2016-09-01 02:21:55 【问题描述】:

在css中,我们有一个叫“z-index”的属性,php GD和Image Functions中控制“z-index”有什么相同之处?

我一直在寻找,但我找不到,请帮助。 谢谢你

【问题讨论】:

【参考方案1】:

php GD 库中没有像 z-index 这样的东西 但是有几种方法可以将图像重叠在图像上或将文本重叠在图像上

$redimg = imagecreatetruecolor(100, 100);
$image = imagecreatefrompng('image.png');

// sets background to red
$red = imagecolorallocate($redimg, 255, 0, 0);
imagefill($redimg, 0, 0, $red);

// Merge the red image onto the PNG image
imagecopymerge($image, $redimg, 0, 0, 0, 0, 100, 100, 75);

header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
imagedestroy($redimg);

这里有一个例子,或者让我知道,你到底想做什么,我会帮助你 还有更多信息here。

【讨论】:

以上是关于php GD中的“z-index”的主要内容,如果未能解决你的问题,请参考以下文章

如何计算文档中的最高 z-index?

html z-index中的图像标签可以在css背景图像后面吗?

关于z-index

webkit-transform 覆盖 Chrome 13 中的 z-index 排序

CSS IE中的z-index错误

iOS 和 Safari macOS 中的 z-index 反转