You are here

function imagecache_file_formats in ImageCache Actions 6

Same name and namespace in other branches
  1. 5.3 imagecache_coloractions.module \imagecache_file_formats()
  2. 5.2 imagecache_coloractions.module \imagecache_file_formats()
  3. 6.2 coloractions/imagecache_coloractions.module \imagecache_file_formats()
3 calls to imagecache_file_formats()
imagecache_convert_form in ./imagecache_coloractions.module
Implementation of imagecache_hook_form()
imagecache_convert_image in ./imagecache_coloractions.module
Implementation of hook_image()
theme_imagecache_convert in ./imagecache_coloractions.module
Implementation of theme_hook() for imagecache_ui.module

File

./imagecache_coloractions.module, line 302
Additional actions for imagecache processing.

Code

function imagecache_file_formats() {
  return array(
    'image/jpeg' => 'jpg',
    'image/gif' => 'gif',
    'image/png' => 'png',
  );
}