Search found 2 matches
- 2017-05-25T02:53:57-07:00
- Forum: Users
- Topic: Limiting resources for large images efficiently
- Replies: 10
- Views: 8862
Re: Limiting resources for large images efficiently
Thanks for the details information regarding how the logic works. I am using ImageMagick 6.9.8-3 Q16 x86_64 2017-04-24 version. For v6 Q16, the basic calculation I use is each image needs 8 bytes/pixel, so 15360*8630*8/1e9 = 1.0604544 GB. Why does it take 8 bytes/pixel when the depth is only 1 byte ...
- 2017-05-24T11:45:13-07:00
- Forum: Users
- Topic: Limiting resources for large images efficiently
- Replies: 10
- Views: 8862
Limiting resources for large images efficiently
I am trying to convert an image with following details: Geometry: 15360x8640+0+0 Resolution: 300x300 Depth: 8-bit Pixels: 132710400 I initially tried with this command: convert /tmp/16MB-test.jpg -quality 95 -sampling-factor 4:2:2 -background white -flatten -resize 960 /tmp/960x960/16MB-test-preview ...