我有一个PNG框架,我想知道它的厚度。我能够计算出图像本身的宽度/高度。
$frame = imagecreatefrompng('frame.png');
// get frame dimentions
$frame_width = imagesx($frame);
$frame_height = imagesy($frame);
但无法想出一种计算框架厚度的方法,请看下面的图片,看看我的意思。
有什么建议吗?
答案 0 :(得分:2)
从最后一个答案中可以看出光栅图像文件中没有对象。但是,您可以通过搜索第一次出现的透明色和第一次出现的非透明色来计算它们的距离(假设图像的空白区域都是透明的)。
示例代码:
<?php
$img = imagecreatefrompng('./frame.png');//open the image
$w = imagesx($img);//the width
$h = imagesy($img);//the height
$nonTransparentPos = null;//the first non-transparent pixel's position
$transparentPos = null;//the first transparent pixel's position
//loop through each pixel
for($x = 0; $x < $w; $x++){
for($y = 0; $y < $h; $y++){
$color = imagecolorsforindex($img,imagecolorat($img,$x,$y));
if($color['alpha'] < 127 && $nonTransparentPos === null){
$nonTransparentPos = array($x,$y);
}
if($color['alpha'] === 127 && $transparentPos === null){
$transparentPos = array($x,$y);
}
}
//leave the loop if we have finished finding the two values.
if($transparentPos !== null && $nonTransparentPos !== null){
break;
}
}
$length = $transparentPos[0]-$nonTransparentPos[0];//calculate the two point's x-axis distance
echo $length;
?>
答案 1 :(得分:1)
PNG文件中没有任何对象。您只能通过imagecolorat()
&amp;的坐标获得颜色(透明度)。 imagecolorsforindex()