stefangabos / Zebra_Image

A single-file lightweight PHP library designed for efficient image manipulation featuring methods for modifying images and applying filters
https://stefangabos.github.io/Zebra_Image/Zebra_Image/Zebra_Image.html
Other
138 stars 51 forks source link

Add getter and setter for error messages #4

Open nunoprat opened 9 years ago

nunoprat commented 9 years ago

Get the error message:

$image = new Zebra_Image(); echo $image->getErrorMessage(); //This will return a string


Set custom error messages:

$image = new Zebre_Image(); $image->setErrorMessages(array( 'Custom message for error n1 - source file could not be found!', 'Source file is not readable! ', 'Could not write target file!', 'Unsupported source file format!', 'Unsupported target file format!', 'GD library version does not support target file format!', 'GD library is not installed!' )); echo $image->getErrorMessage(); //This will return a string

This makes the code more clean and maybe can be useful (; Thanks