Image.class.php 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | TOPThink [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2010 http://topthink.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 麦当苗儿 <zuojiazi@vip.qq.com> <http://www.zjzit.cn>
  10. // +----------------------------------------------------------------------
  11. // | ThinkImage.class.php 2013-03-05
  12. // +----------------------------------------------------------------------
  13. namespace Think;
  14. /**
  15. * 图片处理驱动类,可配置图片处理库
  16. * 目前支持GD库和imagick
  17. * @author 麦当苗儿 <zuojiazi@vip.qq.com>
  18. */
  19. class Image{
  20. /* 驱动相关常量定义 */
  21. const IMAGE_GD = 1; //常量,标识GD库类型
  22. const IMAGE_IMAGICK = 2; //常量,标识imagick库类型
  23. /* 缩略图相关常量定义 */
  24. const IMAGE_THUMB_SCALE = 1 ; //常量,标识缩略图等比例缩放类型
  25. const IMAGE_THUMB_FILLED = 2 ; //常量,标识缩略图缩放后填充类型
  26. const IMAGE_THUMB_CENTER = 3 ; //常量,标识缩略图居中裁剪类型
  27. const IMAGE_THUMB_NORTHWEST = 4 ; //常量,标识缩略图左上角裁剪类型
  28. const IMAGE_THUMB_SOUTHEAST = 5 ; //常量,标识缩略图右下角裁剪类型
  29. const IMAGE_THUMB_FIXED = 6 ; //常量,标识缩略图固定尺寸缩放类型
  30. /* 水印相关常量定义 */
  31. const IMAGE_WATER_NORTHWEST = 1 ; //常量,标识左上角水印
  32. const IMAGE_WATER_NORTH = 2 ; //常量,标识上居中水印
  33. const IMAGE_WATER_NORTHEAST = 3 ; //常量,标识右上角水印
  34. const IMAGE_WATER_WEST = 4 ; //常量,标识左居中水印
  35. const IMAGE_WATER_CENTER = 5 ; //常量,标识居中水印
  36. const IMAGE_WATER_EAST = 6 ; //常量,标识右居中水印
  37. const IMAGE_WATER_SOUTHWEST = 7 ; //常量,标识左下角水印
  38. const IMAGE_WATER_SOUTH = 8 ; //常量,标识下居中水印
  39. const IMAGE_WATER_SOUTHEAST = 9 ; //常量,标识右下角水印
  40. /**
  41. * 图片资源
  42. * @var resource
  43. */
  44. private $img;
  45. /**
  46. * 构造方法,用于实例化一个图片处理对象
  47. * @param string $type 要使用的类库,默认使用GD库
  48. */
  49. public function __construct($type = self::IMAGE_GD, $imgname = null){
  50. /* 判断调用库的类型 */
  51. switch ($type) {
  52. case self::IMAGE_GD:
  53. $class = 'Gd';
  54. break;
  55. case self::IMAGE_IMAGICK:
  56. $class = 'Imagick';
  57. break;
  58. default:
  59. E('不支持的图片处理库类型');
  60. }
  61. /* 引入处理库,实例化图片处理对象 */
  62. $class = "Think\\Image\\Driver\\{$class}";
  63. $this->img = new $class($imgname);
  64. }
  65. /**
  66. * 打开一幅图像
  67. * @param string $imgname 图片路径
  68. * @return Object 当前图片处理库对象
  69. */
  70. public function open($imgname){
  71. $this->img->open($imgname);
  72. return $this;
  73. }
  74. /**
  75. * 保存图片
  76. * @param string $imgname 图片保存名称
  77. * @param string $type 图片类型
  78. * @param integer $quality 图像质量
  79. * @param boolean $interlace 是否对JPEG类型图片设置隔行扫描
  80. * @return Object 当前图片处理库对象
  81. */
  82. public function save($imgname, $type = null, $quality=80,$interlace = true){
  83. $this->img->save($imgname, $type, $quality,$interlace);
  84. return $this;
  85. }
  86. /**
  87. * 返回图片宽度
  88. * @return integer 图片宽度
  89. */
  90. public function width(){
  91. return $this->img->width();
  92. }
  93. /**
  94. * 返回图片高度
  95. * @return integer 图片高度
  96. */
  97. public function height(){
  98. return $this->img->height();
  99. }
  100. /**
  101. * 返回图像类型
  102. * @return string 图片类型
  103. */
  104. public function type(){
  105. return $this->img->type();
  106. }
  107. /**
  108. * 返回图像MIME类型
  109. * @return string 图像MIME类型
  110. */
  111. public function mime(){
  112. return $this->img->mime();
  113. }
  114. /**
  115. * 返回图像尺寸数组 0 - 图片宽度,1 - 图片高度
  116. * @return array 图片尺寸
  117. */
  118. public function size(){
  119. return $this->img->size();
  120. }
  121. /**
  122. * 裁剪图片
  123. * @param integer $w 裁剪区域宽度
  124. * @param integer $h 裁剪区域高度
  125. * @param integer $x 裁剪区域x坐标
  126. * @param integer $y 裁剪区域y坐标
  127. * @param integer $width 图片保存宽度
  128. * @param integer $height 图片保存高度
  129. * @return Object 当前图片处理库对象
  130. */
  131. public function crop($w, $h, $x = 0, $y = 0, $width = null, $height = null){
  132. $this->img->crop($w, $h, $x, $y, $width, $height);
  133. return $this;
  134. }
  135. /**
  136. * 生成缩略图
  137. * @param integer $width 缩略图最大宽度
  138. * @param integer $height 缩略图最大高度
  139. * @param integer $type 缩略图裁剪类型
  140. * @return Object 当前图片处理库对象
  141. */
  142. public function thumb($width, $height, $type = self::IMAGE_THUMB_SCALE){
  143. $this->img->thumb($width, $height, $type);
  144. return $this;
  145. }
  146. /**
  147. * 添加水印
  148. * @param string $source 水印图片路径
  149. * @param integer $locate 水印位置
  150. * @param integer $alpha 水印透明度
  151. * @return Object 当前图片处理库对象
  152. */
  153. public function water($source, $locate = self::IMAGE_WATER_SOUTHEAST,$alpha=80){
  154. $this->img->water($source, $locate,$alpha);
  155. return $this;
  156. }
  157. /**
  158. * 图像添加文字
  159. * @param string $text 添加的文字
  160. * @param string $font 字体路径
  161. * @param integer $size 字号
  162. * @param string $color 文字颜色
  163. * @param integer $locate 文字写入位置
  164. * @param integer $offset 文字相对当前位置的偏移量
  165. * @param integer $angle 文字倾斜角度
  166. * @return Object 当前图片处理库对象
  167. */
  168. public function text($text, $font, $size, $color = '#00000000',
  169. $locate = self::IMAGE_WATER_SOUTHEAST, $offset = 0, $angle = 0){
  170. $this->img->text($text, $font, $size, $color, $locate, $offset, $angle);
  171. return $this;
  172. }
  173. }