Project

General

Profile

Actions

Bug #58705

open

data-type-gettext-file inside FILES renderObj GIFBUILDER

Added by Christian Stern almost 10 years ago. Updated over 6 years ago.

Status:
New
Priority:
Could have
Assignee:
-
Category:
Image Cropping
Target version:
-
Start date:
2014-05-12
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
6.2
PHP Version:
5.5
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

Description

Is it a normal behavior that data-type-gettext-file is not accessible inside the following structure?

uid:46 is a valid image file.

page >
page = PAGE

page.10 = FILES
page.10 {
  files = 46

  renderObj = IMAGE
  renderObj.file = GIFBUILDER
  renderObj.file.XY = 400,400
  renderObj.file.10 = IMAGE
  renderObj.file.10.file {
    import.data = file:current:publicUrl
    width = 400c
    height = 400c
  }
}

Save publicUrl to a register to access it later works:

page.20 = FILES
page.20 {
  files = 46

  renderObj = COA
  renderObj {
    1 = LOAD_REGISTER
    1.publicUrl.cObject = TEXT
    1.publicUrl.cObject.data = file:current:publicUrl

    10 = IMAGE
    10 {
      file = GIFBUILDER
      file {
        XY = 400,400

        10 = IMAGE
        10.file {
          import.data = REGISTER:publicUrl
          width = 400c
          height = 400c
        }
      }
    }
  }
}
Actions #1

Updated by Alexander Opitz over 9 years ago

  • Status changed from New to Needs Feedback

Does following help?

10 = FILES
10 {
    files = 46
    renderObj = IMAGE
    renderObj {
        file.import.data = file:current:publicUrl
        file.height = 400c
        file.width  = 400c
    }
}

Actions #2

Updated by Michiel Roos over 9 years ago

Some times a client wants to apply a mask. For which GIFBUILDER is perfect.

            stdWrap.cObject = FILES
            stdWrap.cObject {
                references {
                    table = tt_news
                    uid.data = GP:tx_ttnews|tt_news
                    fieldName = tx_falttnews_fal_images
                }
                begin = 0
                maxItems = 1
                renderObj = COA
                renderObj {
                    10 = LOAD_REGISTER
                    10.importUrl.data = file:current:publicUrl
                    20 = IMAGE
                    20 {
                        file = GIFBUILDER
                        file {
                            XY = 300,168
                            transparentColor = #000000
                            backColor = #000000

                            20 = IMAGE
                            20.file = GIFBUILDER
                            20.file {
                                XY = 300,168
                                backColor = #ffffff
                                10 = IMAGE
                                10.file {
                                    import.data = register:importUrl
                                    import.listNum = 0
                                    width = 300c
                                    height = 168c
                                    offset = 0,0
                                }
                            }
                            20.mask = fileadmin/site/geloven/images/mask-artikel-listview.png
                        }
                    }
                    30 = RESTORE_REGISTER
                }
            }

Actions #3

Updated by Michiel Roos over 9 years ago

This does NOT work:

            stdWrap.cObject = IMAGE
            stdWrap.cObject {
                file = GIFBUILDER
                file {
                    XY = 300,168
                    transparentColor = #000000
                    backColor = #000000

                    20 = IMAGE
                    20.file = GIFBUILDER
                    20.file {
                        XY = 300,168
                        backColor = #ffffff
                        10 = FILES
                        10 {
                            references {
                                table = tt_news
                                uid.data = GP:tx_ttnews|tt_news
                                fieldName = tx_falttnews_fal_images
                            }

                            begin = 0
                            maxItems = 1
                            renderObj = IMAGE
                            renderObj {
                                file {
                                    import.data = file:current:publicUrl
                                    import.listNum = 0
                                    width = 300c
                                    height = 168c
                                    offset = 0,0
                                }
                            }
                        }
                    }

                    20.mask = fileadmin/site/geloven/images/mask-artikel-listview.png
                }
            }

Actions #4

Updated by Christian Hellmuth about 9 years ago

I can confirm this. file:current:publicUrl is not accessible from within a GIFBUILDER object in TYPO3 CMS 6.2.11.

Actions #5

Updated by Alexander Opitz almost 9 years ago

  • Priority changed from -- undefined -- to Could have

IMHO there was a fix in 6.2.12 or .13.

can you please retest with latest (6.2.14) and report back if there is still an issue?

Actions #6

Updated by Alexander Opitz over 8 years ago

  • Status changed from Needs Feedback to Closed

No feedback within the last 90 days => closing this issue.

If you think that this is the wrong decision or experience this issue again, then please write to the mailing list typo3.teams.bugs with issue number and an explanation or open a new ticket and add a relation to this ticket number.

Actions #7

Updated by Benjamin Robinson over 6 years ago

I can confirm that this issue still exists in TYPO3 CMS 8.7.8.

Actions #8

Updated by Alexander Opitz over 6 years ago

  • Status changed from Closed to Needs Feedback

Please provide the TypoScript which have that issues.

Actions #9

Updated by Benjamin Robinson over 6 years ago

This does not work:

10 < styles.content.get
10{
    renderObj = FILES
    renderObj{
        references.fieldName = assets
        renderObj = COA
        renderObj {
            10 = LOAD_REGISTER
            10.importUrl.data = file:current:publicUrl
            # "Register" wird wegen Bug https://forge.typo3.org/issues/58705 benötigt
            20 = IMAGE
            20{
                file = GIFBUILDER
                file{
                    XY = 100,100
                    10 = IMAGE
                    10.file.import.data = file:current:publicUrl
                    #WORKAROUND: 10.file.import.data = register:importUrl
                    20 = IMAGE
                    20.file = EXT:user_site/Resources/Public/Images/Mask.png
                }
            }
        }
    }
}

With ...

10.file.import.data = register:importUrl

... it works.

Actions #10

Updated by Alexander Opitz over 6 years ago

  • Status changed from Needs Feedback to New

Only as a side node:

file:current:publicUrl is IMHO false here, publicUrl is the Url of the FAL media which the browser should call to get the media, but you want that the image should be processed.

So correct would be

10.file.import.data = file:current:originalUid

or
10.file.import.data = file:current:uid

Depending if current is a FAL object or a FAL reference.
But this is independent of the issue here.

Actions

Also available in: Atom PDF