Open
Description
Issue description
The Imagine Point class constrains point values to be positive (vis
/**
* Constructs a point of coordinates.
*
* @param int $x
* @param int $y
*
* @throws \Imagine\Exception\InvalidArgumentException
*/
public function __construct($x, $y)
{
if ($x < 0 || $y < 0) {
throw new InvalidArgumentException(sprintf('A coordinate cannot be positioned outside of a bounding box (x: %s, y: %s given)', $x, $y));
}
$this->x = $x;
$this->y = $y;
}
Why is this? Is there a work-around for positioning drawn or pasted image objects so that they are partially placed outside of an image area?
If you disable the constraint, it appears that Imagine continues to work OK with negative values.
What version of Imagine are you using?
1.3.2
What's the PHP version you are using?
8.0.25
What's the imaging library you are using [gd/imagick/gmagick/any]?
GD2
What's the imaging library configuration
GD Version: "2.3.3"
FreeType Support: true
FreeType Linkage: "with freetype"
GIF Read Support: true
GIF Create Support: true
JPEG Support: true
PNG Support: true
WBMP Support: true
XPM Support: true
XBM Support: true
WebP Support: true
BMP Support: true
TGA Read Support: true
JIS-mapped Japanese Font Support: false
Minimal PHP code to reproduce the error:
n/a
Metadata
Metadata
Assignees
Labels
No labels