class.upload.php is a powerful and mature PHP class to manage uploaded files, and manipulate images in many ways. The script is available under a GPL license.
I'm having problems with large images in a host and I wold like to check first width and height so I can calculate the memory limit.
in FAQ there is this info. what matters is the number of pixels. Roughly, you need to multiply the number of pixels by 8 to have an estimate of the memory required for the image.
I have an image that is 2473x2864, number of pixeles would be 7082672? Multiply by 8 is 56661376 Around 54 megas? Is this correct? That would be the memory I will need?
I'm having problems with large images in a host and I wold like to check first width and height so I can calculate the memory limit.
in FAQ there is this info.
what matters is the number of pixels. Roughly, you need to multiply the number of pixels by 8 to have an estimate of the memory required for the image.
I have an image that is 2473x2864, number of pixeles would be 7082672?
Multiply by 8 is 56661376 Around 54 megas? Is this correct? That would be the memory I will need?
Thanks!