I need help about resizing images

See all posts See thread Reply

Re: I need help about resizing images new!
by colin, 11 years, 11 months ago
The limits in php.ini depend on your system, the way PHP is set up, the permissions that you have, etc... Check with your hosting company what you can do.

If you want to resize images larger than 1MB, down to approximately 1MB, you can use this:
$foo->image_convert         = 'jpg';
$foo->jpeg_size             = 1048576;

Note that it works only with JPEG images.Reply