[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
Zen Cart 源代码 bmz_image_handler_conf.php

Zen Cart 源代码 bmz_image_handler_conf.php




下载文件

文件名: bmz_image_handler_conf.php
文件类型: PHP文件
文件大小: 1.37 KiB
MD5: 7b61567789dee6e0fa907caa21f1913b

bmz_image_handler_conf.php - 关闭高亮
  1. <?php
  2. /**
  3.  * bmz_image_handler_conf.php
  4.  * additional configuration entries for image handler
  5.  *
  6.  * @author  Tim Kroeger (original author)
  7.  * @copyright Copyright 2005-2006
  8.  * @license http://www.gnu.org/licenses/gpl.txt GNU General Public License V2.0
  9.  * @version $Id: bmz_image_handler_conf.php,v 2.0 Rev 8 2010-05-31 23:46:5 DerManoMann Exp $
  10.  * Last modified by DerManoMann 2010-05-31 23:46:50
  11.  */
  12.  
  13. $ihConf['noresize_key']         = 'noresize';         //files which contain this string will not be resized
  14. $ihConf['noresize_dirs']        = array('noresize', 'banners'); //images in directories with these names within the images directory will not be resized.
  15. $ihConf['trans_threshold']      = '90%';              //this is where semitransparent pixels blend to transparent when rendering gifs with ImageMagick
  16. $ihConf['im_convert']           = '';                 //if you want to use ImageMagick, you must specify the convert binary here (e.g. '/usr/bin/convert')
  17. $ihConf['gdlib']                = 2;                  //the GDlib version (0, 1 or 2) 2 tries to autodetect
  18. $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
  19. $ihConf['default']['bg']        = 'transparent 255:255:255';
  20. $ihConf['default']['quality']   = 85;