Edit report at https://bugs.php.net/bug.php?id=59942&edit=1
ID: 59942 Updated by: v...@php.net Reported by: www dot query at gmail dot com Summary: Positioning error in compositeimage -Status: Open +Status: Closed Type: Bug Package: gmagick Operating System: Centos (Red Hat) 5.6 PHP Version: 5.1.6 -Assigned To: +Assigned To: vito Block user comment: N Private report: N New Comment: Thank you for taking the time to report a problem with PHP. Unfortunately you are not using a current version of PHP -- the problem might already be fixed. Please download a new PHP version from http://www.php.net/downloads.php If you are able to reproduce the bug with one of the latest versions of PHP, please change the PHP version on this bug report to the version you tested and change the status back to "Open". Again, thank you for your continued support of PHP. Hi, Please try with version 1.0.10b1. I'd tried to reproduce with the code specified in the Description and was able to generate the right image. The Gmagick source seems to act on the x axis properly as well. Thanks! Email me if you need my source code and image output. Vito Previous Comments: ------------------------------------------------------------------------ [2011-09-08 09:29:18] www dot query at gmail dot com >From phpinfo() gmagick version 1.0.1-b1 ------------------------------------------------------------------------ [2011-09-08 09:23:07] 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 result 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. Using the same instruction, $picin->compositeimage($pj,1,577,$height-98); ImageMagick positions correctly in bottom right corner. --------------------------------- Please supply any information that may be helpful in fixing the bug: * The version number of the PECL package or files you are using. HOW DO I GET THIS ???? ---------------------------- Reproduce code: --------------- 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=59942&edit=1