You are here

function imagecache_file_formats in ImageCache Actions 6.2

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 imagecache_coloractions.module \imagecache_file_formats()
3 calls to imagecache_file_formats()
imagecache_convert_form in coloractions/imagecache_coloractions.module
Implementation of imagecache_hook_form()
imagecache_convert_image in coloractions/imagecache_coloractions.module
Implementation of hook_image()
theme_imagecache_convert in coloractions/imagecache_coloractions.module
Implementation of theme_hook() for imagecache_ui.module

File

coloractions/imagecache_coloractions.module, line 416
Additional actions for imagecache processing.

Code

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