Download the PHP package gueff/idolon without Composer
On this page you can find all versions of the php package gueff/idolon. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package idolon
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
<!DOCTYPE html>
<html lang="en">
<head></head>
<body>
<!-- request an image with width 250px -->
<img src="example.php?i=example.jpg&x=250">
</body>
</html>
Backend example.php
<?php
// Idolon Class
require_once 'Idolon.php';
$oIdolon = new \Idolon();
$oIdolon
->setImagePath(/path/to/my/image/folder/)
->serve();
see example folder
All versions of idolon with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.0
The package gueff/idolon contains the following files
Loading the files please wait ....