I find that I cannot increase imagemagick's memory/map/disk limits above their current values:
$ identify -list resource
Resource limits:
Width: 16KP
Height: 16KP
Area: 128MP
Memory: 256MiB
Map: 512MiB
Disk: 1GiB
File: 768
Thread: 4
Throttle: 0
Time: unlimited
While I can decrease the limits from the above values, I cannot increase them:
$ identify -limit memory 128MiB -list resource | grep Mem
Memory: 128MiB
$ identify -limit memory 512MiB -list resource | grep Mem
Memory: 256MiB
$ MAGICK_DISK_LIMIT=0.2GiB identify -list resource | grep Disk
Disk: 204.8MiB
$ MAGICK_DISK_LIMIT=2GiB identify -list resource | grep Disk
Disk: 1GiB
How can increases above the default values be made? My system has 8 GB of RAM, 8 GB of swap, and, at least on certain partitions, hundreds of GB of available disk space.
policy.xml
– starbeamrainbowlabs Dec 29 '20 at 18:42