diff options
author | Clément Guillemain <clement.guillemain@gmail.com> | 2012-11-20 23:59:48 +0100 |
---|---|---|
committer | Clément Guillemain <clement.guillemain@gmail.com> | 2012-11-20 23:59:48 +0100 |
commit | 7ffec9dfb8bbcf0f973f606c47c7396a49e7cea0 (patch) | |
tree | ac15f94ec253d75b638b2f7289baee83fe7e1b33 | |
parent | 0285c6068dd3a81633c120960505de468071875e (diff) | |
download | ImageWorkshop-7ffec9dfb8bbcf0f973f606c47c7396a49e7cea0.zip ImageWorkshop-7ffec9dfb8bbcf0f973f606c47c7396a49e7cea0.tar.gz ImageWorkshop-7ffec9dfb8bbcf0f973f606c47c7396a49e7cea0.tar.bz2 |
Update README.md
-rw-r--r-- | README.md | 18 |
1 files changed, 2 insertions, 16 deletions
@@ -12,6 +12,7 @@ http://phpimageworkshop.com/ ### Latest updates
**Version 2.0.0 - 2012-11-21**
+
New version of ImageWorkshop ! The library is now divided in 3 main classes for cleaned code:
- ImageWorkshopLayer: the class which represents a layer, that you manipulate
- ImageWorkshop: a factory that is used to generate layers
@@ -57,22 +58,6 @@ $layer->flip('horizontal'); ```
- Refactoring mergeTwoImages() method.
-**Version 1.2.6 - 2012-09-27**
-- You can now initialize a layer from an image string (obtained with cURL, file_get_contents...):
-```php
- $imgString = file_get_contents("/myfolder/pic.jpg");
-
- $layer = new ImageWorkshop(array(
- "imageFromString" => $imgString,
- ));
-```
-Be carefull, JPEG format is known to be badly encoded after a cURL request or file_get_contents()
-and can show display bugs ! I'm trying to find a solution.
-
-**Version 1.2.5 - 2012-09-21**
-- You can now find tests status of the class on travis-ci: http://travis-ci.org/#!/Sybio/ImageWorkshop
-- Adding ImageWorkshop on http://travis-ci.org/ for controlled continuous integration
-
### Installation
The class is designed for PHP 5.3+, but it can work with older PHP versions... Check how to install the class here: http://phpimageworkshop.com/installation.html
@@ -92,6 +77,7 @@ The class is designed for PHP 5.3+, but it can work with older PHP versions... C ### @todo
- Adding a method to add easily borders to a layer (external, inside and middle border)
+- Check given hexa' color and remove # if exists.
### Contributors
Main contributors:
|