nhujanen / image
GD Wrapper
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/nhujanen/image
Requires
- php: >=7.1
- ext-gd: *
This package is auto-updated.
Last update: 2025-10-07 19:40:34 UTC
README
GD wrapper
Installing
composer require nhujanen/image
Requirements
PHP 7.1+ ext-gd with JPEG & PNG
Supports
- JPEG
- PNG
- WEBP
- GIF
Provides
- Resizing (contain / cover -modes)
- Cropping (middle focus / free focus)
- Rotating (with cropping)
- Mirroring (X&Y)
- Rect (with X2/Y2 -support)
- Colors
- Drawing
Usage
See test/test.php
Basic usage example:
// Load test.png $image = Wex\Image::load('test.png'); // Resize to 300x200 (contained) $thumb = $image->resize(300, 200); // Save image as JPEG $thumb->saveAs(Wex\Image\JPEG::class, "test_thumb.jpg");