marko/media-imagick

ImageMagick image processing driver for Marko Framework

Maintainers

Package info

github.com/marko-php/marko-media-imagick

Type:marko-module

pkg:composer/marko/media-imagick

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

0.0.1 2026-03-25 17:53 UTC

This package is auto-updated.

Last update: 2026-03-25 21:07:28 UTC


README

ImageMagick image processing for marko/media — resize, crop, and convert images with superior quality, AVIF support, and ICC color profile handling.

Installation

composer require marko/media-imagick

Requirement: The Imagick PHP extension must be installed (pecl install imagick).

Quick Example

use Marko\MediaImagick\Driver\ImagickImageProcessor;

$processor = new ImagickImageProcessor();

$outputPath = $processor->resize(
    imagePath: '/path/to/image.jpg',
    width: 800,
    height: 600,
);

Documentation

Full usage, API reference, and examples: marko/media-imagick