tomkyle/yaphr
Composer 安装命令:
composer require tomkyle/yaphr
包简介
README 文档
README
#tomkyle\yaphr
Yet Another Photo Resizer for JPG, PNG, GIF.
Resizing and cropping, crisp & useful sharpening.
##Installation
Yaphr has no dependencies so far, although but installing Slim may be useful: Yaphr brings it own Slim Middleware for the most common resizing use cases. Install via Composer; add this to composer.json:
"require": {
"tomkyle/yaphr": "~1.1"
}
##Getting started
Yaphr comes with a convenience workflow that does most of the business for you:
use \tomkyle\yaphr\ImageFactory; use \tomkyle\yaphr\Geometry\BoxFactory; use \tomkyle\yaphr\Workflow; use \SplFileInfo; // YAPHR likes `SplFileInfo` $source = new SplFileInfo( '../master/path/to/original.jpg' ); $output = new SplFileInfo( './path/to/resized.jpg' ); // Generate factories: $image_factory = new ImageFactory; $box_factory = new BoxFactory; // Grab your instances: $image = $image_factory->newInstance( $source ); $box = $box_factory->newInstance( 300, 200, $image, 'crop'); // Convenience, convenience: // Resize, Sharpen, Save to cache // and Delivery to client in one step: new Workflow( $image, $box, $output);
So the Workflow is your friend. This example shows what happens inside:
use \tomkyle\yaphr\Resize; use \tomkyle\yaphr\Filters\SharpenImage; use \tomkyle\yaphr\FileSystem\CreateCacheDir; use \tomkyle\yaphr\FileSystem\SaveImage; use \tomkyle\yaphr\FileSystem\DeliverImage; // Create resized (cropped) image: $resized = new Resize($image, $box); // Make it nice and crisp: new SharpenImage( $resized ); // Save to file cache: new CreateCacheDir( $output, 0775 ); new SaveImage( $resized, $output, 85 ); // Send to client: new DeliverImage( $output, "exit" );
##Resize boxes
Yaphr offers various resizing modes, all of them useful in different use cases. If you exactly know what you want, you may instantiate a concrete Box class; using the BoxFactory with string parameter gives more flexibility: Just pass desired $width and $height, your original $image and the box type.
Crop extracts as much as possible from the original that fits into the given width and height. Most useful for pictures with varying side ratios, e.g. in responsive context.
$exact = new CropBox( $width, $height, $image ); // same as $exact = $box_factory->newInstance( $width, $height, $image, 'crop');
Auto makes portrait images $height pixels high, and landscape ones $width pixels, preserving side ratios. Perhaps the most classic resing mode.
$exact = new AutoBox( $width, $height, $image ); // same as $exact = $box_factory->newInstance( $width, $height, $image, 'auto');
Exact fits the image in the given width and height, not preserving side ratio (i.e. the result may be distorted). Mostly not useful (except from, well, distorting).
$exact = new Box( $width, $height ); // same as $exact = $box_factory->newInstance( $width, $height, $image, 'exact');
Tall resizes to the given height, regardless of the image width, but preserving side ratios. Useful for horizontal “same height” galleries or Masonry galleries.
$exact = new TallBox( $height, $image ); // same as $exact = $box_factory->newInstance( $height, $height, $image, 'tall');
Wide resizes to the given width, regardless of the image height, but preserving side ratios. Useful for vertical “same width” galleries.
$exact = new WideBox( $width, $image ); // same as $exact = $box_factory->newInstance( $width, $width, $image, 'wide');
##Classes overview
###Image classes
# Classes use \tomkyle\yaphr\GifImage; use \tomkyle\yaphr\JpegImage; use \tomkyle\yaphr\PngImage; # Abstracts and Interfaces use \tomkyle\yaphr\ImageAbstract; use \tomkyle\yaphr\ImageInterface; use \tomkyle\yaphr\GifImageInterface; use \tomkyle\yaphr\JpegImageInterface; use \tomkyle\yaphr\PngImageInterface;
###Business classes
# Classes use \tomkyle\yaphr\ImageFactory; use \tomkyle\yaphr\Workflow; use \tomkyle\yaphr\Resize;
###Geometry classes
# Boxes use \tomkyle\yaphr\Geometry\Box; use \tomkyle\yaphr\Geometry\BoxFactory; use \tomkyle\yaphr\Geometry\AutoBox; use \tomkyle\yaphr\Geometry\CropBox; use \tomkyle\yaphr\Geometry\SquareBox; use \tomkyle\yaphr\Geometry\TallBox; use \tomkyle\yaphr\Geometry\WideBox; # Coordinates use \tomkyle\yaphr\Geometry\CropStartCoordinates; use \tomkyle\yaphr\Geometry\NullCoordinates; # Abstracts and Interfaces use \tomkyle\yaphr\Geometry\CoordinatesInterface; use \tomkyle\yaphr\Geometry\BoxAbstract; use \tomkyle\yaphr\Geometry\BoxInterface; use \tomkyle\yaphr\Geometry\CropBoxInterface;
###Image filter classes
# Classes use \tomkyle\yaphr\Filters\SharpenImage; use \tomkyle\yaphr\Filters\UnsharpMask; # experimental
###File system classes
# Classes use \tomkyle\yaphr\FileSystem\CreateCacheDir; use \tomkyle\yaphr\FileSystem\CheckReadableFile; use \tomkyle\yaphr\FileSystem\DeliverImage; use \tomkyle\yaphr\FileSystem\FileExtension; use \tomkyle\yaphr\FileSystem\SaveImage; use \tomkyle\yaphr\FileSystem\SaveGif; use \tomkyle\yaphr\FileSystem\SaveJpeg; use \tomkyle\yaphr\FileSystem\SavePng; # Abstracts and Interfaces use \tomkyle\yaphr\FileSystem\SaveImageAbstract; use \tomkyle\yaphr\FileSystem\SaveImageInterface;
###Exceptions
# Classes and Interfaces use \tomkyle\yaphr\Exceptions\FileNotFound; use \tomkyle\yaphr\Exceptions\YaphrException; use \tomkyle\yaphr\Exceptions\YaphrExceptionInterface;
###PHP resource aggregation
# Interfaces and traits use \tomkyle\yaphr\Resources\ResourceAggregate; use \tomkyle\yaphr\Resources\ResourceAggregateTrait;
tomkyle/yaphr 适用场景与选型建议
tomkyle/yaphr 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 27 次下载、GitHub Stars 达 1, 最近一次更新时间为 2014 年 10 月 15 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「image」 「resize」 「png」 「photo」 「crop」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 tomkyle/yaphr 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 tomkyle/yaphr 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 tomkyle/yaphr 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Yii2 LightBox image galary widget uses Lightbox v2.10.0 by Lokesh Dhakar
The Yii2 extension uses jQuery jquery.carousel-1.1.min.js and makes image carousel from php array of structure defined.
Image cache
The lireincore/imgcache integration for the Yii2 framework
The Yii2 extension uses jQuery PrettyPhoto and OwlCarousel js and makes image galary from php array of structure defined.
Yii2 prettyPhoto image galary widget uses Lightbox view control jquery.prettyphoto.js
统计信息
- 总下载量: 27
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2014-10-15