Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/gueff/idolon

Idolon is a PHP Image Server that can be used to get variations of your original images. Idolon resizes on the fly, serves the resized result directly and also saves the result.
https://github.com/gueff/idolon

idolon php php-library

Last synced: about 1 month ago
JSON representation

Idolon is a PHP Image Server that can be used to get variations of your original images. Idolon resizes on the fly, serves the resized result directly and also saves the result.

Awesome Lists containing this project

README

        

# Idolon
A PHP Image Server

Idolon is a PHP Image Server that can be used to get variations of your original images. Idolon resizes on the fly, serves the resized result directly and also saves the result.

## Requirements
- PHP 7
- imagemagick's convert Method
- therefore, get imagemagick installed on your Operating System
- e.g. Linux: `$ sudo apt-get install imagemagick`
- @see https://www.imagemagick.org/script/index.php, https://github.com/ImageMagick/ImageMagick

## Installation
create the composer.json file with following content:
~~~
{
"require": {
"gueff/idolon":"1.1.2"
}
}
~~~

run installation
~~~
$ composer install
~~~

## Usage

Frontend HTML
~~~







~~~

Backend example.php
~~~php
setImagePath(/path/to/my/image/folder/)
->serve();
~~~

**see example folder**