作者 lyh

gx脚本demo

... ... @@ -325,8 +325,19 @@ class LoginController extends BaseController
return $data;
}
public function ceshi(){
public function ceshi()
{
$cos = new CosService();
return $cos->addFieldImage('https://globalso-v6-1309677403.cos.ap-hongkong.myqcloud.com/upload/p/2000/image_product/2024-07/aero-y50-introduction-3.jpg',['image'=>'https://globalso-v6-1309677403.cos.ap-hongkong.myqcloud.com/upload/p/2000/image_product/2024-07/aero-y50-introduction-4.jpg'],true);
$cdnUrl = 'http://globalso-v6-1309677403.cos.ap-hongkong.myqcloud.com/upload/p/2000/image_product/2024-07/aero-y50-introduction-3.jpg';
$data = [
'characters' => '这是水印',
'position' => 'gravity/NorthWest',
'dx' => 'dx/20',
'dy' => 'dy/20',
'font' => 'font/5b6u6L2v6buR', // 黑体
'fontsize' => 'fontsize/30',
'fill' => 'fill/I0RGRkZGRg==', // 白色
];
return $cos->addFieldImage($cdnUrl, $data);
}
}
... ...