Fixed GD thumb quality using wrong variable
This commit is contained in:
parent
9cab1c1a85
commit
1adc2dec00
@ -361,12 +361,12 @@ final class Photo {
|
|||||||
|
|
||||||
// Create thumb
|
// Create thumb
|
||||||
fastImageCopyResampled($thumb, $sourceImg, 0, 0, $startWidth, $startHeight, $newWidth, $newHeight, $newSize, $newSize);
|
fastImageCopyResampled($thumb, $sourceImg, 0, 0, $startWidth, $startHeight, $newWidth, $newHeight, $newSize, $newSize);
|
||||||
imagejpeg($thumb, $newUrl, $thumbQuality);
|
imagejpeg($thumb, $newUrl, $quality);
|
||||||
imagedestroy($thumb);
|
imagedestroy($thumb);
|
||||||
|
|
||||||
// Create retina thumb
|
// Create retina thumb
|
||||||
fastImageCopyResampled($thumb2x, $sourceImg, 0, 0, $startWidth, $startHeight, $newWidth*2, $newHeight*2, $newSize, $newSize);
|
fastImageCopyResampled($thumb2x, $sourceImg, 0, 0, $startWidth, $startHeight, $newWidth*2, $newHeight*2, $newSize, $newSize);
|
||||||
imagejpeg($thumb2x, $newUrl2x, $thumbQuality);
|
imagejpeg($thumb2x, $newUrl2x, $quality);
|
||||||
imagedestroy($thumb2x);
|
imagedestroy($thumb2x);
|
||||||
|
|
||||||
// Free memory
|
// Free memory
|
||||||
|
Loading…
Reference in New Issue
Block a user