'checkbox',
'#default_value' => (isset($data['upscale'])) ? $data['upscale'] : 0,
'#title' => t('Allow Upscaling'),
'#description' => t('Let scale make images larger than their original size'),
);
return $form;
}
function theme_imagecache_scale($element) {
$output = theme_imagecache_resize($element) . ', upscale: ';
$output .= ($element['#value']['upscale']) ? t('Yes') : t('No');
return $output;
}
function imagecache_scale_image(&$image, $data) {
// Set impossibly large values if the width and height aren't set.
$data['width'] = $data['width'] ? $data['width'] : 9999999;
$data['height'] = $data['height'] ? $data['height'] : 9999999;
if (!imageapi_image_scale($image, $data['width'], $data['height'], $data['upscale'])) {
watchdog('imagecache', 'imagecache_scale_image failed. image: %image, data: %data.', array('%path' => $image, '%data' => print_r($data, true)), WATCHDOG_ERROR);
return false;
}
return true;
}
/**
* ImageCache Scale and Crop
*/
function imagecache_scale_and_crop_form($data) {
return imagecache_resize_form($data);
}
function theme_imagecache_scale_and_crop($element) {
return theme_imagecache_resize($element);
}
function imagecache_scale_and_crop_image(&$image, $data) {
if (!imageapi_image_scale_and_crop($image, $data['width'], $data['height'])) {
watchdog('imagecache', 'imagecache_scale_and_crop failed. image: %image, data: %data.', array('%path' => $image, '%data' => print_r($data, true)), WATCHDOG_ERROR);
return false;
}
return true;
}
/**
* ImageCache Deprecated Scale.
* This will be removed in imagecache 2.1
*/
function imagecache_deprecated_scale_form($data) {
$helptext = array();
$helptext['inside'] = t('Inside dimensions: Final dimensions will be less than or equal to the entered width and height. Useful for ensuring a maximum height and/or width.');
$helptext['outside'] = t('Outside dimensions: Final dimensions will be greater than or equal to the entered width and height. Ideal for cropping the result to a square.');
$description = '
- '. implode('
- ', $helptext) .'
';
$form['fit'] = array(
'#type' => 'select',
'#title' => t('Scale to fit'),
'#options' => array('inside' => t('Inside dimensions'), 'outside' => t('Outside dimensions')),
'#default_value' => isset($data['fit']) ? $data['fit'] : NULL,
'#weight' => 1,
'#description' => $description,
);
$form['width'] = array(
'#type' => 'textfield',
'#title' => t('Width'),
'#default_value' => isset($data['width']) ? $data['width'] : '',
'#description' => t('Enter a width in pixels or as a percentage. i.e. 500 or 80%.'),
);
$form['height'] = array(
'#type' => 'textfield',
'#title' => t('Height'),
'#default_value' => isset($data['height']) ? $data['height'] : '',
'#description' => t('Enter a height in pixels or as a percentage. i.e. 500 or 80%.'),
);
return $form;
}
function theme_imagecache_deprecated_scale($element) {
$data = $element['#value'];
$options = array('inside' => t('Inside dimensions'), 'outside' => t('Outside dimensions'));
return 'width: '. $data['width'] .', height: '. $data['height'] .', fit: '. $options[$data['fit']];
}
function imagecache_deprecated_scale_image(&$image, $data) {
if ($data['fit'] == 'outside' && $data['width'] && $data['height']) {
$ratio = $image->info['width'] / $image->info['height'];
$new_ratio = $data['width']/$data['height'];
$data['width'] = $ratio > $new_ratio ? 0 : $data['width'];
$data['height'] = $ratio < $new_ratio ? 0 : $data['height'];
}
// Set impossibly large values if the width and height aren't set.
$data['width'] = $data['width'] ? $data['width'] : 9999999;
$data['height'] = $data['height'] ? $data['height'] : 9999999;
if (!imageapi_image_scale($image, $data['width'], $data['height'])) {
watchdog('imagecache', 'imagecache_deprecated_scale failed. image: %image, data: %data.', array('%path' => $image, '%data' => print_r($data, true)), WATCHDOG_ERROR);
return false;
}
return true;
}
/**
* ImageCache Crop
*/
function imagecache_crop_form($data) {
$data += array(
'width' => '',
'height' => '',
'xoffset' => '',
'yoffset' => '',
);
$form['width'] = array(
'#type' => 'textfield',
'#title' => t('Width'),
'#default_value' => $data['width'],
'#description' => t('Enter a width in pixels or as a percentage. i.e. 500 or 80%.'),
);
$form['height'] = array(
'#type' => 'textfield',
'#title' => t('Height'),
'#default_value' => $data['height'],
'#description' => t('Enter a height in pixels or as a percentage. i.e. 500 or 80%.'),
);
$form['xoffset'] = array(
'#type' => 'textfield',
'#title' => t('X offset'),
'#default_value' => $data['xoffset'],
'#description' => t('Enter an offset in pixels or use a keyword: left, center, or right.'),
);
$form['yoffset'] = array(
'#type' => 'textfield',
'#title' => t('Y offset'),
'#default_value' => $data['yoffset'],
'#description' => t('Enter an offset in pixels or use a keyword: top, center, or bottom.'),
);
return $form;
}
function theme_imagecache_crop($element) {
$data = $element['#value'];
return 'width: '. $data['width'] .', height: '. $data['height'] .', xoffset: '. $data['xoffset'] .', yoffset: '. $data['yoffset'];
}
function imagecache_crop_image(&$image, $data) {
if (!imageapi_image_crop($image, $data['xoffset'], $data['yoffset'], $data['width'], $data['height'])) {
watchdog('imagecache', 'imagecache_crop failed. image: %image, data: %data.', array('%path' => $image, '%data' => print_r($data, true)), WATCHDOG_ERROR);
return false;
}
return true;
}
/**
* ImageCache Desaturate
*/
function imagecache_desaturate_form($data) {
return array();
}
function theme_imagecache_desaturate($element) {
return '';
}
function imagecache_desaturate_image(&$image, $data = array()) {
if (!imageapi_image_desaturate($image)) {
watchdog('imagecache', 'imagecache_desaturate failed. image: %image, data: %data.', array('%path' => $image, '%data' => print_r($data, true)), WATCHDOG_ERROR);
return false;
}
return true;
}
/**
* ImageCache Rotate
*/
function imagecache_rotate_form($data) {
$form['degrees'] = array(
'#type' => 'textfield',
'#default_value' => (isset($data['degrees'])) ? $data['degrees'] : 0,
'#title' => t('Rotation angle'),
'#description' => t('The number of degrees the image should be rotated. Positive numbers are clockwise, negative are counter-clockwise.'),
);
$form['random'] = array(
'#type' => 'checkbox',
'#default_value' => (isset($data['random'])) ? $data['random'] : 0,
'#title' => t('Randomize'),
'#description' => t('Randomize the rotation angle for each image. The angle specified above is used as a maximum.'),
);
$form['bgcolor'] = array(
'#type' => 'textfield',
'#default_value' => (isset($data['bgcolor'])) ? $data['bgcolor'] : '#FFFFFF',
'#title' => t('Background color'),
'#description' => t('The background color to use for exposed areas of the image. Use web-style hex colors (#FFFFFF for white, #000000 for black).'),
);
return $form;
}
function theme_imagecache_rotate($element) {
$output = t('degrees:') .' '. $element['#value']['degrees'] .', ';
$output .= t('randomize:') .' '. (($element['#value']['random']) ? t('Yes') : t('No')) .', ';
$output .= t('background:') .' '. $element['#value']['bgcolor'];
return $output;
}
function imagecache_rotate_image(&$image, $data) {
// Set sane default values.
$data['degrees'] = $data['degrees'] ? $data['degrees'] : 0;
$data['random'] = $data['random'] ? $data['random'] : false;
$data['bgcolor'] = $data['bgcolor'] ? $data['bgcolor'] : '#FFFFFF';
// Manipulate the if we need to randomize, and convert to proper colors.
$data['bgcolor'] = '0x'. str_replace('#', '', $data['bgcolor']);
if (!empty($data['random'])) {
$degrees = abs((float)$data['degrees']);
$data['degrees'] = rand(-1 * $degrees, $degrees);
}
if (!imageapi_image_rotate($image, $data['degrees'], $data['bgcolor'])) {
watchdog('imagecache', 'imagecache_rotate_image failed. image: %image, data: %data.', array('%path' => $image, '%data' => print_r($data, true)), WATCHDOG_ERROR);
return false;
}
return true;
}
/**
* ImageCache Sharpen
*/
function imagecache_sharpen_form($data) {
$form['info'] = array(
'#value' => t('NOTE: The sigma parameter below is currently only used when the Imagemagick toolkit is active.'),
);
$form['radius'] = array(
'#type' => 'textfield',
'#default_value' => (isset($data['radius'])) ? $data['radius'] : '0.5' ,
'#title' => t('Radius'),
'#description' => t('The radius of the gaussian, in pixels, not counting the center pixel. If you\'re using Imagemagick, you can set this to 0 to let Imagemagick select a suitable radius. Typically 0.5 to 1 for screen resolutions. (default 0.5)'),
);
$form['sigma'] = array(
'#type' => 'textfield',
'#default_value' => (isset($data['sigma'])) ? $data['sigma'] : '0.5' ,
'#title' => t('Sigma'),
'#description' => t('The standard deviation of the gaussian, in pixels. General rule of thumb: if radius < 1 then sigma = radius, else sigma = sqrt(radius). (default 0.5)'),
);
$form['amount'] = array(
'#type' => 'textfield',
'#default_value' => (isset($data['amount'])) ? $data['amount'] : '100' ,
'#title' => t('Amount'),
'#description' => t('The percentage of the difference between the original and the blur image that is added back into the original. Typically 50 to 200. (default 100).'),
);
$form['threshold'] = array(
'#type' => 'textfield',
'#default_value' => (isset($data['threshold'])) ? $data['threshold'] : '0.05' ,
'#title' => t('Threshold'),
'#description' => t('The threshold, as a fraction of max RGB levels, needed to apply the difference amount. Typically 0 to 0.2. (default 0.05).'),
);
return $form;
}
function theme_imagecache_sharpen($element) {
$output = t('radius:') .' '. $element['#value']['radius'] .', ';
$output .= t('sigma:') .' '. $element['#value']['sigma'] .', ';
$output .= t('amount:') .' '. $element['#value']['amount'] .', ';
$output .= t('threshold:') .' '. $element['#value']['threshold'] ;
return $output;
}
function imagecache_sharpen_image(&$image, $data) {
// Set sane default values.
$data['radius'] = $data['radius'] ? $data['radius'] : "0.5";
$data['sigma'] = $data['sigma'] ? $data['sigma'] : "0.5";
$data['amount'] = $data['amount'] ? $data['amount'] : "100";
$data['threshold'] = $data['threshold'] ? $data['threshold'] : "0.05";
if (!imageapi_image_sharpen($image, $data['radius'], $data['sigma'], $data['amount'], $data['threshold'])) {
watchdog('imagecache', 'imagecache_sharpen_image failed. image: %image, data: %data.', array('%path' => $image, '%data' => print_r($data, true)), WATCHDOG_ERROR);
return false;
}
return true;
}