Laravel Xử Lý ảnh Với Package ImageIntervention Phần 1
Có thể bạn quan tâm
Introduction
Intervention Image là một thư viện xử lý ảnh mã nguồn mở PHP. Nó cung cấp một cách dễ dàng để tạo, chỉnh sửa hình ảnh và hỗ trợ hiện tại hai thư viện xử lý ảnh phổ biến nhất là GD Library và Imagick.
Installation
Yêu cầu môi trường: Bắt buộc
- PHP >= 5.4
- Fileinfo Extension
- GD Library (>=2.0)
- Imagick PHP extension (>=6.5.7)
Cài đặt thông qua composer:
composer require intervention/image
Thêm providers và aliases:
InterventionImageImageServiceProvider::class ... 'Image' => InterventionImageFacadesImage::classSử dụng ImageIntervention trong Laravel:
// include composer autoload require 'vendor/autoload.php'; // import the Intervention Image Manager Class use InterventionImageImageManagerStatic as Image; // configure with favored image driver (gd by default) Image::configure(array('driver' => 'imagick')); // and you are ready to go ... $img = Image::make('public/foo.jpg')->resize($awidth, $height);Functions
Đọc thông số của image
// read awidth of image $img->awidth(); // get file size $img->->filesize(); // read height of image $img->height();Tạo empty image
// create a new empty image resource with transparent background $img = Image::canvas($awidth, $height); // create a new empty image resource with red background $img = Image::canvas($awidth, $height, $backgroundColor);Resize
Thay đổi kích thuước ảnh dựa theo chiều rộng và chiều dài của ảnh:
// resize image to fixed size $img->resize($awidth, $height); // resize only the awidth of the image $img->resize($awidth, null); // resize only the height of the image $img->resize(null, height); // resize the image to a awidth of 300 and constrain aspect ratio (auto height) $img->resize($awidth, null, function ($constraint) { $constraint->aspectRatio(); }); // resize the image to a height of 200 and constrain aspect ratio (auto awidth) $img->resize(null, height, function ($constraint) { $constraint->aspectRatio(); }); // prevent possible upsizing $img->resize(null, height, function ($constraint) { $constraint->aspectRatio(); $constraint->upsize(); });Rotate
Xoay ảnh theo 1 góc nhất định:
// rotate image 45 degrees clockwise $img->rotate(-$degree);Crop
Cắt ảnh dựa theo chiều được xác định:
// crop image $img->crop($awidth, $height, $xCordinateTopLeft, $yCordinateTopLeft);Fit
Kết hợp crop và resize 1 cách thông minh: xử lí ảnh theo tỉ lệ kích thước của ảnh:
// crop the best fitting 5:3 (600x360) ratio and resize to 600x360 pixel $img->fit($awidth = 600, $height = 360); // crop the best fitting 1:1 ratio (200x200) and resize to 200x200 pixel $img->fit($awidth = 200); // add callback functionality to retain maximal original image size $img->fit($awidth = 800, $height = 600, function ($constraint) { $constraint->upsize(); });Trên đây là 1 vài các chức năng cơ bản của package Intervention Image. Mình sẽ giới thiệu tiếp thêm các chức năng ở phần sau
Từ khóa » Thư Viện Xử Lý ảnh Php
-
Xử Lý Hình ảnh Bằng PHP Với Thư Viện Gregwar Image | Gextend
-
Quá Trình Xử Lý ảnh Thumbnail Với PHP
-
Manipulating Images In PHP Using GD - Viblo
-
Loi: Php Hỗ Trợ Thư Viện Xử Lý ảnh GD - Không Tương Thích - NukeViet
-
Quá Trình Xử Lý ảnh Thumbnail Với PHP - Vay Tiền Online Bằng CMND
-
Xử Lý đồ Họa Với Thư Viện GD - Tài Liệu Text - 123doc
-
Upload File Trong PHP
-
10 Thư Viên PHP Mà Bất Kỳ Ai Cũng Không Thể Bỏ Qua - Dnict
-
Thao Tác Với Các Thư Viện đồ Họa Và Hình ảnh PHP
-
Tiện ích Mở Rộng Thư Viện GD Hình ảnh Can Thiệp Laravel - HelpEx
-
Bài 2: PHP Trang Tin Tức - Viết Thư Viện Xử Lý Database Admin
-
Lưu Hình ảnh Từ URL Trong PHP Bằng Thư Viện CURL