Laravel中如何給圖片加水印?

2020-07-16 10:05:31
在本篇文章中,我們將為大家介紹如何在laravel 5.8中向圖片新增水印。我們將使用laravel 5中的intervention/image包為影象新增水印。我們可以新增影象或文字作為水印。

在這個例子中,我們將安裝intervention/image包,然後我們將建立一個簡單的Route來新增影象水印。

安裝 intervention/image

我們需要安裝 intervention/image 包新增水印到影象,所以你可以使用以下命令安裝:

composer require intervention/image

之後,你需要設定providers(提供者)和aliases(別名)。

config/app.php

.....
'providers' => [
	....
	InterventionImageImageServiceProvider::class
]
'aliases' => [
	....
	'Image' => InterventionImageFacadesImage::class
]
.....

向圖片新增水印

在這裡,我將建立簡單的Route,並新增水印到影象。因此,你需要在你的公共「images」資料夾中新增兩個影象以進行測試。

確保你的images資料夾中有main.png和logo.png影象用於演示。

我們來看下面的例子。

Route::get('addWatermark', function()
{
    $img = Image::make(public_path('images/main.png'));
   
    /* 在右下角新增水印,偏移量為10px */
    $img->insert(public_path('images/logo.png'), 'bottom-right', 10, 10);
   
    $img->save(public_path('images/main-new.png')); 
   
    dd('成功儲存影象。');
});

本篇文章就是關於Laravel中給圖片加水印的方法介紹,希望對需要的朋友有所幫助!

以上就是Laravel中如何給圖片加水印?的詳細內容,更多請關注TW511.COM其它相關文章!