PHP 使用 imageline 和 XOR

发布于 2024-10-15 04:23:40 字数 88 浏览 1 评论 0原文

我正在尝试使用图像 GD 库来使用 XOR 过滤器绘制线条。我无法找到一种简单的方法来做到这一点,因此绘制的线会从白色“翻转”为黑色,反之亦然。有什么解决办法吗?

I am trying to use the image GD library to draw lines using an XOR filter. I have not been able to find an easy way to do this so a line being drawn "flips" white to black and vice-versus. Any solutions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

荭秂 2024-10-22 04:23:40

我非常确定不可能使用内置的 imageline PHP 函数绘制 XOR 线。尽管您可以使用 imagesetpixel 和自定义线条绘制算法自己绘制它。例如,这样的东西可以工作(Bresenham Line Algorythm for PHP):

function line($im,$x1,$y1,$x2,$y2) {

$deltax=abs($x2-$x1);
$deltay=abs($y2-$y1);

if ($deltax>$deltay) {
 $numpixels=$deltax+1;
 $d=(2*$deltay)-$deltax;
 $dinc1=$deltay << 1; $dinc2=($deltay-$deltax) << 1;
 $xinc1=1; $xinc2=1;
 $yinc1=0; $yinc2=1;
} else {
 $numpixels=$deltay+1;
 $d=(2*$deltax)-$deltay;
 $dinc1=$deltax << 1; $dinc2=($deltax-$deltay)<<1;
 $xinc1=0; $xinc2=1;
 $yinc1=1; $yinc2=1;
}

if ($x1>$x2) {
 $xinc1=-$xinc1;
 $xinc2=-$xinc2;
}

if ($y1>$y2) {
 $yinc1=-$yinc1;
 $yinc2=-$yinc2;
}
$x=$x1;
$y=$y1;

for ($i=0;$i<$numpixels;$i++) {

 $color_current = imagecolorat ( $im, $x, $y );
 $r = ($color_current >> 16) & 0xFF;
 $g = ($color_current >> 8) & 0xFF;
 $b = $color_current & 0xFF;
 $color = imagecolorallocate($im, 255 - $r, 255 - $g, 255 - $b);

 imagesetpixel($im,$x,$y,$color);

 if ($d<0) {
  $d+=$dinc1;
  $x+=$xinc1;
  $y+=$yinc1;
 } else {
  $d+=$dinc2;
  $x+=$xinc2;
  $y+=$yinc2;
 }
}
    return ;
}

函数完美地适用于从文件创建的图像。

I'm pretty sure that it's not possible to draw the XOR line with built-in imageline PHP function. Though you can draw it yourself with imagesetpixel and custom line drawing algorithm. For example something like this can work (Bresenham Line Algorythm for PHP):

function line($im,$x1,$y1,$x2,$y2) {

$deltax=abs($x2-$x1);
$deltay=abs($y2-$y1);

if ($deltax>$deltay) {
 $numpixels=$deltax+1;
 $d=(2*$deltay)-$deltax;
 $dinc1=$deltay << 1; $dinc2=($deltay-$deltax) << 1;
 $xinc1=1; $xinc2=1;
 $yinc1=0; $yinc2=1;
} else {
 $numpixels=$deltay+1;
 $d=(2*$deltax)-$deltay;
 $dinc1=$deltax << 1; $dinc2=($deltax-$deltay)<<1;
 $xinc1=0; $xinc2=1;
 $yinc1=1; $yinc2=1;
}

if ($x1>$x2) {
 $xinc1=-$xinc1;
 $xinc2=-$xinc2;
}

if ($y1>$y2) {
 $yinc1=-$yinc1;
 $yinc2=-$yinc2;
}
$x=$x1;
$y=$y1;

for ($i=0;$i<$numpixels;$i++) {

 $color_current = imagecolorat ( $im, $x, $y );
 $r = ($color_current >> 16) & 0xFF;
 $g = ($color_current >> 8) & 0xFF;
 $b = $color_current & 0xFF;
 $color = imagecolorallocate($im, 255 - $r, 255 - $g, 255 - $b);

 imagesetpixel($im,$x,$y,$color);

 if ($d<0) {
  $d+=$dinc1;
  $x+=$xinc1;
  $y+=$yinc1;
 } else {
  $d+=$dinc2;
  $x+=$xinc2;
  $y+=$yinc2;
 }
}
    return ;
}

Function perfectly works for images, created from files.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文