bartdecorte/imagick-svg

Render SVGs using Imagick

1.2.1 2022-03-19 12:08 UTC

This package is auto-updated.

Last update: 2024-09-19 19:58:18 UTC


README

Latest Version on Packagist Total Downloads run-tests License: MIT

This package parses SVG files and executes those operations on an ImagickDraw instance.

Installation

composer require bartdecorte/imagick-svg

Supported SVG features

This package does not support the full SVG standard (yet). However, through adapting SVG files before feeding them in, most SVGs should be rendered correctly.

Some pointers:

  • Convert internal CSS & inline styles to presentation attributes
  • Expand all elements (including strokes)

I'm looking to extend support in the near feature, feel free to open issues to request features, or better still, make a pull request.

Elements

  • rect
  • circle
  • ellipse
  • polygon
  • path
  • g

Attributes

  • transform
  • fill

Internal CSS & inline style

Currently unsupported, use presentation attributes instead

Usage

<?php
require __DIR__ . '/vendor/autoload.php';

use BartDecorte\ImagickSvg\Svg;

// local path or URL
$svg = new Svg(__DIR__ . '/esign-logo.svg');
$draw = new ImagickDraw();

$width = 1000;
$height = $width * ($svg->height() / $svg->width());
$draw->scale($width / $svg->width(), $height / $svg->height());
$draw->setStrokeAntialias(true);
$draw->setTextAntialias(true);

$draw = $svg->draw($draw);

$imagick = new Imagick();
$imagick->newImage($width, $height, '#00000000', 'png');
$imagick->drawImage($draw);

@ob_clean();
ob_start();
header('Content-Type: image/png');
print $imagick->getImageBlob();
header('Content-Length: '. ob_get_length());
ob_end_flush();

License

The MIT License (MIT). Please see License File for more information.