You are here

function coloractions_file_formats in ImageCache Actions 8

Same name and namespace in other branches
  1. 7 coloractions/imagecache_coloractions.module \coloractions_file_formats()

Mini mime-type list

image_type_to_extension and image_type_to_mime_type?

3 calls to coloractions_file_formats()
coloractions_convert_effect in coloractions/imagecache_coloractions.module
Image effect callback for the convert image format effect.
coloractions_convert_form in coloractions/imagecache_coloractions.module
Image effect form callback for the convert image format effect.
theme_coloractions_convert_summary in coloractions/imagecache_coloractions.module
Implements theme_hook() for the convert image format effect summary.

File

coloractions/imagecache_coloractions.module, line 702

Code

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