Take ImageMagick 7 changes into account (problems with COMPOSITE_ADD, COMPOSITE_MINUS, COMPOSITE_SUBTRACT)

Created on 25 January 2022, about 3 years ago
Updated 23 February 2025, about 1 month ago

Problem/Motivation

With ImageMagick >= 7.0.0, adding a Composite effect will crash the site.

Steps to reproduce

  1. Install Imagick PHP extension with ImageMagick >= 0
  2. Install this module
  3. Create a new Image style and add the Composite effect

Proposed resolution

Functions are constants were removed since ImageMagick 7: https://github.com/Imagick/imagick/issues/529

This module should detect the ImageMagick version and adapt to it.

Remaining tasks

  1. Detect ImageMagick version
  2. Update code dynamically according to the version

User interface changes

None, except some effects would probably be removed.

API changes

None, probably.

Data model changes

None, probably.

🐛 Bug report
Status

Needs work

Version

1.5

Component

Code

Created by

🇫🇷France GuillaumeDuveau Toulouse

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇭🇺Hungary Sweetchuck Budapest

    ImageMagick version string can be different on different platforms.
    versionString = "ImageMagick 7.1.1-43 Q16-HDRI x86_64 22550 https://imagemagick.org";
    In this case we need only the "major" part of the version, but the "-43" is still part of the version string.

      public static function getVersion(): ?string {
        $version = \Imagick::getVersion();
    
        $matches = [];
        preg_match(
          '/^ImageMagick\s+(?P<version>\S+)/ui',
          $version['versionString'],
          $matches,
        );
    
        return $matches['version'] ?? NULL;
      }
    

    Without version checking:

        if (defined('\Imagick::COMPOSITE_ADD')) {
          $composites[\Imagick::COMPOSITE_ADD] = 'Add';
        }
    
        if (defined('\Imagick::COMPOSITE_MINUS')) {
          $composites[\Imagick::COMPOSITE_MINUS] = 'Minus';
        }
    
        if (defined('\Imagick::COMPOSITE_SUBTRACT')) {
          $composites[\Imagick::COMPOSITE_SUBTRACT] = 'Subtract';
        }
    

    Position of the options still not the same as the original.

    Labels are not translatable, but that is another issue.

    Function \version_compare() has third paramater to make it easier to get a boolean result.

  • 🇭🇺Hungary Sweetchuck Budapest

    Function \Drupal\imagick\ImagickConst::composites() is used by
    \Drupal\imagick\Plugin\ImageEffect\CompositeImageEffect::buildConfigurationForm().

    An image effect has to be image_toolkit independent.

    Options 2=>Add, 36=>minus and 52=>Subtract are removed even when the active image_toolkit is GD.

  • 🇭🇺Hungary Sweetchuck Budapest

    Existing image styles – saved with ImageMagick 6.x – can store references to composite options that are not exists in ImageMagick 7.x.

    In function \Drupal\imagick\Plugin\ImageToolkit\Operation\imagick\Composite::process() there is \Imagick::compositeImage() call with the stored value, without checking it if it valid or not.
    I don't know how the \Imagick::compositeImage() will react in that case.

    I think \Drupal\imagick\Plugin\ImageToolkit\Operation\imagick\Composite::validateArguments() should be implemented. Or just transform an unknown value to the closest valid value.

Production build 0.71.5 2024