HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.30
System: Linux iZj6c1151k3ad370bosnmsZ 3.10.0-1160.76.1.el7.x86_64 #1 SMP Wed Aug 10 16:21:17 UTC 2022 x86_64
User: root (0)
PHP: 7.4.30
Disabled: NONE
Upload Files
File: //usr/local/src/gmagick-2.0.5RC1/README.md
Gmagick
=======
Copyright (c) 2009 Vito Chin, Mikko Koppanen

PHP extension that wraps the GraphicsMagick library. Access GraphicsMagick's capabilities via PHP.

[![Build Status](https://travis-ci.org/vitoc/gmagick.svg?branch=master)](https://travis-ci.org/vitoc/gmagick)

Getting Started
===============

1. Install GraphicsMagick

Download the stable from from http://www.graphicsmagick.org and build with --enable-shared option. If you do not need to work with perl, --without-perl.

Remember to run ldconfig after building GraphicsMagick to update shared library cache for immediate use.

2. Install Gmagick

Typically, as with most extensions:

    $ phpize
    $ ./configure
    $ make
    $ make install

Functions not supported
=======================

The functions listed below are deliberately not part of the Gmagick extension. Other functions that are present in the GraphicsMagick library but not exposed by Gmagick are likely to be added in the future.

MagickAnimateImages - only useful with X terminals.
MagickDisplayImage - only useful with X terminals.
MagickDisplayImages - only useful with X terminals.
MagickGetConfigureInfo - not implemented in GraphicsMagick
MagickFxImage - not implemented in GraphicsMagick
MagickFxImageChannel - not implemented in GraphicsMagick
MagickGetImageSize - just get the image a string and do strlen
MagickPreviewImages - not implemented in GraphicsMagick
MagickSetPassphrase - use real encryption if you need to protect data
MagickTintImage - not implemented in GraphicsMagick
MagickTransformImage - this is a 'helper' function which duplicates other easier to use functions.