I know this module doesn't work with ImageMagick at this time, but is there any way to force the script to use GD, even if ImageMagick is selected as the toolkit? The problem is I really need to use IM for some other modules, but I would also like to use this module too (which seems to work great when I temporarily switch to GD). Thanks.

Comments

yhager’s picture

I have not tested this, but I think it should work.
Open the module file with a text editor, and look for the function named '_imagefield_crop_verify_gd()'. In that function, remove all the code, except the last 'return TRUE;' statement, so it reads:

function _imagefield_crop_verify_gd() {
  return TRUE;
}

I think this should work as long as you have gd compiled in your PHP, regardless of which toolkit you chose on the image toolkit selection page.

Please post here if it worked or not.
I hope to remove this requirement for Drupal 6.

tj2653’s picture

Thanks yhager! That seems to work for me, using Drupal 5.6.

yhager’s picture

Status: Active » Closed (fixed)

Glad to hear :)