PHPackages                             pai-cthulhu/feuerimageeditor - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Image &amp; Media](/categories/media)
4. /
5. pai-cthulhu/feuerimageeditor

ActiveLibrary[Image &amp; Media](/categories/media)

pai-cthulhu/feuerimageeditor
============================

Feuer Image Editor is a PHP image handling and manipulation library, made to fill the gaps between Imagick and GD, with focus on greater text handling (like text boxes, which is absent on similar libraries).

v0.6.0(2y ago)1157MITPHPPHP &gt;=7.0

Since Jun 11Pushed 2y agoCompare

[ Source](https://github.com/PaiCthulhu/feuerImageEditor)[ Packagist](https://packagist.org/packages/pai-cthulhu/feuerimageeditor)[ Docs](https://github.com/PaiCthulhu/FeuerImageEditor)[ RSS](/packages/pai-cthulhu-feuerimageeditor/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (3)Versions (9)Used By (0)

Feuer Image Editor
==================

[](#feuer-image-editor)

[![Latest Version on Packagist](https://camo.githubusercontent.com/a9db057683990e1b67729b53e027ac1c827eb1be2c1743ffbf7774d331ba6810/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7061692d637468756c68752f6665756572696d616765656469746f722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/pai-cthulhu/feuerimageeditor)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/86138db8079af6549f8461ee63e659aa5de98a779f80d166955360080eab0828/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f506169437468756c68752f4665756572496d616765456469746f722f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/PaiCthulhu/FeuerImageEditor)[![Coverage Status](https://camo.githubusercontent.com/a0b499cd9c02288844edb9a6ac704cd09012e8fcfe3e877bf9ac27c35afc01c9/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f506169437468756c68752f4665756572496d616765456469746f722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/PaiCthulhu/FeuerImageEditor/code-structure)[![Quality Score](https://camo.githubusercontent.com/fa933f416747fd5d37e1fff7d056e9e6d51131d09d6fa6b1f5f7f70842ffcef6/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f506169437468756c68752f4665756572496d616765456469746f722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/PaiCthulhu/FeuerImageEditor)[![Total Downloads](https://camo.githubusercontent.com/0ca5cb0dba460076976945652f44547a5a1ab62e3fe218cfb0c4362741b613d7/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7061692d637468756c68752f6665756572696d616765656469746f722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/pai-cthulhu/feuerimageeditor)

Feuer Image Editor is a PHP image handling and manipulation library, made to fill the gaps between Imagick and GD, with focus on greater text handling (like text boxes, which is absent on similar libraries)

Install
-------

[](#install)

Via Composer

```
$ composer require pai-cthulhu/feuerimageeditor
```

Usage
-----

[](#usage)

### Simple thumbnail example

[](#simple-thumbnail-example)

```
$img = Image::open('/path/to/file.jpg');
$img->thumb('/path/to/thumb.jpg');
```

### Textbox

[](#textbox)

```
$img = Image::open('/path/to/file.jpg');

$tb = new Textbox();
$tb->setPos(0, 120)
    ->setSize(400, 150)
    ->setBGColor('#f28d1a')
    ->setFont('/path/to/font.ttf', 32)
    ->setColor('#ffffff')
    ->setText('Hello World!')
    ->setAlignment(Align::CENTER, Align::MIDDLE);
$img->addLayer($tb);

$img->save('/path/to/save/file.jpg');
```

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) and [CODE\_OF\_CONDUCT](CODE_OF_CONDUCT.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [William J. Venancio](https://github.com/PaiCthulhu)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~243 days

Recently: every ~399 days

Total

8

Last Release

823d ago

PHP version history (2 changes)v0.4.6PHP ~7.0

v0.6.0PHP &gt;=7.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/bd14c1f1f2fa52efbddfcf6246457036a34afb0ee2d59ec9f492f46501c94e97?d=identicon)[Pai Cthulhu](/maintainers/Pai%20Cthulhu)

---

Top Contributors

[![PaiCthulhu](https://avatars.githubusercontent.com/u/36040942?v=4)](https://github.com/PaiCthulhu "PaiCthulhu (40 commits)")

---

Tags

thumbnailimagegdimagick

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/pai-cthulhu-feuerimageeditor/health.svg)

```
[![Health](https://phpackages.com/badges/pai-cthulhu-feuerimageeditor/health.svg)](https://phpackages.com/packages/pai-cthulhu-feuerimageeditor)
```

###  Alternatives

[intervention/image

PHP Image Processing

14.3k194.3M2.2k](/packages/intervention-image)[intervention/image-laravel

Laravel Integration of Intervention Image

1496.5M102](/packages/intervention-image-laravel)[folklore/image

Image manipulation library for Laravel 5 based on Imagine and inspired by Croppa for easy url based manipulation

270248.2k5](/packages/folklore-image)[pavlista/nette-palette

Palette support for Nette Framework and Latte template engine

1657.4k](/packages/pavlista-nette-palette)[intervention/image-symfony

Symfony Integration of Intervention Image

1066.8k](/packages/intervention-image-symfony)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
