diff options
author | patdenice <patdenice@piwigo.org> | 2011-04-27 17:03:25 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2011-04-27 17:03:25 +0000 |
commit | d95ddb7c6146157418f7735995a2b43ef3d2c8fb (patch) | |
tree | 1ed4715f98e323345393602290d4a679efe295b3 /include/config_default.inc.php | |
parent | c3a0ff6b886463cebd3959bae07dd87726bff24c (diff) |
feature:2284
Create a class to manipulate images.
git-svn-id: http://piwigo.org/svn/trunk@10641 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/config_default.inc.php')
-rw-r--r-- | include/config_default.inc.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php index b5095e63f..94eb05b01 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -321,6 +321,15 @@ $conf['insensitive_case_logon'] = false; // 'filename' $conf['uniqueness_mode'] = 'md5sum'; +// Library used for image resizing. Value could be 'auto', 'imagick', +// 'ext_imagick or 'gd'. If value is 'auto', library will be choosen in this +// order. If choosen library is not available, another one will be picked up. +$conf['image_library'] = 'auto'; + +// If library used is external installation of ImageMagick ('ext_imagick'), +// you can define imagemagick directory. +$conf['ext_imagick_dir'] = ''; + // +-----------------------------------------------------------------------+ // | metadata | // +-----------------------------------------------------------------------+ |