Bug #65842
closedCropping Images in GIFBUILDER is broken since TYPO3 CMS 6.2.10
100%
Description
Instead of getting a scaled and then cropped version of the image I seem to get a crop with the given dimensions starting at the top left corner of the original image.
The following snippet worked in TYPO3 CMS 6.2.9 and breaks in 6.2.10 and 6.2.11:
10 = IMAGE 10 { file = GIFBUILDER file { XY = 700, 344 format = jpg 10 = IMAGE 10 { file.import = uploads/tx_templavoila/ file.import.current = 1 file.import.listNum = 0 file.width = 700 file.height = 344c } } }
Downgrading to TYPO3 6.2.9 gives the expected result, the image is being scaled to fit around the given box and then cropped to the required size.
Updated by Torben Hansen over 9 years ago
I tried to reproduce the problem but with no success.
On a TYPO3 6.2.9 site, I created a TemplaVoila FCE with a single image and applied the TypoScript code you attached. The resulting image was cropped as expected
Then I switched the core to TYPO3 6.2.10, where the GIFBUILDER problem from #65378 appeared.
Finally I switched the core to TYPO3 6.2.11 and the resulting image is the same as for the TYPO3 6.2.9 site.
Does the problem still appear if you remove temporary files in typo3temp/GB, typo3temp/_processed_ and fileadmin/_processed_ and then let TYPO3 6.2.11 recreate the image?
Updated by Morton Jonuschat over 9 years ago
The problem is persistent. I tried your steps using the Install-Tool before reporting the bug and it doesn't go away when I perform a manual cleanup using a `rm -rf typo3temp/ fileadmin/_processed_` and clear all cache_tables manually using a TRUNCATE SQL statement.
Switching from 6.2.9 directly to 6.2.11 doesn't make any (noticable) difference as well, the images are unscaled/cropped then as well, so I don't think it's leftover files rendered by 6.2.10.
Updated by Frans Saris over 9 years ago
- Status changed from New to Needs Feedback
Is the problem still there even after truncating sys_file_processedfile?
gr. Frans
Updated by Martin Kokes over 9 years ago
I can confirm same problems with heavy cropping/resizing in my fluid templates (<f:image src="..." width="128c" height="96c" ... multiple sizes/pictures on same page) too, 6.2.12. Page (whole gallery) isn't cached at all, this leads to random not-resizing of random images with every (or not every) page reload.
Downgrading to 6.2.9 helps.
Updated by Morton Jonuschat over 9 years ago
I can confirm it's still happening on 6.2.12 as well. Seen it using TypoScript and Extbase as well.
Updated by Stephan Großberndt over 9 years ago
- Subject changed from Cropping Images in GIFBUILD is broken in TYPO3 CMS 6.2.10/6.2.11 to Cropping Images in GIFBUILDER is broken since TYPO3 CMS 6.2.10
Updated by Morton Jonuschat over 9 years ago
A few more details for an incident where the images were not scaling on 6.2.12 (but on 6.2.9):
Extension that's using the following TCA for an image field in a record:
'image' => array( 'exclude' => 0, 'label' => 'LLL:EXT:foo/Resources/Private/Language/locallang_db.xml:tx_foo_domain_model_bar.image', 'config' => array( 'type' => 'group', 'internal_type' => 'file_reference', 'uploadfolder' => 'fileadmin/user_upload/foo', 'allowed' => $GLOBALS['TYPO3_CONF_VARS']['GFX']['imagefile_ext'], 'disallowed' => '', 'show_thumbs' => 1, 'readOnly' => 1, 'size' => 1, ) , ) ,
Two calls to the Fluid Image ViewHelper in the Template:
- {f:image(src: bar.image, alt: bar.title, width: '355m', height: '400m')}
- {f:image(src: bar.image, alt: bar.title, width: '750m', height: '564m')}
Expected result: Two scaled images with the given dimensions, stored in fileadmin/_processed/
Actual result: Two unscaled images directly referenced in the original folder, completely unscaled.
Updated by Christian Kuhn over 9 years ago
- Sprint Focus set to Stabilization Sprint
Updated by Markus Klein over 9 years ago
- Status changed from Needs Feedback to Accepted
- Target version set to next-patchlevel
Updated by Christian Kuhn over 9 years ago
- Target version changed from next-patchlevel to 6.2.13
Updated by Morton Jonuschat over 9 years ago
Next installation exhibiting this problem:
TYPO3 6.2.12
PHP 5.5.10
GraphicsMagick 1.3.12
Happens in a CE (Type Image). Original file has been migrated to fileadmin/_migrated/pics and is 855x402px large. CE is set to scale the Image to Width 200, Height 0.
Image is shown in the Frontend with original path and size. There is a (presumably broken) entry showing up in sys_file_processedfile referencing the right file in table sys_file.
The serialized config matches the parameters but the fields identifier & name are empty, width & height are recorded as 0
Fix in this case is removing the record from sys_file_processedfile. But it seems to happen a lot, truncating the table it only takes a couple of seconds to have more than 50 more records like this again.
Update:
Switching to ImageMagick makes no difference
Updated by Frans Saris over 9 years ago
For images that didn't need any processing a record is created with: identifier & name = empty, width & height = 0
So that is only wrong if you original images is bigger than the info in the configuration field.
gr. Frans
Updated by Morton Jonuschat over 9 years ago
Ok, I'd need to check that for each entry (or build an SQL query), but in the reported case that's absolutely the case. Original 855x402 (sys_file_metadata agrees), Target: 200xSomething, ProcessedFile: identifier & name = empty, width & height = 0.
Config stored in the entry in sys_file_processedfile:
a:10:{s:5:"width";s:3:"200";s:6:"height";N;s:13:"fileExtension";N;s:8:"maxWidth";i:720;s:9:"maxHeight";i:0;s:8:"minWidth";i:0;s:9:"minHeight";i:0;s:7:"noScale";N;s:20:"additionalParameters";N;s:5:"frame";i:0;}
Updated by Frans Saris over 9 years ago
No need to check every entry :) I believe that there is an issue. But just wanted to point out that is isn't always wrong when the values are empty.
Would be great if you find a way to reproduce the issue. I encountered is my self too, but everytime I tried to find the source I couldn't reproduce the issue.
gr. Frans
Updated by Morton Jonuschat over 9 years ago
Ok, I think I know what happens, but I'm not yet sure how to reproduce. Going through the call chain:
FileProcessingService passes processing to LocalImageProcessor->processTask() LocalImageProcessor->processTask() uses LocalCropScaleMaskHelper->process() LocalCropScaleMaskHelper->process() uses GrapicalFunctions->imageMagickConvert() GrapicalFunctions->imageMagickConvert() uses GrapicalFunctions::imageMagickExec()
Given the situation that - due to whatever reason (Race condition, Resource Contention...). - no processed file gets written by GrapicalFunctions::imageMagickExec()
The missing output file results in a NULL being returned by GrapicalFunctions->imageMagickConvert() and passed up the call chain by LocalCropScaleMaskHelper->process()
LocalImageProcessor->processTask() sees the NULL and takes it as a hint that the original file should be used (setUsesOriginalFile())
The FileProcessingService takes the (unscaled) ProcessedFile and (mistakenly) add's it to the database where it's used from now on.
Updated by Morton Jonuschat over 9 years ago
For the last 12 hours I logged every call to gm executed by imageMagickExec(), including the exitcode and the output to stdout on a busy installation (after clearing sys_file_processedfile). From ~14.000 calls not a single execution of graphicsmagick exited with an error code (i validated that gm returns an error code that gets detected on an error), yet I had at least two occurrences of this „phenomenon“ within the first 1000 entries in sys_file_processedfile.
The wrong DB entries also happens on 6.2.9 by the way, but the frontend rendering isn't impacted.
Updated by Morton Jonuschat over 9 years ago
I finally managed to track the bug down. To trigger it multiple things are needed.
Conditions to trigger the bug¶
- $TYPO3_CONF_VARS['GFX']['enable_typo3temp_db_tracking'] must be enabled
- The same source image needs to be rendered with different processing configurations that result in the same output dimensions, for example:
Configuration 1: width = 1400m / height = 1400m / maxWidth = 0 / maxHeight = 0 / minWidth = 0 / minHeight = 0
Configuration 2: width = 0 / height = 0 / maxWidth = 1400 / maxHeight = 0 / minWidth = 0 / minHeight = 0 - Scaling with the second configurations needs to happen within 30seconds of first scaling
Analysis¶
Given the preconditions from above the following happens within imageMagickConvert()
Configuration 1¶
- getImageScale() is called and determines the same output dimensions for both configurations
- The command gets assembled for the scaling
- Based on the same command and shortMD5() the same filename for the target file gets created
- file_exists_typo3temp_file() is called and allows the call to imageMagickExec() (no tempfile, no entry in cache_typo3temp_log)
- The check for the output file succeeds and a valid result array gets returned to LocalImageProcessor->processTask()
- The output file gets moved to fileadmin/_processed/ and a record is added to sys_file_processedfile
Configuration 2¶
- getImageScale() is called and determines the same output dimensions for both configurations
- The command gets assembled for the scaling
- Based on the same command as in configuration 1 the same filename for the target file gets created
- file_exists_typo3temp_file() is called and prohibits the call to imageMagickExec() as there is an entry in cache_typo3temp_log that is less than 30 seconds old
- The check for the output file fails and NULL gets returned to LocalImageProcessor->processTask()
- This is misinterpreted by LocalImageProcessor as a hint to use the original image
- due to the different processing configuration and associated checksum a new record is added to sys_file_processedfile (using the original unscaled file)
Regression¶
This problem has been in existance for much longer than the originally assumed TYPO3 CMS 6.2.10, it started when the files got moved from typo3temp/ to fileadmin/_processed_/
The change in 6.2.10+ to use the processed file information in GIFBUILDER made this visible.
Before the bug resulted in a „use original file“ entry in sys_file_processedfile but that information didn't get used on subsequent calls to Gifbuilder.
Since file_exists_typo3temp_file() sets the page to not cached when there is already a rendering in progress this endedup „fixing“ (or working around) the display bug when the page got rendered again 30+ seconds later.
Now the page is still set to not cached for 30 seconds, but the processed file information gets used on the next rendering and we end up with an unscaled image in the frontend. And as long as the processing configuration doesn't change the „wrong“ image gets output even after a cache clear.
Workaround¶
Disable $TYPO3_CONF_VARS['GFX']['enable_typo3temp_db_tracking'], the image get's rendered twice (once for each configuration) and everything is fine
Solution¶
Use more/all information from the processingconfiguration to generate the temporary output filename, avoiding the name collision in file_exists_typo3temp_file()
Updated by Frans Saris over 9 years ago
Tnx for finding the cause!
Let's see if we can change the temp name part to get this fixed
Updated by Gerrit Code Review over 9 years ago
- Status changed from Accepted to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39372
Updated by Gerrit Code Review over 9 years ago
Patch set 1 for branch TYPO3_6-2 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39373
Updated by Gerrit Code Review over 9 years ago
Patch set 2 for branch TYPO3_6-2 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39373
Updated by Gerrit Code Review over 9 years ago
Patch set 3 for branch TYPO3_6-2 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/39373
Updated by Morton Jonuschat over 9 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset c5b7a0d92d66ee670d53f976511e44540682195e.
Updated by Riccardo De Contardi about 7 years ago
- Status changed from Resolved to Closed