|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patchesimagick_helpers_fix (last revision 2012-05-04 05:34 UTC by abxccd at msn dot com)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-05-04 02:31 UTC] abxccd at msn dot com
[2012-05-04 03:25 UTC] abxccd at msn dot com
[2012-05-04 05:36 UTC] abxccd at msn dot com
[2012-05-29 13:04 UTC] jobklaassen at hotmail dot com
[2012-05-30 20:27 UTC] mkoppanen@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: mkoppanen
[2012-05-30 20:27 UTC] mkoppanen@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 12:00:01 2025 UTC |
Description: ------------ I am creating a thumbnail from an image like this: $file = "D:\files\pictures\mypicture.png" $img = new Imagick($file) $img->thumbnailimage(128, 128, TRUE, TRUE); //Resize, best fit and fill $img->writeImage("D:\files\pictures\thumbs\mypicture.png"); $img->destroy(); While I see a thumbnail created in D:\files\pictures\thumbs\mypicture.png, an extra copy called after_thumbnail.png is also written to my webroot: D:\files\web\ Expected result: ---------------- The extra after_thumbnail.png should not be written at all.