It's impossible to have any crop tool together with this module. I tried these:
imagefield_crop - it requires widget type change from Multiupload to Image Crop, so it wont work for sure.
imagecrop/epsacrop - it's extending standard field abilities to display crop link and popup. If Widget type is changet do Image - instead od Multiupload - it works, but when changed to Multiupload again, crop links does not shows up.

Do you concider to make it work with any crop tool? It would be awsome :)

Comments

BrendanP’s picture

Yep, having this issue too which is a deal breaker for me.

havran’s picture

I have tested Manual crop (http://drupal.org/project/manual-crop) with this module. With very simple modification of Manual crop i get this working. Simple and elegant solution.

Find file manualcrop.helpers.inc in manual_crop module directory. Then replace this part

  // List all widgets and the optional settings they support.
  $widgets = array(
    'image_image' => $optional_settings,
    'media_generic' => array('thumblist'),
  );

for this

  // List all widgets and the optional settings they support.
  $widgets = array(
    'image_image' => $optional_settings,
    'image_miw' => $optional_settings,
    'media_generic' => array('thumblist'),
  );

and clear all Drupal caches.

thedavidmeister’s picture

manualcrop now supports multiupload widgets from this module natively in the latest dev

thedavidmeister’s picture

Issue summary: View changes
Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.