PHP Classes

File: README.md

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   Unsplash Helper   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: Documentation
Class: Unsplash Helper
Display images from Unsplash.com
Author: By
Last change: Fix code sample indentation + minor improvements
Date: 5 years ago
Size: 1,037 bytes
 

Contents

Class file image Download

Unsplash Helper

Get Unsplash Images Easily

Get easily any Unsplash images with a clean PHP class.

It's a really lightweight and simple PHP class that helps you to get easily any images from Unsplash.com while keeping your project clean.

Example

use PH7\Image\Unsplash;

$unsplash = new Unsplash();
$unsplash->setWidth(600)
    ->setHeight(400)
    ->setQuality(80)
    ->setImageId('photo-1462045504115-6c1d931f07d1');

echo '<img src="' . $unsplash->getImage() . '">';

$unsplash->setImageId('photo-1500045992661-f978470eaf7b');
$unsplash->setFit(Unsplash::MAX_FIT);

echo '<img src="' . $unsplash->getImage() . '">';

Installation

  1. Install Composer (https://getcomposer.org)
  2. Include it in your project:
    composer require ph-7/image-unsplash
    

Requirements

Author

Made with ? and care by Pierre-Henry Soria

License

MIT License. Enjoy! :smiley: