Project

General

Profile

Actions

Bug #93138

closed

LocalCropScaleMaskHelper causes TypeError with clickEnlarge

Added by Mario Matzulla over 3 years ago. Updated 7 months ago.

Status:
Resolved
Priority:
Should have
Assignee:
-
Category:
Image Cropping
Target version:
-
Start date:
2020-12-21
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
10
PHP Version:
7.3
Tags:
Complexity:
easy
Is Regression:
Sprint Focus:

Description

TYPO3 Version 10.4.11 after migrating from 8.7.31
I'm getting:
Argument 1 passed to TYPO3\CMS\Core\Imaging\ImageManipulation\Area::__construct() must be of the type float, null given, called in typo3_src-10.4.11/typo3/sysext/core/Classes/Resource/Processing/LocalCropScaleMaskHelper.php on line 209

at TYPO3\CMS\Core\Imaging\ImageManipulation\Area->__construct(null, null, null, null)

$options['crop'] = new Area($cropData->x, $cropData->y, $cropData->width, $cropData->height);

changing to

$options['crop'] = new Area((float)$cropData->x, (float)$cropData->y, (float)$cropData->width, (float)$cropData->height);

solved this issue

Actions #1

Updated by Gerrit Code Review 7 months ago

  • Status changed from New to Under Review

Patch set 1 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/81079

Actions #2

Updated by Gerrit Code Review 7 months ago

Patch set 1 for branch 12.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/81064

Actions #3

Updated by Gerrit Code Review 7 months ago

Patch set 1 for branch 11.5 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/81065

Actions #4

Updated by Benni Mack 7 months ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions

Also available in: Atom PDF