2017 © Pedro Peláez
 

library imageoptim

ImageOptim API for PHP

image

imageoptim/imageoptim

ImageOptim API for PHP

  • Tuesday, January 10, 2017
  • by pornel
  • Repository
  • 6 Watchers
  • 28 Stars
  • 9,372 Installations
  • PHP
  • 4 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 8 Versions
  • 49 % Grown

The README.md

ImageOptim API PHP client

This library allows you to resize and optimize images using ImageOptim API., (*1)

ImageOptim offers advanced compression, high-DPI/responsive image mode, and color profile support that are much better than PHP's built-in image resizing functions., (*2)

Installation

The easiest is to use PHP Composer:, (*3)

composer require imageoptim/imageoptim

If you don't use Composer, then require or autoload files from the src directory., (*4)

Usage

First, register to use the API., (*5)

<?php
require "vendor/autoload.php"; // created by Composer

$api = new ImageOptim\API("🔶your api username goes here🔶");

$imageData = $api->imageFromURL('http://example.com/photo.jpg') // read this image
    ->resize(160, 100, 'crop') // optional: resize to a thumbnail
    ->dpr(2) // optional: double number of pixels for high-resolution "Retina" displays
    ->getBytes(); // perform these operations and return the image data as binary string

file_put_contents("images/photo_optimized.jpg", $imageData);

There's a longer example at the end of the readme., (*6)

Methods

API($username) constructor

new ImageOptim\API("your api username goes here");

Creates new instance of the API. You need to give it your username., (*7)

imageFromPath($filePath) — local source image

Creates a new request that will upload the image to the API, and then resize and optimize it. The upload method is necessary for optimizing files that are not on the web (e.g. localhost, files in /tmp)., (*8)

For images that have a public URLs (e.g. published on a website) it's faster to use the URL method instead:, (*9)

imageFromURL($url) — remote source image

Creates a new request that will read the image from the given public URL, and then resize and optimize it., (*10)

Please pass full absolute URL to images on your website., (*11)

Ideally you should supply source image at very high quality (e.g. JPEG saved at 99%), so that ImageOptim can adjust quality itself. If source images you provide are already saved at low quality, ImageOptim will not be able to make them look better., (*12)

resize($width, $height = optional, $fit = optional) — desired dimensions

  • resize($width) — sets maximum width for the image, so it'll be resized to this width. If the image is smaller than this, it won't be enlarged., (*13)

  • resize($width, $height) — same as above, but image will also have height same or smaller. Aspect ratio is always preserved., (*14)

  • resize($width, $height, 'crop') — resizes and crops image exactly to these dimensions., (*15)

If you don't call resize(), then the original image size will be preserved., (*16)

See options reference for more resizing options., (*17)

dpr($x) — pixel doubling for responsive images (HTML srcset)

The default is dpr(1), which means image is for regular displays, and resize() does the obvious thing you'd expect., (*18)

If you set dpr(2) then pixel width and height of the image will be doubled to match density of "2x" displays. This is better than resize($width*2), because it also adjusts sharpness and image quality to be optimal for high-DPI displays., (*19)

See options reference for explanation how DPR works., (*20)

quality($preset) — if you need even smaller or extra sharp images

Quality is set as a string, and can be low, medium or high. The default is medium and should be good enough for most cases., (*21)

getBytes() — get the resized image

Makes request to ImageOptim API and returns optimized image as a string. You should save that to your server's disk., (*22)

ImageOptim performs optimizations that sometimes may take a few seconds, so instead of converting images on the fly on every request, you should convert them once and keep them., (*23)

apiURL() — debug or use another HTTPS client

Returns string with URL to https://im2.io/… that is equivalent of the options set. You can open this URL in your web browser to get more information about it. Or you can make a POST request to it to download the image yourself, if you don't want to use the getBytes() method., (*24)

Error handling

All methods throw on error. You can expect the following exception subclasses:, (*25)

  • ImageOptim\InvalidArgumentException means arguments to functions are incorrect and you need to fix your code.
  • ImageOptim\NetworkException is thrown when there is problem comunicating with the API. You can retry the request.
  • ImageOptim\NotFoundException is thrown when URL given to imageFromURL() returned 404. Make sure paths and urlencoding are correct. More.
  • ImageOptim\OriginServerException is thrown when URL given to imageFromURL() returned 4xx or 5xx error. Make sure your server allows access to the file.

If you're writing a script that processes a large number of images in one go, don't launch it from a web browser, as it will likely time out. It's best to launch such scripts via CLI (e.g. via SSH)., (*26)

Help and info

See imageoptim.com/api for documentation and contact info. I'm happy to help!, (*27)

Example

This is a script that optimizes an image. Such script usually would be ran when a new image is uploaded to the server. You don't need to run any PHP code to serve optimized images., (*28)

The API operates on a single image at a time. When you want to generate multiple image sizes/thumbnails, repeat the whole procedure for each image at each size., (*29)

<?php

// This line is required once to set up Composer
// If this file can't be found, try changing the path
// and or run `composer update` in your project's directory
require "vendor/autoload.php";

$api = new ImageOptim\API("🔶your api username goes here🔶");

// imageFromURL/imageFromPath creates a temporary object used to store
// settings of the optimization.
$imageParams = $api->imageFromURL('http://example.com/photo.jpg');

// You set various settings on this object (or none to get the defaults).
$imageParams->quality('low');
$imageParams->resize(1024);

// Next, to start the optimizations and get the optimized image, call:
$imageData = $imageParams->getBytes();

/*
 the getBytes() call may take a while to run, so it's intended to be
 called only once per image (e.g. only when a new image is uploaded
 to your server). If you'd like to "lazily" optimize arbitrary images
 on-the-fly when  they're requested, there is a better API for that:
 https://im2.io/api/get
*/

// Save the image data somewhere on the server, e.g.
file_put_contents("images/photo_optimized.jpg", $imageData);

// Note that this script only prepares a static image file
// (in this example in images/photo_optimized.jpg),
// and does not serve it to the browser. Once the optimized
// image is saved to disk you should serve it normally
// as you'd do with any regular image file.

The Versions

10/01 2017

dev-master

9999999-dev https://imageoptim.com/api

ImageOptim API for PHP

  Sources   Download

BSD-2-Clause

The Requires

  • php ^5.4 || ^7.0

 

The Development Requires

by Kornel

image resize performance scale optimize

10/01 2017

1.3.1

1.3.1.0 https://imageoptim.com/api

ImageOptim API for PHP

  Sources   Download

BSD-2-Clause

The Requires

  • php ^5.4 || ^7.0

 

The Development Requires

by Kornel

image resize performance scale optimize

13/06 2016

1.3.0

1.3.0.0 https://imageoptim.com/api

ImageOptim API for PHP

  Sources   Download

BSD-2-Clause

The Requires

  • php ^5.4 || ^7.0

 

The Development Requires

by Kornel

image resize performance scale optimize

29/05 2016

1.2.0

1.2.0.0 https://imageoptim.com/api

ImageOptim API for PHP

  Sources   Download

BSD-2-Clause

The Requires

  • php ^5.4 || ^7.0

 

The Development Requires

by Kornel

image resize performance scale optimize

22/05 2016

1.1.0

1.1.0.0 https://imageoptim.com/api

ImageOptim API for PHP

  Sources   Download

BSD-2-Clause

The Requires

  • php ^5.4 || ^7.0

 

The Development Requires

by Kornel

image resize performance scale optimize

21/05 2016

1.0.2

1.0.2.0 https://imageoptim.com/api

ImageOptim API for PHP

  Sources   Download

BSD-2-Clause

The Requires

  • php ^5.4 || ^7.0

 

The Development Requires

by Kornel

image resize performance scale optimize

21/05 2016

1.0.1

1.0.1.0 https://imageoptim.com/api

ImageOptim API for PHP

  Sources   Download

BSD-2-Clause

The Requires

  • php ^5.4 || ^7.0

 

The Development Requires

by Kornel

image resize performance scale optimize

21/05 2016

1.0.0

1.0.0.0 https://imageoptim.com/api

ImageOptim API for PHP

  Sources   Download

BSD-2-Clause

The Requires

  • php ^5.4 || ^7.0

 

The Development Requires

by Kornel

image resize performance scale optimize