Search found 15 matches
- 2016-09-26T10:14:57-07:00
- Forum: Users
- Topic: Resizing multiple dimensions, multiple formats
- Replies: 12
- Views: 7558
Re: Resizing multiple dimensions, multiple formats
The write command may want to modify the image, to prepare it for output. For example the image may have more than 256 colours but the output format needs 256 or fewer. "-write" will modify the image in memory, then write it to disk. Any subsequent processing (including any more writes) will use ...
- 2016-09-26T08:54:33-07:00
- Forum: Users
- Topic: Resizing multiple dimensions, multiple formats
- Replies: 12
- Views: 7558
Re: Resizing multiple dimensions, multiple formats
I had forgotten about the PNG -quality thing, I re-ran the command (on Windows) with -quality 05 for the PNG output files and it ran in 10 seconds. The "loading" entry no longer appears for PNG output, without looking up the documentation I would assume that previously ImageMagick was doing some ...
- 2016-09-26T07:52:37-07:00
- Forum: Users
- Topic: Resizing multiple dimensions, multiple formats
- Replies: 12
- Views: 7558
Re: Resizing multiple dimensions, multiple formats
I just installed ImageMagick-7.0.3-Q8 and ImageMagick-7.0.3-Q16, the same command (on the Windows machine) took ~26 seconds.
- 2016-09-26T07:31:34-07:00
- Forum: Users
- Topic: Resizing multiple dimensions, multiple formats
- Replies: 12
- Views: 7558
Re: Resizing multiple dimensions, multiple formats
Load/Image//tmp[magick-19009cL_UcmVI5geL]: It seems to be using a temporary image on disk. This happens when there is not enough real memory. Can you try the same command on a computer with more memory? Can you upload test.jpg, or any image that has the problem, to somewhere like dropbox.com and ...
- 2016-09-26T05:21:31-07:00
- Forum: Users
- Topic: Resizing multiple dimensions, multiple formats
- Replies: 12
- Views: 7558
Re: Resizing multiple dimensions, multiple formats
I attempted to use MPR again as follows: time \ convert -monitor 'test.jpg' -write mpr:foo +delete \ \( mpr:foo -resize 3000x -quality 85 \ +write 'test 3000.webp' \ +write 'test 3000.jpeg' \ -write 'test 3000.png' \ \) \ \( mpr:foo -resize 2000x -quality 85 \ +write 'test 2000.webp' \ +write 'test ...
- 2016-09-26T05:09:31-07:00
- Forum: Users
- Topic: Resizing multiple dimensions, multiple formats
- Replies: 12
- Views: 7558
Re: Resizing multiple dimensions, multiple formats
Chunks like this: \(+clone -quality 85 -write 'test 3000.webp' +delete \) \ \( +clone -quality 85 -write '/test 3000.jpeg' +delete \) \ \( +clone -quality 85 -write 'test 3000.png' +delete \) \ ... can be replaced by: -quality 85 +write 'test 3000.webp' +write '/test 3000.jpeg' -write 'test 3000 ...
- 2016-09-25T16:35:15-07:00
- Forum: Users
- Topic: Resizing multiple dimensions, multiple formats
- Replies: 12
- Views: 7558
Resizing multiple dimensions, multiple formats
Hi guys, I have a bit of a plea to help me improve the performance of a command. What I am trying to do is this: Given a source image, resize it to various sizes, and for each size save it in a few different formats. Initially I did this by the means of some nested loops in PHP, having a different ...
- 2016-02-12T09:25:06-07:00
- Forum: Bugs
- Topic: Random black dots problem
- Replies: 14
- Views: 11592
Re: Random black dots problem
I'm sorry for the delay in replying, I had some connectivity issues. But, while I had the down time I did some testing. And I discovered that by converting my cluts to 8bpc TIFFs the problem goes away. Possibly the same would apply if I used 8bpc PNG also, but I haven't tested that, I'm just happy ...
- 2016-02-07T18:43:55-07:00
- Forum: Bugs
- Topic: Random black dots problem
- Replies: 14
- Views: 11592
Re: Random black dots problem
Try replacing libpng-1.2.50 with the current libpng-1.2.56. The "1.2.50" that you are running is probably not really libpng-1.2.50 but rather Ubuntu's "patched" 1.2.50 which might truncate the palette, due to an incorrectly-applied recent security patch. This might be something I am unable to do ...
- 2016-02-07T16:08:50-07:00
- Forum: Bugs
- Topic: Random black dots problem
- Replies: 14
- Views: 11592
Re: Random black dots problem
Did you check your versions of libjpeg and libpng? see convert list format Sorry, I overlooked that. $ convert -list format Format Mode Description ------------------------------------------------------------------------------- 3FR r-- Hasselblad CFV/H3D39II A* rw+ Raw alpha samples AAI* rw+ AAI ...
- 2016-02-07T14:54:31-07:00
- Forum: Bugs
- Topic: Random black dots problem
- Replies: 14
- Views: 11592
Re: Random black dots problem
I'm not completely sure how to determine how to keep an eye on ImageMagicks's temp file creation. I grep'd policy.xml which suggested that the tmp dir is /tmp, I watched the folder while I generated all the images within the application and it didn't look like any temp files are being created there ...
- 2016-02-07T10:16:33-07:00
- Forum: Bugs
- Topic: Random black dots problem
- Replies: 14
- Views: 11592
Re: Random black dots problem
The hald image was generated a long time ago, using a command like convert hald:8 hald.png this image was then modified in Photoshop and saved as a PNG (I don't want my careful colours to be messed up by JPEG compression!). I can't imagine that the hald image is causing the problem, as the problem ...
- 2016-02-06T18:15:10-07:00
- Forum: Bugs
- Topic: Random black dots problem
- Replies: 14
- Views: 11592
Random black dots problem
Hi guys and gals, I have a bit of a problem with ImageMagick that I've been wrestling with for a few hours, and I think it's time I got some help. When editing an image with the imagick PHP extension I occasionally get a seemingly random spattering of black dots on my output image. For example, I ...
- 2015-11-16T14:06:59-07:00
- Forum: Users
- Topic: Mysterious blue line using SRT and layers
- Replies: 2
- Views: 2446
Re: Mysterious blue line using SRT and layers
I just switched up to ImageMagick 6.9.2-6 Q16 x64 and the problem is gone!snibgo wrote:I don't get your blue line with v6.9.1-0, v6.9.1-6 or v6.9.2-5 on Windows 8.1.
That was a nice and simple fix, thanks for the help
- 2015-11-16T09:36:55-07:00
- Forum: Users
- Topic: Mysterious blue line using SRT and layers
- Replies: 2
- Views: 2446
Mysterious blue line using SRT and layers
What I am Trying To Do: I am trying to create a speedometer. I have a speedometer background image, and a needle image. I want to rotate the needle image so that it points at the correct speed, rescale it, and place it on the speedometer image. The needle should be rotated around the base of the ...