Thank you for subj. It's working fine but there is problem for slideshow:\
\
1. There is a not proportional image resize when using the Slideshow feature.\
\
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.\
\
Thank You!
Has been fixed after changing settings in the Listing Options according to the following scheme:\
Slide Show Max Width (Pixels)= Uploaded Images Max Width (Pixels)\
Slide Show Max Height (Pixels)= Uploaded Images Max Height (Pixels)\
\
So please answer to second question only.
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.