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

时间:2022-07-31 04:11:02
【文件属性】:

文件名称:PHP添加水印,压缩,剪切的封装操作图片类.zip

文件大小:2KB

文件格式:ZIP

更新时间:2022-07-31 04:11:02

类库下载-PHP添加水印,压缩,剪切的封装操作图片类

<?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);   }这是一个可以操作图片的类库,可以给图片添加水印,压缩图片,剪切图片。 * 文字水印   * @param [type] $font   字体   * @param [type] $content 内容   * @param [type] $size   文字大小   * @param [type] $col   文字颜色(四元数组)   * @param array  $location 位置   * @param integer $angle  倾斜角度   * @return [type]   * 图片水印   * @param [type] $imageMark 水印图片地址   * @param [type] $dst    水印图片在原图片中的位置   * @param [type] $pct    透明度   * @return [type]   * 压缩图片   * @param [type] $thumbSize 压缩图片大小   * @return [type]      [description]   * 裁剪图片   * @param [type] $cutSize 裁剪大小   * @param [type] $location 裁剪位置   * @return [type]      [description]   * 展现图片   * @return [type] [description]   * 保存图片   * @param [type] $newname 新图片名   * @return [type]     [description]


【文件预览】:
PHP添加水印,压缩,剪切的封装操作图片类
----php中文网下载站.url(114B)
----php中文网免费下载站.txt(219B)
----image.php(3KB)

网友评论