PHP code example of houdunwang / image

1. Go to this page and download the library: Download houdunwang/image library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

houdunwang / image example snippets


$config = [
	//水印字体
	'font'       => '',
	//水印图像
	'image'      => '',
	//位置  1~9九个位置  0为随机
	'pos'        => 9,
	//透明度
	'pct'        => 60,
	//压缩比
	'quality'    => 80,
	//水印文字
	'text'       => 'houdunwang.com',
	//文字颜色
	'text_color' => '#f00f00',
	//文字大小
	'text_size'  => 12,
];
\houdunwang\config\Config::set( 'image', $config );