Medd
Medd

Reputation: 143

TYPO3 and GraphicsMagick not working properly

I have a Problem with the Graphicsmagick and TYPO3.

This is my current configuration:

If I do the tests I get several errors at the following:

  1. READ PNG, PDF, AI

  2. WRITING PNG

  3. SCALING AND COMBINING IS NOT WORKING AT ALL

I hope somebody can help me!

Upvotes: 0

Views: 1092

Answers (1)

Andreas Wolf
Andreas Wolf

Reputation: 1065

There are several problems with your configuration:

  1. It seems you are using two different libraries: GM 1.3.20 and IM 6.7.2-7, as your GM is not capable of doing LZW compression.

    Set the "version5/gm flag" to "im6" to make sure you only use one and try again; in general, mixing IM/GM might be problematic.

  2. Reading PDF and AI requires GhostScript to be installed. If you don’t see any images there, this might be the reason.

  3. It might be necessary to set the Freetype DPI to 96, at least it is required on all my installations on recent PHP versions.

  4. You should set the "IM5 effects" to "1" if you need any of the advanced text image generation features; otherwise, generating text will not work or the generation results will look ugly, depending on what you’re trying to achieve.

Upvotes: 1

Related Questions