With this official Kraken PHP library you can plug into the power and speed of Kraken.io Image Optimizer.
- Installation
- Getting Started
- Downloading Images
- How To Use
- Wait and Callback URL
- Authentication
- Usage - Image URL
- Usage - Image Upload
- Lossy Optimization
- Image Resizing
- WebP Compression
- Image Type Conversion
- Preserving Metadata
- External Storage
If you're using Composer, you can simply add a dependency on kraken-io/kraken-php
to your project's composer.json
file. Here's an example of a dependency on version 1.2:
{
"require": {
"kraken-io/kraken-php": "^1.2"
}
}
Alternatively you can also execute the following command in your project's root directory:
composer require kraken-io/kraken-php
If you already have git, the easiest way to download the Kraken-PHP library is with the git command:
git clone git://github.com/kraken-io/kraken-php.git /path/to/include/kraken
Alternatively, you may download the PHP files from GitHub and place them within your PHP project:
https://github.com/kraken-io/kraken-php/archive/master.zip
First you need to sign up for the Kraken API and obtain your unique API Key and API Secret. You will find both under API Credentials. Once you have set up your account, you can start using Kraken API in your applications.
Remember - never link to optimized images offered to download. You have to download them first, and then replace them in your websites or applications. Due to security reasons optimized images are available on our servers for one hour only.
You can optimize your images in two ways - by providing an URL of the image you want to optimize or by uploading an image file directly to Kraken API.
The first option (image URL) is great for images that are already in production or any other place on the Internet. The second one (direct upload) is ideal for your deployment process, build script or the on-the-fly processing of your user's uploads where you don't have the images available online yet.
Kraken gives you two options for fetching optimization results. With the wait
option set the results will be returned immediately in the response. With the callback_url
option set the results will be posted to the URL specified in your request.
With the wait
option turned on for every request to the API, the connection will be held open until the image has been optimized. Once this is done you will get an immediate response with a JSON object containing your optimization results. To use this option simply set "wait": true
in your request.
Request:
{
"auth": {
"api_key": "your-api-key",
"api_secret": "your-api-secret"
},
"url": "http://image-url.com/file.jpg",
"wait": true
}
Response
{
"success": true,
"file_name": "file.jpg",
"original_size": 324520,
"kraked_size": 165358,
"saved_bytes": 159162,
"kraked_url": "http://dl.kraken.io/d1aacd2a2280c2ffc7b4906a09f78f46/file.jpg"
}
With the Callback URL the HTTPS connection will be terminated immediately and a unique id
will be returned in the response body. After the optimization is over Kraken will POST a message to the callback_url
specified in your request. The ID in the response will reflect the ID in the results posted to your Callback URL.
We recommend requestb.in as an easy way to capture optimization results for initial testing.
Request:
{
"auth": {
"api_key": "your-api-key",
"api_secret": "your-api-secret"
},
"url": "http://image-url.com/file.jpg",
"callback_url": "http://awesome-website.com/kraken_results"
}
Response:
{
"id": "18fede37617a787649c3f60b9f1f280d"
}
Results posted to the Callback URL:
{
"id": "18fede37617a787649c3f60b9f1f280d"
"success": true,
"file_name": "file.jpg",
"original_size": 324520,
"kraked_size": 165358,
"saved_bytes": 159162,
"kraked_url": "http://dl.kraken.io/18fede37617a787649c3f60b9f1f280d/file.jpg"
}
The first step is to authenticate to Kraken API by providing your unique API Key and API Secret while creating a new Kraken instance:
<?php
require_once("Kraken.php");
$kraken = new Kraken("your-api-key", "your-api-secret");
To optimize an image by providing image URL use the kraken.url()
method. You will need to provide two mandatory parameters in an array - url
to the image and wait
or callback_url
:
<?php
require_once("Kraken.php");
$kraken = new Kraken("your-api-key", "your-api-secret");
$params = array(
"url" => "http://url-to-image.com/file.jpg",
"wait" => true
);
$data = $kraken->url($params);
Depending on a chosen response option (Wait or Callback URL) in the data
array you will find either the optimization ID or optimization results containing a success
property, file name, original file size, kraked file size, amount of savings and optimized image URL:
array(6) {
'success' =>
bool(true)
'file_name' =>
string(8) "file.jpg"
'original_size' =>
int(62422)
'kraked_size' =>
int(52783)
'saved_bytes' =>
int(9639)
'kraked_url' =>
string(65) "http://dl.kraken.io/d1aacd2a2280c2ffc7b4906a09f78f46/file.jpg"
}
If you want to upload your images directly to Kraken API use the kraken->upload()
method. You will need to provide two mandatory parameters in an array - file
which is the absolute path to the file and wait
or callback_url
.
In the $data
array you will find the same optimization properties as with the url
option above.
<?php
require_once("Kraken.php");
$kraken = new Kraken("your-api-key", "your-api-secret");
$params = array(
"file" => "/path/to/image/file.jpg",
"wait" => true
);
$data = $kraken->upload($params);
When you decide to sacrifice just a small amount of image quality (usually unnoticeable to the human eye), you will be able to save up to 90% of the initial file weight. Lossy optimization will give you outstanding results with just a fraction of image quality loss.
To use lossy optimizations simply set "lossy" => true
in your request:
<?php
require_once("Kraken.php");
$kraken = new Kraken("your-api-key", "your-api-secret");
$params = array(
"file" => "/path/to/image/file.jpg",
"wait" => true,
"lossy" => true
);
$data = $kraken->upload($params);
PNG images will be converted from 24-bit to paletted 8-bit with full alpha channel. This process is called PNG quantization in RGBA format and means the amount of colours used in an image will be reduced to 256 while maintaining all information about alpha transparency.
For lossy JPEG optimizations Kraken will generate multiple copies of a input image with a different quality settings. It will then intelligently pick the one with the best quality to filesize ration. This ensures your JPEG image will be at the smallest size with the highest possible quality, without the need for a human to select the optimal image.
Image resizing option is great for creating thumbnails or preview images in your applications. Kraken will first resize the given image and then optimize it with its vast array of optimization algorithms. The resize
option needs a few parameters to be passed like desired width
and/or height
and a mandatory strategy
property. For example:
<?php
require_once("Kraken.php");
$kraken = new Kraken("your-api-key", "your-api-secret");
$params = array(
"file" => "/path/to/image/file.jpg",
"wait" => true,
"resize" => array(
"width" => 100,
"height" => 75,
"strategy" => "crop"
)
);
$data = $kraken->upload($params);
The strategy
property can have one of the following values:
exact
- Resize by exact width/height. No aspect ratio will be maintained.portrait
- Exact width will be set, height will be adjusted according to aspect ratio.landscape
- Exact height will be set, width will be adjusted according to aspect ratio.auto
- The best strategy (portrait or landscape) will be selected for a given image according to aspect ratio.fit
- This option will crop and resize your images to fit the desired width and height.square
- This strategy will first crop the image by its shorter dimension to make it a square, then resize it to the specified size.crop
- This option will crop your image to the exact size you specify with no distortion.fill
- This strategy allows you to resize the image to fit the specified bounds while preserving the aspect ratio (just like auto strategy). The optional background property allows you to specify a color which will be used to fill the unused portions of the previously specified bounds. The background property can be formatted in HEX notation#f60
or#ff6600
, RGBrgb(255, 0, 0)
or RGBArgba(91, 126, 156, 0.7)
. The default background color is white.
More information about image resizing and cropping can be found in the Kraken API Reference
WebP is a new image format introduced by Google in 2010 which supports both lossy and lossless compression. According to Google, WebP lossless images are 26% smaller in size compared to PNGs and WebP lossy images are 25-34% smaller in size compared to JPEG images.
To recompress your PNG or JPEG files into WebP format simply set "webp": true
flag in your request JSON. You can also optionally set "lossy": true
flag to leverage WebP's lossy compression:
<?php
require_once("Kraken.php");
$kraken = new Kraken("your-api-key", "your-api-secret");
$params = array(
"file" => "/path/to/image/file.jpg",
"wait" => true,
"webp" => true,
"lossy" => true
);
$data = $kraken->upload($params);
Kraken API allows you to easily convert different images from one type/format to another. If, for example, you would like to turn you transparent PNG file into a JPEG with a grey background Kraken API has you covered.
In order to convert between different image types you need to add an extra convert
object to you request JSON. This object takes three properties:
format
with which you specify the file type you want your image converted into.- An optional
background
property where you can specify background colour when converting from transparent file formats such as PNG and GIF into a fully opaque format such as JPEG. - An optional
keep_extension
property which allows you to keep the original file extension intact regardless of the output image format.
Mandatory Parameters:
format
— The image format you wish to convert your image into. This can accept one of the following values:jpeg
,png
orgif
.
Optional Parameters:
background
— Background image when converting from transparent file formats like PNG or GIF into fully opaque format like JPEG. The background property can be passed in HEX notation"#f60"
or"#ff6600"
, RGB"rgb(255, 0, 0)"
or RGBA"rgba(91, 126, 156, 0.7)"
. The default background color is white.keep_extension
— a boolean value (true
orfalse
) instructing Kraken API whether or not the original extension should be kept in the output filename. For example when converting "image.jpg" into PNG format with this flag turned on the output image name will still be "image.jpg" even though the image has been converted into a PNG. The default value isfalse
meaning the correct extension will always be set.
By default Kraken API will strip all the metadata found in an image to make the image file as small as it is possible, and in both lossy and lossless modes. Entries like EXIF, XMP and IPTC tags, colour profile information, etc. will be stripped altogether.
However there are situations when you might want to preserve some of the meta information contained in the image, for example, copyright notice or geotags. In order to preserve the most important meta entries add an additional preserve_meta
array to your request with one or more of the following values:
{
"preserve_meta": ["date", "copyright", "geotag", "orientation", "profile"]
}
profile
- will preserve the ICC colour profile. ICC colour profile information adds unnecessary bloat to images. However, preserving it can be necessary in extremely rare cases where removing this information could lead to a change in brightness and/or saturation of the resulting file.date
- will preserve image creation date.copyright
- will preserve copyright entries.geotag
- will preserve location-specific information.orientation
- will preserve the orientation (rotation) mark.
Example integration:
<?php
require_once("Kraken.php");
$kraken = new Kraken("your-api-key", "your-api-secret");
$params = array(
"file" => "/path/to/image/file.jpg",
"wait" => true,
"preserve_meta" => array("profile", "geotag")
);
$data = $kraken->upload($params);
Kraken API allows you to store optimized images directly in your S3 bucket, Cloud Files container, Azure container or SoftLayer Object Storage container. With just a few additional parameters your optimized images will be pushed to your external storage in no time.
Mandatory Parameters:
key
- Your unique Amazon "Access Key ID".secret
- Your unique Amazon "Secret Access Key".bucket
- Name of a destination container on your Amazon S3 account.region
- Name of the region your S3 bucket is located in. This field is mandatory if the region is different from the default one (us-east-1
). The full list of S3 regions can be found here.
Optional Parameters:
path
- Destination path in your S3 bucket (e.g."images/layout/header.jpg"
). Defaults to root"/"
.acl
- Permissions of a destination object. This can be"public_read"
or"private"
. Defaults to"public_read"
.
The above parameters must be passed in a s3_store
key:
<?php
require_once("Kraken.php");
$kraken = new Kraken("your-api-key", "your-api-secret");
$params = array(
"file" => "/path/to/image/file.jpg",
"wait" => true,
"s3_store" => array(
"key" => "your-amazon-access-key",
"secret" => "your-amazon-secret-key",
"bucket" => "destination-bucket"
)
);
$data = $kraken->upload($params);
The $data
array will contain a kraked_url
key pointing directly to the optimized file in your Amazon S3 account:
"kraked_url" => "http://s3.amazonaws.com/YOUR_CONTAINER/path/to/file.jpg"
Mandatory Parameters:
user
- Your Rackspace username.key
- Your unique Cloud Files API Key.container
- Name of a destination container on your Cloud Files account.
Optional Parameters:
path
- Destination path in your container (e.g."images/layout/header.jpg"
). Defaults to root"/"
.ssl
- a boolean value (true
orfalse
) instructing Kraken API to fetch either SSL or non-SSL URL from Rackspace CloudFiles. Defaults tofalse
meaning the non-SSL URL will be returned.
The above parameters must be passed in a cf_store
key:
<?php
require_once("Kraken.php");
$kraken = new Kraken("your-api-key", "your-api-secret");
$params = array(
"file" => "/path/to/image/file.jpg",
"wait" => true,
"cf_store" => array(
"user" => "your-rackspace-username",
"key" => "your-rackspace-api-key",
"container" => "destination-container",
"ssl" => true
)
);
$data = $kraken->upload($params);
If your container is CDN-enabled, the optimization results will contain kraked_url
which points directly to the optimized file location in your Cloud Files account, for example:
kraked_url => "http://e9ffc04970a269a54eeb-cc00fdd2d4f11dffd931005c9e8de53a.r2.cf1.rackcdn.com/path/to/file.jpg"
If your container is not CDN-enabled optimized file will be stored in your CloudFiles account anyways but the kraked_url
will point to the optimized image URL in the Kraken API Storage:
kraked_url => "http://dl.kraken.io/ecdfa5c55d5668b1b5fe9e420554c4ee/file.jpg"
Mandatory Parameters:
account
- Your Azure Storage Account.key
- Your unique Azure Storage Access Key.container
- Name of a destination container on your Azure account.
Optional Parameters:
path
- Destination path in your container (e.g."images/layout/header.jpg"
). Defaults to root"/"
.
The above parameters must be passed in a azure_store
key:
<?php
require_once("Kraken.php");
$kraken = new Kraken("your-api-key", "your-api-secret");
$params = array(
"file" => "/path/to/image/file.jpg",
"wait" => true,
"azure_store" => array(
"account" => "your-azure-account",
"key" => "your-azure-storage-access-key",
"container" => "destination-container"
)
);
$data = $kraken->upload($params);
Mandatory Parameters:
user
- Your SoftLayer username.key
- Your SoftLayer API Key.container
- Name of a destination container on your SoftLayer account.region
- Short name of the region your container is located in. This can be one of the following:syd01
lon02
mon01
dal05
tok02
tor01
hkg02
mex01
par01
fra02
mil01
sjc01
sng01
mel01
ams01
Optional Parameters:
path
- Destination path in your container (e.g. "images/layout/header.jpg"). Defaults to root "/".cdn_url
- A boolean valuetrue
orfalse
instructing Kraken API to return a public CDN URL of your optimized file. Defaults tofalse
meaning the non-CDN URL will be returned.
The above parameters must be passed in a sl_store
object:
<?php
require_once("Kraken.php");
$kraken = new Kraken("your-api-key", "your-api-secret");
// Minimal request, providing only the mandatory parameters */
$params = array(
"file" => "/path/to/image/file.jpg",
"wait" => true,
"sl_store" => array(
"user" => "your-softlayer-account",
"key" => "your-softlayer-key",
"container" => "destination-container",
"region" => "your-container-location"
)
);
$data = $kraken->upload($params);
Below you can find an example of a complete JSON request that uses sl_store
to push optimized image into your SoftLayer Object Storage container. We will use url option to feed the API with a URL of image to be optimized:
<?php
require_once("Kraken.php");
$kraken = new Kraken("your-api-key", "your-api-secret");
$params = array(
"url" => "http://awesome-website.com/images/header.jpg",
"wait" => true,
"sl_store" => array(
"user" => "your-softlayer-account",
"key" => "your-softlayer-key",
"container" => "destination-container",
"region" => "your-container-location",
"cdn_url" => true,
"path" => "images/layout/header.jpg"
)
);
$data = $kraken->upload($params);
If your SoftLayer container is CDN-enabled and you've passed "cdn_url": true
parameter in your JSON request the optimization results will contain kraked_url
which points directly to the optimized file location in your SoftLayer CDN, for example:
kraked_url => "http://1c231.http.fra02.cdn.softlayer.net/images/layout/header.jpg"
If your container is not CDN-enabled kraked_url
will point to the optimized image URL in the Kraken API:
kraked_url => "http://dl.kraken.io/api/ecdfa5c55d5668b1b5fe9e420554c4ee/header.jpg"
Copyright (c) 2013 - 2015 Nekkra UG
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.