? gd_rotate_new_size.patch ? imageapi-373631-4-2.patch ? imageapi-rotate_90_270.patch Index: imageapi_gd.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/imageapi/imageapi_gd.module,v retrieving revision 1.13.2.4 diff -u -p -r1.13.2.4 imageapi_gd.module --- imageapi_gd.module 10 Mar 2009 06:16:26 -0000 1.13.2.4 +++ imageapi_gd.module 18 Mar 2009 08:01:08 -0000 @@ -213,8 +213,8 @@ function imageapi_gd_image_resize(&$imag function imageapi_gd_image_sharpen(&$image, $radius, $sigma, $amount, $threshold) { $threshold = round($threshold * 255); - $image->res = imageapi_gd_unsharp_mask($image->res, $radius, $sigma, $amount, $threshold); - return true; + $image->resource = imageapi_gd_unsharp_mask($image->resource, $radius, $sigma, $amount, $threshold); + return TRUE; } /**