php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #55638 width position does not work.
Submitted: 2011-09-08 02:26 UTC Modified: 2011-09-08 07:37 UTC
From: www dot query at gmail dot com Assigned:
Status: Not a bug Package: *Graphics related
PHP Version: Irrelevant OS: Centos (Red Hat) 5.6
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
34 + 12 = ?
Subscribe to this entry?

 
 [2011-09-08 02:26 UTC] 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.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2011-09-08 07:37 UTC] pajoye@php.net
-Status: Open +Status: Bogus
 [2011-09-08 07:37 UTC] pajoye@php.net
Please report this issue at http://pecl.php.net/gmagick
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Mon May 20 18:01:36 2024 UTC