Download the PHP package hbarcelos/gd-wrapper without Composer
On this page you can find all versions of the php package hbarcelos/gd-wrapper. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download hbarcelos/gd-wrapper
More information about hbarcelos/gd-wrapper
Files in hbarcelos/gd-wrapper
Package gd-wrapper
Short Description Object oriented wrapper for PHP's GD2 library
License MIT
Informations about the package gd-wrapper
GdWrapper
GdWrapper is an object oriented wrapper for PHP's GD2 library.
Installation
Using composer
Add the following code to your composer.json
:
And then run the following command at your project's root directory:
To autoload the classes from this library, you just need to call the default composer
autoloader:
Manually
GdWrapper
is compatible with PSR-4 and you can find a sample autoloader here.
Components
Resources
Represents in-memory image resources. These are actually wrapper objects to GD's native resource type. Every action supported by this library is done over Resource
objects.
IO
This package is responsible for image IO (reading from the disc and writting it back/displaying on screen). Each supported image type has its own IO classes.
Geometry
Helper component that simplifies operation over image dimensions, such as positioning, orientation, paddings, etc.
Action
Actions that can be applied over an image. Currently there are 3 supported actions:
- Resize
- Crop
- Merge
Usage
Loading images from disk
If you just need to load files from a specific extensio, you can directly instantiate an image Reader
for it:
For gif and png images, the code is analogous, just changing JpegReader
to GifReader
or PngReader
.
When you have a more dynamic image input, where you can have images with different formats, you might consider using a factory to make things easier:
The above code samples are used to create raw GD resources, which are used on basically every function on GD library. However, they are quite hard to handle, since they are not objects and you need to manually free them when not required anymore.
Using resource wrappers
Once you have created a raw resource, you should wrap it into a Resource
object. For images read from the disk, there is the ImageResource
class:
The creation of the resource based on an image from the disk can be delegated to a ImageResourceFactory
like this:
You can create multiple resources based on the same image just by calling the create
method again:
It's also possible to reuse the same factory to create resource objects for other images, by setting a new image path with the setPathName
method:
Notice that you can even change the image type. The ImageResourceFactory
is smart enough to figure this out and switch to a proper reader.
Generating image output
In order to generate an output for the image, you must use the Writer
component from the IO package.
Different from reading images, when you are trying to write them, you should already know a priori which format you want your image to assume.
This is how you can convert a JPEG image to PNG:
Sometimes, you want to generate images on the fly instead of outputing it to a file. In this case, you can write to Writer::STDOUT
to make the output be sent to the standard output (normally, a browser):
Applying actions over images
Actions are applied to images in a cascading fashion, that is, performed actions are cumulative: if you crop an image and then resize it, you will be resizing the cropped version of the image.
Resize
Resizing can be done in 3 ways:
- Proportionally
- To an exact fixed size
- Keeping the aspect ratio
Crop
Cropping can be done in 4 ways:
- With fixed dimensions (width and height), based on a referencial position
- Based on fixed points, one working as a referencial and the other used to calculate the width and the height
- Using its edges as referencials, creating "paddings"
- Proportionally, based on a referencial position
Merge
@TODO