I have a client who allows customers to upload large files to manipulate for printing. The site's using Imagick to handle the image, however, when trying to set the max width and height, it wont go any higher than 16000. For example:
// This sets the max width to 20000px
php > Imagick::setResourceLimit(9, 20000);
php > echo $image->getResourceLimit(9);
16000
php > Imagick::setResourceLimit(9, 15000);
php > echo $image->getResourceLimit(9);
15000
Is this a limitation of the library or is there something else I need to be configuring?