cbcaio/image-attacher 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

cbcaio/image-attacher

Composer 安装命令:

composer require cbcaio/image-attacher

包简介

Add uploaded images to models in an easy-to-use and fast approach. Process and save modified versions of images, like avatar, thumbnail, different sizes, you decide. Write images using flysystem.

README 文档

README

License Quality Score Build Status Latest Stable Version

Total Downloads Monthly Downloads Daily Downloads

This package uses polymorphic relationships to easily attach images to models. Basically you just need to use one of the package's traits in your model and you are good to go(see Usage). What happens in the background is that the models are linked to the images by a MorphOne relationship and every time you persist a image into the associated table the file is written automatically using the selected driver (using Flysystem), or updated if needed.

Install

1 - Via Composer

To get started with Image Attacher, add it to your composer.json file as a dependency:

$ composer require cbcaio/image-attacher

2 - Provider

After installing the Image Attacher, register the CbCaio\ImgAttacher\Providers\ImgAttacherServiceProvider in your configuration file (config/app.php):

'providers' => [
    // Other service providers...

    CbCaio\ImgAttacher\Providers\ImgAttacherServiceProvider::class,
],

3 - Configuration

In order to publish the configuration files run the following command

$ php artisan vendor:publish

This command will create 3 new files:

  1. config/img-attacher.php : this file holds the Image Attacher configurations.

    • path_to_save: defines where images will be saved, relatively to the driver and local specified in the flysystem.php. This path will be parsed before being used. The :attribute references information about the attacherImage model while the :owner_class and :owner_id are relative to the owner class of the relationship. These are needed to organize folders and also to certify that the right image will be deleted.

      IMPORTANT: This path should be exclusively used by the package, do not put other files in the same folder otherwise they can be deleted by mistake.

    • processing_styles and processing_style_routines: the 'routine' represents a sequence of 'styles' and its needed methods. Each 'style' saves a copy of the original image with the modifications specified in its method. They can be used to save different versions of your original image automatically when you add an image to a model (the model can can have different 'versions'/'styles' of same image with only one relationship).

      • For example, the following code will save the original image and also a 'thumbnail version' of the same image in their respective parsed path_to_save with :style substituted by original_style and thumbnail:

           $model->addImage(uploaded_file,'default_routine');
           ....
            'default_routine' =>
            [
                'original_style' => function ($image) {
                    return $image;
                },
                'thumbnail' => function ($image) {
                   $image->resize(null, 500, function ($constraint) {
                       $constraint->aspectRatio();
                       $constraint->upsize();
                   });
                   return $image;
                },
            ]
        
  2. database/migrations/2016_01_12_000000_create_attacher_images_table : this is a migration file to create the table which will hold the reference to your models in the MorthOne relationship and the information about the images.

  3. config/flysystem.php : this file is relative to the Flysystem. How and where your files will be written is defined here. It is important to say that this package is only tested using the 'local' driver.

Usage

To start attaching images to your models you just need to use one of the available traits (currently only hasImage) in the model.

 class RandomModel extends Model
 {
     use hasImage;
 }

1 - Basic of using the hasImage trait

Adding an image to the model from an uploaded file.
```php
    $upload = Input::file('image');
    $model->addImage($upload);
     // Directly from $request
    $model->addImage($request->file('image'));
     // With parameters
    $model->addImage($request->file('image', 'processing_style_routine','newfilename.jpg'));
```
Retrieving an image from the model.
```php
    $image = $user->getImage();
      // Path is relative
    $image->getPath('original_style);
    $image->getPath('thumbnail);
    
      // Url includes full path
    $image->getUrl('original_style);
    $image->getUrl('thumbnail);
``` 
Adding another image
```php
    // The same as adding, the package will identify if the model already has an image, delete the previous 
    images and update the relationship.
    $upload = Input::file('image2');
    $model->addImage($upload);
```
Deleting image and all the its styles
```php
    $model->deleteImage();
```

Change log

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email :author_email instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 55
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 13
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 12
  • Watchers: 0
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-01-15

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固