Support imagemagic to strip the exif information

Created on 26 March 2025, 11 days ago

Problem/Motivation

From the comment https://www.drupal.org/project/exif_orientation/issues/2895434#comment-1... 🐛 The module doesn't work with Imagick toolkit Active
We see that Imagick tool support strip exif.

$img = new Imagick($path);
$img->stripImage();
$img->writeImage($path);
$image->save();

Proposed resolution

Use image magic if exists to strip exif data to avoid override bitmap on image and see if there are no changes on the resolution.

Example based on MR https://git.drupalcode.org/project/exif_orientation/-/merge_requests/15/...


      $image = $this->imageFactory->get($file->getFileUri());
      if ($this->moduleHandler->moduleExists('image_effects')
        && $image->getToolkit()->getPluginId() == 'imagemagick') {
        $toolkit = $image->getToolkit();
        if ($toolkit->apply('strip')) {
          $image->save();
        }
      }
Feature request
Status

Active

Version

1.0

Component

Code

Created by

🇪🇸Spain eduardo morales alberti Spain, 🇪🇺

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

Merge Requests

Comments & Activities

Production build 0.71.5 2024