Upscaling support
-
Hi,
We are using a upscaling function that makes sure a thumbnail get upscaled when the image is smaller than the given thumbnail size.
This function gives a conflict with this pugin. Is it possible to merge this functionality with this plugin? It should realy make this plugin complete.
/* * Attempt to add upscaling support to resize function of wordpress (for post thumbnails) */ function image_crop_dimensions($default, $orig_w, $orig_h, $new_w, $new_h, $crop){ if ( !$crop ) return null; // let the wordpress default function handle this $aspect_ratio = $orig_w / $orig_h; $size_ratio = max($new_w / $orig_w, $new_h / $orig_h); $crop_w = round($new_w / $size_ratio); $crop_h = round($new_h / $size_ratio); $s_x = floor( ($orig_w - $crop_w) / 2 ); $s_y = floor( ($orig_h - $crop_h) / 2 ); return array( 0, 0, (int) $s_x, (int) $s_y, (int) $new_w, (int) $new_h, (int) $crop_w, (int) $crop_h ); }
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
- The topic ‘Upscaling support’ is closed to new replies.