Re: 2. How we can increase the image quality for resized images in code? It is too much compressed, we want to set a better quality for auto resizing feature.
The resized image quality is thde GD default value set which is normally the accepted with both size and details. Any way to change image quality between 1 to 100, change it in the code the module PostAdLib.pm, change the line(s): print Out $Thumb->jpeg; to print Out $Thumb->jpeg(XX); where XX is 0-100, the quality. This should be an integer between 0 and 100. Higher quality scores give larger files and better image quality. If you don't specify the quality, jpeg() will choose a good default. |