forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #43475: Styled thick horizontal lines are scrambled
Thick lines are drawn by gdImageFilledRectangle(), which iterates over the x ordinate first (Z order) to apply the style pattern. While this works fine for vertical and diagonal lines, it obviously fails for horizontal lines, which have to be iterated over in N order. To fix this bug, we introduce the helpers gdImageFilled(H|V)Rectangle(), which may be reused for other purposes as well. This is basically the same fix as libgd/libgd/c2b91dbc.
- Loading branch information
Showing
3 changed files
with
111 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
--TEST-- | ||
Bug #43475 (Thick styled lines have scrambled patterns) | ||
--SKIPIF-- | ||
<?php | ||
if (!extension_loaded('gd')) die("skip gd extension not available\n"); | ||
?> | ||
--FILE-- | ||
<?php | ||
require_once __DIR__ . '/similarity.inc'; | ||
|
||
function setStyleAndThickness($im, $color, $thickness) | ||
{ | ||
$style = array(); | ||
$i = 0; | ||
while ($i < 16 * $thickness) { | ||
$style[$i++] = $color; | ||
} | ||
while ($i < 20 * $thickness) { | ||
$style[$i++] = IMG_COLOR_TRANSPARENT; | ||
} | ||
while ($i < 28 * $thickness) { | ||
$style[$i++] = $color; | ||
} | ||
while ($i < 32 * $thickness) { | ||
$style[$i++] = IMG_COLOR_TRANSPARENT; | ||
} | ||
imagesetstyle($im, $style); | ||
imagesetthickness($im, $thickness); | ||
} | ||
|
||
$im = imagecreate(800, 800); | ||
imagecolorallocate($im, 255, 255, 255); | ||
$black = imagecolorallocate($im, 0, 0, 0); | ||
|
||
setStyleAndThickness($im, $black, 1); | ||
imageline($im, 50, 250, 550, 250, IMG_COLOR_STYLED); | ||
imageline($im, 550, 250, 550, 750, IMG_COLOR_STYLED); | ||
imageline($im, 550, 750, 50, 250, IMG_COLOR_STYLED); | ||
|
||
setStyleAndThickness($im, $black, 2); | ||
imageline($im, 100, 200, 600, 200, IMG_COLOR_STYLED); | ||
imageline($im, 600, 200, 600, 700, IMG_COLOR_STYLED); | ||
imageline($im, 600, 700, 100, 200, IMG_COLOR_STYLED); | ||
|
||
setStyleAndThickness($im, $black, 4); | ||
imageline($im, 150, 150, 650, 150, IMG_COLOR_STYLED); | ||
imageline($im, 650, 150, 650, 650, IMG_COLOR_STYLED); | ||
imageline($im, 650, 650, 150, 150, IMG_COLOR_STYLED); | ||
|
||
setStyleAndThickness($im, $black, 6); | ||
imageline($im, 200, 100, 700, 100, IMG_COLOR_STYLED); | ||
imageline($im, 700, 100, 700, 600, IMG_COLOR_STYLED); | ||
imageline($im, 700, 600, 200, 100, IMG_COLOR_STYLED); | ||
|
||
$ex = imagecreatefrompng(__DIR__ . '/bug43475.png'); | ||
var_dump(calc_image_dissimilarity($ex, $im) < 1e-5); | ||
?> | ||
--EXPECT-- | ||
bool(true) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.