Bug #93679
closedCropping to 0 (zero) pixels height/width breaks page/content editing
0%
Description
It is possible to store an image cropping configuration of 0 (zero) pixels in width or height. For this an editor simply needs to reduce the cropping frame to 0 in width or height. After saving an error shows up:
Width and height of the image must be greater than zero
Unless the crop
field of the affected sys_file_reference
record is cleared/fixed manually in the database, viewing the page in the Page module or editing the affected record in the List module is impossible due to this error.
A few options to fix this:
- Require a minimum of 1x1 Pixel for cropping
- Display error and disable Accept in the Image manipulation wizard
- Handle a width/height of 0 Pixel more gratuitously in
ImageDimension
.
Updated by Mathias Brodala over 3 years ago
- Related to Bug #92014: Move SVG image processing into an own file processor added
Updated by Mathias Brodala over 3 years ago
This is evidently a regression caused by #92014: in TYPO3v9 the same steps will not lead to a broken editing experience. Instead the content element is saved and can be edited just fine, even though the following is in sys_file_reference.crop
:
{"default":{"cropArea":{"height":1,"width":0,"x":0,"y":0},"selectedRatio":"NaN","focusArea":null}}
Updated by Chris Müller almost 2 years ago
- Related to Bug #99943: Limit image cropper minimal size added
Updated by Nikita Hovratov about 1 year ago
- Is duplicate of Bug #93807: Edit of content elements with image (width=0) not possible added
Updated by Nikita Hovratov about 1 year ago
- Status changed from New to Closed
Closing in favor of #93807.