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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
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

Pull Requests

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-2025 The PHP Group
All rights reserved.
Last updated: Tue Jul 08 20:01:34 2025 UTC