2017 © Pedro Peláez
 

dev photon

image

bencagri/photon

  • Friday, February 9, 2018
  • by bencagri
  • Repository
  • 1 Watchers
  • 2 Stars
  • 6 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

, (*1)

JETPACK PHOTON WRAPPER

What is Photon?

Photon is an image acceleration and modification service for Jetpack-connected WordPress sites. Converted images are cached automatically and served from the WordPress.com CDN. Images can be cropped, resized, and filtered by using a simple API controlled by GET query arguments. When Photon is enabled in Jetpack, images are updated on the fly., (*2)

Why wrapper?

This wrapper allows you to use photon on your host (servers) and its fully object oriented., (*3)

Installation

$ composer require bencagri/photon

Notice: to use it on your servers, you need to install gmagick package, (*4)

Sample implementation., (*5)


<?php use Photon\Wrapper\Generate; use Photon\Wrapper\Effect\Height; use Photon\Wrapper\Effect\Width; use Photon\Wrapper\Effects; require 'vendor/autoload.php'; // Set your effects $effects = new Effects( new Width(500), new Height(500) ); $imageUrl = 'http://sample-site.com/sample-image.jpg'; //Generate image with your effects $process = new Generate($imageUrl,$effects); $process->process();

You can combine multiple effects also., (*6)

<?php
use Photon\Wrapper\Effect\Crop;
use Photon\Wrapper\Effect\Filter;
use Photon\Wrapper\Effects;

$crop = new Crop(500,250,330,300);

$effects = new Effects(
    $crop,
    new Filter('emboss')
);

Full documentation of all effects., (*7)

Licence

  • The Photon Wrapper is open-sourced software licensed under the MIT license.
  • The Photon is open-sourced software licenced under GNU GENERaL PUBLIC LICENCE

The Versions

09/02 2018

dev-master

9999999-dev

  Sources   Download

The Development Requires

by Avatar bencagri

09/02 2018

1.0.2

1.0.2.0

  Sources   Download

The Development Requires

by Avatar bencagri

09/02 2018

1.0.1

1.0.1.0

  Sources   Download

The Development Requires

by Avatar bencagri

09/02 2018

1.0

1.0.0.0

  Sources   Download

The Development Requires

by Avatar bencagri