1

我有一个 PNG 框架,我想知道它的厚度。我能够计算图像本身的宽度/高度。

$frame = imagecreatefrompng('frame.png');
// get frame dimentions
$frame_width = imagesx($frame);
$frame_height = imagesy($frame);

但无法找出计算框架厚度的方法,请参见下图,了解我的意思。

在此处输入图像描述

有什么建议么?

4

2 回答 2

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;
?>
于 2013-04-02T11:55:23.500 回答
1

PNG文件中没有任何对象。您只能通过与imagecolorat()&的坐标获得颜色(具有透明度) imagecolorsforindex()

于 2013-04-02T11:19:50.857 回答