Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/glynnforrest/pikasso

(ABANDONED) Simple image manipulation for PHP
https://github.com/glynnforrest/pikasso

Last synced: 14 days ago
JSON representation

(ABANDONED) Simple image manipulation for PHP

Awesome Lists containing this project

README

        

# Pikasso
## A PHP library to manipulate images

[![Build Status](https://travis-ci.org/glynnforrest/Pikasso.png)](https://travis-ci.org/glynnforrest/Pikasso)

## Intro

Pikasso aims to offer a simple and portable solution for dealing with
images in web applications. It is intended to be as lightweight as
possible, only including functionality for resizing, rotating and
converting between image formats.

Pikasso will remain portable by transparently switching between
ImageMagick and GD, loading ImageMagick if possible, then falling back
to GD.

## Installation

Pikasso is installed via Composer. To add it to your project, simply add it to your
composer.json file:

{
"require": {
"glynnforrest/pikasso": "*"
}
}

And run composer to update your dependencies:

$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update

## Usage

Coming soon.