DearMadMan / laravel-image-tool by DearMadMan

ImageTool for Laravel 5
23
0
2
Package Data
Maintainer Username: DearMadMan
Maintainer Contact: 2034906607@qq.com (dearmadman)
Package Create Date: 2015-06-26
Package Last Update: 2015-06-26
Language: PHP
License: MIT
Last Refreshed: 2024-05-02 15:01:30
Package Statistics
Total Downloads: 23
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

Laravel ImageTool

Simple ImageTool for laravel 5

Installation

The ImageTool Service Provider can be installed via Composer by requiring the dearmadman/laravel-image-tool package and setting the minimum-stability to dev (required for Laravel 5) in your project's composer.json.

{
    "require": {
        "laravel/framework": "5.0.*",
        "dearmadman/laravel-image-tool": "dev-master"
    },
    "minimum-stability": "dev"
}

Usage

To use the ImageTool Service Provider, you must register the provider when bootstrapping your Laravel application. There are essentially two ways to do this.

Find the providers key in app/config/app.php and register the ImageTool Service Provider.

    'providers' => array(
        // ...
        'Dearmadman\ImageTool\ImageToolServiceProvider',
    )

Example Usage


    // [your site path]/app/routes.php

   Route::Post('image-tool',function(){
     $target=false;
     if (config('image.compress_config_enable')) {
         /* compress image */
        $image_tool = ImageTool::GetInstance();
        $arr=[
            'jpeg_quality'=>config('image.compress_rate'),
            'cover_img'=>config('image.compress_cover'),
        ];
        $image_tool->SetConfig($arr);
        $target = $image_tool->GetImageFromString($target,'img');
      }

     return $target ? $target : "false" ;

	});



^_^