thomaskieslich / TYPO3.tkcropthumbs

TYPO3 Extension
1 stars 1 forks source link

Suggestion: Disable crop with typoscript #10

Open RobH opened 8 years ago

RobH commented 8 years ago

May I suggest a small addition? I wanted to use the cropped image as a Thumbnail and show the full Image in a lightbox. The lightbox image is generated with a img_resource ts content object (with file.import.current = 1). if you change CropScaleHook.php line 78 to:

$serviceObject = NULL;
if (!$cropEnabled || (isset($fileArray['doNotCrop']) && $fileArray['doNotCrop'])) {
    return $imageResource;
} else {

than I can disable the cropping with file.doNotCrop = 1 in my typoscript.

Thank you.