Show
Ignore:
Timestamp:
01/27/2008 02:50:37 AM (10 months ago)
Author:
Shadowhand
Message:

Updates to Image:

  • Moved sanitize_geometry to Image_Driver
  • Made properties() an abstract method
  • Updated language files with new and missing messages
  • Removed exif_imagetype() usage in favor of getimagesize(), which is more common and provides more information
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/i18n/en_US/image.php

    r1772 r1827  
    33$lang = array 
    44( 
     5        'getimagesize_missing'    => 'The Image library requires the <tt>getimagesize</tt> PHP function, which is not available in your installation.', 
    56        'driver_not_supported'    => 'The requested Image driver, %s, was not found.', 
     7        'unsupported_method'      => 'Your configured driver does not support the %s image transformation.', 
     8        'file_not_found'          => 'The specified image, %s was not found. Please verify that images exist by using <tt>file_exists</tt> before manipulating them.', 
     9        'type_not_allowed'        => 'The specified image, %s, is not an allowed image type.', 
     10 
     11        // ImageMagick specific messages 
     12        'imagemagick' => array 
     13        ( 
     14                'not_found' => 'The ImageMagick directory specified does not contain a required program, %s.', 
     15        ), 
     16 
     17 
     18        // GD specific messages 
     19        'gd' => array 
     20        ( 
     21                'requires_v2' => 'The Image library requires GD2. Please see http://php.net/gd_info for more information.', 
     22        ), 
    623 
    724        // CI's Image_lib stuff below