Problem/Motivation

On some environemnt watermark effect from image_effects module does not work. This might need more investigation, but it might be environment specific.

Steps to reproduce

Proposed resolution

Add GD based information overlay, without using image_effects.

Remaining tasks

Add config interface to chosee between which tool to use for watermark.

User interface changes

API changes

Data model changes

Comments

dstorozhuk created an issue.

warwickshaw’s picture

Edit
src/Entity/ImageStyle.php

Add the missing getName() method.

  /**
   * {@inheritdoc}
   */
  public function getName() {
    return $this->get('name');
  }
dstorozhuk’s picture

@warwickshaw have you tried with fresh Drupla? I think this method can come from override from another class. For example imageapi_optimize also override the same class and expect it own method. It is good to know with which particular modules debugger is conflicting so we can fix that.
As an option need to think if it is possible to add magic methods for missing methods.