Edit report at https://bugs.php.net/bug.php?id=55638&edit=1

 ID:                 55638
 Updated by:         paj...@php.net
 Reported by:        www dot query at gmail dot com
 Summary:            width position does not work.
-Status:             Open
+Status:             Bogus
 Type:               Bug
 Package:            *Graphics related
 Operating System:   Centos (Red Hat)  5.6
 PHP Version:        Irrelevant
 Block user comment: N
 Private report:     N

 New Comment:

Please report this issue at http://pecl.php.net/gmagick


Previous Comments:
------------------------------------------------------------------------
[2011-09-08 02:26:27] www dot query at gmail dot com

Description:
------------
Gmagick::compositeimage

When placing smaller image on top of larger image, the 'x' parameter does not 
work. Whatever the value the resulr is x= 0.  X is the width.

X = 0, y = 0 is the top left corner. Trying to position in the bottom right 
corner results in the image appearing in the bottom left corner regardless of 
the value of 'x' being the 3rd parameter in

$picin->compositeimage($pj,1,570,350);

The larger image is 800 wide, 450 high, JPG. The smaller image is 222 wide by 
98 high and is a PNG with a transparent background.



Test script:
---------------
PIC1 = 3840 wide x 2160 high.

$picin = new Gmagick($pic1);
$picin->scaleimage(800,0);
$height = $picin->getimageheight();
$picin->setimagefilename($pic3);
$picin->writeimage($pic3);

$pj = new gmagick($dir2.'pj5.png');
$picin->compositeimage($pj,1,577,$height-98);

# 222 x 98 / 800 x 450

$pic6  = $dir2.$ref.'-000.jpg';
$picin->writeimage($pic6);

Expected result:
----------------
The smaller image positioned in the bottom right corner of the larger image.

Actual result:
--------------
The smaller image is position in the bottom left corner.


------------------------------------------------------------------------



-- 
Edit this bug report at https://bugs.php.net/bug.php?id=55638&edit=1

Reply via email to