2017 © Pedro Peláez
 

library thumbnail

A library for making thumbnails, especially for composed images' thumbnail

image

clarence/thumbnail

A library for making thumbnails, especially for composed images' thumbnail

  • Thursday, March 31, 2016
  • by Clarence-pan
  • Repository
  • 1 Watchers
  • 5 Stars
  • 13 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

thumbnail 缩略图

A library for make multi images' thumbnail in PHP, (*1)

用PHP写的一个生成多张图片的组合缩略图, (*2)

Install 安装

Except downloading the source code from github, it is recommended to install via composer:, (*3)

除了从 github 上下载源码外,推荐使用composer安装:, (*4)

composer require clarence/thumbnail

Examples 示例

Composite the following 4 images into a thumbnail:, (*5)

将以下四张图组合起来生成一张缩略图:, (*6)

Let's see the result firstly:, (*7)

先看效果:, (*8)

, (*9)

Then, the example codes:, (*10)

再看代码:, (*11)

// file: test/example.php
$thumbnail = \Clarence\Thumbnail\Thumbnail::createFromImages($srcImages, 240, 320);
$thumbnail->writeImage($outputDir."/example.jpg");

Really pretty simple codes:, (*12)

十分简单的代码~, (*13)

Thumbnail::createFromImages is ussed to create the composited thumbnail. The first parameter is an array of original images' pathes; The second parameter is the thumbnail's width; The third parameter is the thumbnail's height; Then the image created is an instance of Imagick - so writeImage can be used to save it to a file., (*14)

Thumbnail::createFromImages 就是用于生成缩略图的关键函数,其第一个参数是原始图片的文件路径列表,第二个参数是生成的缩略图的宽度,第三个参数是生成的缩略图的高度;生成的图片是一个Imagick对象,然后可以使用writeImage将其保存到文件。, (*15)

Other thumbnail types 其他缩略图类型

(1 image), (*16)

(2 images), (*17)

(3 images), (*18)

(4 images), (*19)

(CropThumbnail), (*20)

(ScaleThumbnail), (*21)

(EqualScaleTopLeftThumbnail), (*22)

(EqualScaleCenterThumbnail), (*23)

The Versions

31/03 2016

dev-master

9999999-dev

A library for making thumbnails, especially for composed images' thumbnail

  Sources   Download

MIT

The Requires

  • php >5.3.0
  • ext-imagick *

 

31/03 2016

v1.0.2

1.0.2.0

A library for making thumbnails, especially for composed images' thumbnail

  Sources   Download

MIT

The Requires

  • php >5.3.0
  • ext-imagick *

 

25/02 2016

v1.0.1

1.0.1.0

A library for making thumbnails, especially for composed images' thumbnail

  Sources   Download

MIT

The Requires

  • php >5.3.0
  • ext-imagick *

 

25/02 2016

v1.0.0

1.0.0.0

A library for making thumbnails, especially for composed images' thumbnail

  Sources   Download

The Requires

  • php >5.3.0
  • ext-imagick *