|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-10-04 03:59 UTC] mkoppanen@php.net
[2007-10-04 19:53 UTC] pecl at davidkmuir dot com
[2007-10-04 19:53 UTC] pecl at davidkmuir dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 08 11:00:01 2025 UTC |
Description: ------------ Imagick::setImageOpacity() method is missing from Imagick 2.0.0 listing of get_class_methods('imagick'); does not show setImageOpacity() Reproduce code: --------------- header('Content-type: image/jpeg'); $image1 = new Imagick('test1.jpg'); $image2 = new Imagick('test2.jpg'); $image2->setImageOpacity(0.7); $image1->compositeImage($image2, Imagick::COMPOSITE_OVER, 0, 0); echo $image1; Expected result: ---------------- Should display a composite of two images. Actual result: -------------- Fatal error: Call to undefined method Imagick::setImageOpacity()