2008-12-15 08:56:18 +00:00
|
|
|
<?php defined('SYSPATH') OR die('No direct access allowed.');
|
|
|
|
|
/**
|
2010-01-06 11:35:01 -08:00
|
|
|
* Image library config
|
2008-12-15 08:56:18 +00:00
|
|
|
*
|
2010-01-06 11:35:01 -08:00
|
|
|
* @package Kohana
|
|
|
|
|
* @author Kohana Team
|
|
|
|
|
* @copyright (c) 2007-2009 Kohana Team
|
|
|
|
|
* @license http://kohanaphp.com/license
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Image driver
|
|
|
|
|
*
|
|
|
|
|
* @default: 'GD'
|
2008-12-15 08:56:18 +00:00
|
|
|
*/
|
|
|
|
|
$config['driver'] = 'GD';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Driver parameters:
|
|
|
|
|
* ImageMagick - set the "directory" parameter to your ImageMagick installation directory
|
|
|
|
|
*/
|
|
|
|
|
$config['params'] = array();
|