Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/glynnforrest/pikasso
- Owner: glynnforrest
- Created: 2012-09-23T21:47:49.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-06-26T17:01:05.000Z (over 11 years ago)
- Last Synced: 2024-11-05T13:51:54.560Z (2 months ago)
- Language: PHP
- Homepage:
- Size: 402 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.