Buy for $9!  (10 formats)

Słowa kluczowe:

Ziin Image Formats is a library for PHP which supports over 120 image formats.
It is written entirely in PHP- does not require any command line programs or compiled libraries.
You can use it just like the formats built into PHP (png, gif, bmp, wbmp, xbmp): imagecreatefromXXX($filename) and imageXXX($im, $filename) where XXX is a file extension.
For example you can write: imagecreatefromtga($filename) to load a TGA image. And if you want to save an image in TGA format just write: imagetga($im, $filename) Additionally Ziin Image Formats give you one function to load any of the supported formats (including PHP built-in formats): imagecreatefromfile($filename) and a similar way to write image to file: imagefile($im, $filename) Format to use will be autodetected from filename's extension.

You get just two simple functions to load and save lots of different image formats.
Ask yourself how much time you can save with this library!
So don't wait any longer and get this library now in promotional, time-limited price!
Features & comparison
PHP limits
Unfortunately PHP is not designed to handle huge files, so in order to load/save huge images you might need to allocate lots of memory and increase timeout. For example: to increase memory to 128MB and timeout to 10 seconds you can write: ini_set('memory_limit', '128M');
ini_set('max_execution_time', 10);