|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2013-08-03 14:10 UTC] labs at undef dot name
  [2013-08-10 14:28 UTC] labs at undef dot name
  [2015-12-30 16:48 UTC] danack@php.net
 
-Status: Open
+Status: Feedback
  [2015-12-30 16:48 UTC] danack@php.net
  [2016-01-10 04:22 UTC] pecl-dev at lists dot php dot net
 | |||||||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 19:00:02 2025 UTC | 
Description: ------------ gmagick/1.1.2RC1 GraphicsMagick/1.3.18 PHP/5.4.16 All build from source, i can provide how the build was done on request. -------------- On large operations to build different resized images from source images, sometimes the operation are aborted with this message: php: magick/omp_data_view.c:181: AccessThreadViewData: Assertion `index < data_set->nviews' failed. Aborted The operation i do does not always gets aborted with this message, the last two tries running without any problems. I tried it now 5 times and 3 times it was aborted. In my case i want to work on about 1600 different Images (formats and sizes). Test script: --------------- // Simplified script, the sizes for resizeimage() are calculated and ceil()'ed $base = new Gmagick('abc.jpg'); $base->stripimage(); $result_image = $base->cloneImage(); $result_image = $result_image->resizeimage(800, 600, null, 0.9); $result_image->commentimage('Add a 94 char long comment'); $result_image->setImageFormat('jpg'); $result_image->writeImage('abc_large.jpg'); $result_image->destroy(); unset($result_image); $result_image = $base->cloneImage(); $result_image = $result_image->resizeimage(340, 255, null, 0.9); $result_image->commentimage('Add a 94 char long comment'); $result_image->setImageFormat('jpg'); $result_image->writeImage('abc_expose.jpg'); $result_image->destroy(); unset($result_image); $result_image = $base->cloneImage(); $result_image = $result_image->resizeimage(133, 100, null, 0.9); $result_image->commentimage('Add a 94 char long comment'); $result_image->setImageFormat('jpg'); $result_image->writeImage('abc_thumb.jpg'); $result_image->destroy(); unset($result_image); $result_image = $base->cloneImage(); $result_image = $result_image->resizeimage(100, 75, null, 0.9); $result_image->commentimage('Add a 94 char long comment'); $result_image->setImageFormat('jpg'); $result_image->writeImage('abc_mini.jpg'); $result_image->destroy(); unset($result_image); $base->destroy(); unset($base); Actual result: -------------- php: magick/omp_data_view.c:181: AccessThreadViewData: Assertion `index < data_set->nviews' failed. Aborted