php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #57784 ImagickDraw::point
Submitted: 2007-08-13 20:14 UTC Modified: 2007-08-14 04:17 UTC
From: alan at ridersite dot org Assigned:
Status: Closed Package: imagick (PECL)
PHP Version: 5.2.1 OS: linux
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: alan at ridersite dot org
New email:
PHP Version: OS:

 

 [2007-08-13 20:14 UTC] alan at ridersite dot org
Description:
------------
ImagickDraw::point only creates a single pixel at the coordinates. It ignores the stroke width and color settings.

manual says: "Draws a point using the current stroke color and stroke thickness at the specified coordinates."

Reproduce code:
---------------
$color->setColor('blue');
$draw->setStrokeColor($color);
$draw->setStrokeWidth(6);

$draw->line(10, 30, 400, 30);  //this works
$draw->point(200,200);         //This doesn't


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2007-08-14 04:17 UTC] mkoppanen@php.net
I was able to reproduce this with just by calling ImageMagick C API functions. 

It would seem to me that this bug is not related to Imagick itself so I am closing this bug.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 00:01:28 2024 UTC