From 40a4dd63f09e96550239c562730ab99e29760bc0 Mon Sep 17 00:00:00 2001 From: rvelices Date: Wed, 2 May 2012 04:29:56 +0000 Subject: multi size: - fix external imagick issues when rotation was required - fix: derivative were generated continuosly until a first save performed in the admin screen - added sharpen param in the new config screen - increased the sharpen range (10% is less than before) git-svn-id: http://piwigo.org/svn/trunk@14649 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/derivative_std_params.inc.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include/derivative_std_params.inc.php') diff --git a/include/derivative_std_params.inc.php b/include/derivative_std_params.inc.php index 45c45c2c6..e12c1eaaa 100644 --- a/include/derivative_std_params.inc.php +++ b/include/derivative_std_params.inc.php @@ -51,6 +51,7 @@ final class ImageStdParams private static $undefined_type_map = array(); private static $watermark; public static $custom = array(); + public static $quality=95; static function get_all_types() { @@ -109,11 +110,13 @@ final class ImageStdParams if (!self::$watermark) self::$watermark = new WatermarkParams(); self::$custom = @$arr['c']; if (!self::$custom) self::$custom = array(); + if (isset($arr['q'])) self::$quality = $arr['q']; } else { self::$watermark = new WatermarkParams(); self::$type_map = self::get_default_sizes(); + self::save(); } self::build_maps(); } @@ -136,6 +139,7 @@ final class ImageStdParams $ser = serialize( array( 'd' => self::$type_map, + 'q' => self::$quality, 'w' => self::$watermark, 'c' => self::$custom, ) ); -- cgit v1.2.3