php - Max resolution for processing with GD -
i have applicaton generate images @ 600 dpi 1000*360, need image 6000*2160 @ 72dpi, when try create image resolution gd not working. can 1 tell me reason,? or have limitation in processing resolution in gd?
as @devzer0 mentioned, seems memory problem.
to bypass memory limit, try setting infinite following command in php @ top of code:
<?php ini_set('memory_limit','-1'); ?>
Comments
Post a Comment