PHP添加水印压缩剪切的封装操作图片类.zip

CSDN阿坤 14 0 ZIP 2020-08-14 16:08:06

<?php class Image { private $info; private $image; public $type; public function __construct($src) { $this->info=getimagesize($src); $this->type=image_type_to_extension($this->info['2'],false); $fun="imagecreatefrom{$this->type}"; $this->image=$fun($src); }

用户评论
请输入评论内容
评分:
暂无评论