bmz_image_handler_conf.php

来自「Zen Cart是真正的电子商务艺术」· PHP 代码 · 共 19 行

PHP
19
字号
<?php/** * bmz_image_handler_conf.php * additional configuration entries for image handler * * @author  Tim Kroeger <tim@breakmyzencart.com> * @copyright Copyright 2005-2006 breakmyzencart.com * @license http://www.gnu.org/licenses/gpl.txt GNU General Public License V2.0 * @version $Id: bmz_image_handler_conf.php,v 1.6 2006/04/17 18:22:45 tim Exp $ */$ihConf['noresize_key']         = 'noresize';         //files which contain this string will not be resized$ihConf['noresize_dirs']        = array('noresize', 'banners'); //images in directories with these names within the images directory will not be resized.$ihConf['trans_threshold']      = '90%';              //this is where semitransparent pixels blend to transparent when rendering gifs with ImageMagick$ihConf['im_convert']           = '';                 //if you want to use ImageMagick, you must specify the convert binary here (e.g. '/usr/bin/convert')$ihConf['gdlib']                = 2;                  //the GDlib version (0, 1 or 2) 2 tries to autodetect$ihConf['allow_mixed_case_ext'] = false;              //allow files with mixed case extensions like 'Jpeg'. This costs some time for every displayed image. It's better to just use lower case extensions$ihConf['default']['bg']        = 'transparent 255:255:255';$ihConf['default']['quality']   = 85;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?