Hi David,
Is it possible to resize only the images that are bigger than $imageCacheResize Value setted in the imageCache.php?
Thanks !
Hello Fabio,
Sure - in imageCache.php look for the following code around line 54:
if ($imageCacheResize)
...and REPLACE with:
if ($imageCacheResize && ((imagesx($res) > $imageCacheResize) || (imagesy($res) > $imageCacheResize)))
Hope this helps!
Cheers, David. -- PriceTapestry.com
Super !
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hello Fabio,
Sure - in imageCache.php look for the following code around line 54:
if ($imageCacheResize)
...and REPLACE with:
if ($imageCacheResize && ((imagesx($res) > $imageCacheResize) || (imagesy($res) > $imageCacheResize)))
Hope this helps!
Cheers,
David.
--
PriceTapestry.com