初始化仓库

This commit is contained in:
wangxiaowei
2025-04-22 14:09:52 +08:00
commit 8b100110bb
5155 changed files with 664201 additions and 0 deletions

View File

@ -0,0 +1,87 @@
<?php
namespace Qcloud\Cos\ImageParamTemplate;
class BlindWatermarkTemplate extends ImageTemplate {
private $markType;
private $type;
private $image;
private $text;
private $level;
public function __construct() {
parent::__construct();
$this->markType = 3;
$this->type = "";
$this->image = "";
$this->text = "";
$this->level = "";
}
public function setPick() {
$this->markType = 4;
}
public function setType($value) {
$this->type = "/type/" . $value;
}
public function setImage($value) {
$this->image = "/image/" . $this->ciBase64($value);
}
public function setText($value) {
$this->text = "/text/" . $this->ciBase64($value);
}
public function setLevel($value) {
$this->level = "/level/" . $value;
}
public function getType() {
return $this->type;
}
public function getImage() {
return $this->image;
}
public function getText() {
return $this->text;
}
public function getLevel() {
return $this->level;
}
public function queryString() {
$head = "watermark/$this->markType";
$res = "";
if($this->type){
$res .= $this->type;
}
if($this->image){
$res .= $this->image;
}
if($this->text){
$res .= $this->text;
}
if($this->level){
$res .= $this->level;
}
if($res){
$res = $head . $res;
}
return $res;
}
public function resetRule() {
$this->markType = 3;
$this->type = "";
$this->image = "";
$this->text = "";
$this->level = "";
}
}

View File

@ -0,0 +1,39 @@
<?php
namespace Qcloud\Cos\ImageParamTemplate;
class CIParamTransformation extends ImageTemplate{
private $tranParams;
private $tranString;
private $spilt;
public function __construct($spilt = "|") {
parent::__construct();
$this->spilt = $spilt;
$this->tranParams = array();
$this->tranString = "";
}
public function addRule(ImageTemplate $template) {
if($template->queryString()){
$this->tranParams[] = $template->queryString();
}
}
public function queryString() {
if($this->tranParams) {
$this->tranString = implode($this->spilt, $this->tranParams);
}
return $this->tranString;
}
public function resetRule() {
$this->tranParams = array();
$this->tranString = "";
}
public function defineRule($value) {
$this->tranParams[] = $value;
}
}

View File

@ -0,0 +1,31 @@
<?php
namespace Qcloud\Cos\ImageParamTemplate;
class CIProcessTransformation extends ImageTemplate{
private $tranParams = array();
private $tranString;
public function __construct($ciProcess) {
parent::__construct();
$this->tranParams['ci-process'] = $ciProcess;
$this->tranString = "";
}
public function addParam($name, $value, $base64 = false) {
if(is_string($name) && strlen($name) > 0){
if($base64) {
$value = $this->ciBase64($value);
}
$this->tranParams[$name] = $value;
}
}
public function queryString() {
if($this->tranParams) {
$this->tranString = http_build_query($this->tranParams);
}
return $this->tranString;
}
}

View File

@ -0,0 +1,374 @@
<?php
namespace Qcloud\Cos\ImageParamTemplate;
/**
* Class ImageMogrTemplate imageMogr2 接口参数
* @package Qcloud\Cos\ImageParamTemplate
*/
class ImageMogrTemplate extends ImageTemplate
{
private $tranParams;
private $tranString;
public function __construct() {
parent::__construct();
$this->tranParams = array();
$this->tranString = "";
}
/**
* 指定图片的宽高为原图的 Scale%
* @param $widthScale
*/
public function thumbnailByScale($widthScale) {
$this->tranParams[] = "/thumbnail/!" . $widthScale . "p";
}
/**
* 指定图片的宽为原图的 Scale%,高度不变
* @param $heightScale
*/
public function thumbnailByWidthScale($heightScale) {
$this->tranParams[] = "/thumbnail/!" . $heightScale . "px";
}
/**
* 指定图片的高为原图的 Scale%,宽度不变
* @param $scale
*/
public function thumbnailByHeightScale($scale) {
$this->tranParams[] = "/thumbnail/!x" . $scale . "p";
}
/**
* 指定目标图片宽度为 Width高度等比缩放
* @param $width
*/
public function thumbnailByWidth($width) {
$this->tranParams[] = "/thumbnail/" . $width . "x";
}
/**
* 指定目标图片高度为 Height宽度等比缩放
* @param $height
*/
public function thumbnailByHeight($height) {
$this->tranParams[] = "/thumbnail/x" . $height;
}
/**
* 限定缩略图的宽度和高度的最大值分别为 Width 和 Height进行等比缩放
* @param $maxW
* @param $maxH
*/
public function thumbnailByMaxWH($maxW, $maxH) {
$this->tranParams[] = "/thumbnail/" . $maxW . "x" . $maxH;
}
/**
* 限定缩略图的宽度和高度的最小值分别为 Width 和 Height进行等比缩放
* @param $minW
* @param $minH
*/
public function thumbnailByMinWH($minW, $minH) {
$this->tranParams[] = "/thumbnail/!" . $minW . "x" . $minH . "r" ;
}
/**
* 忽略原图宽高比例,指定图片宽度为 Width高度为 Height强行缩放图片可能导致目标图片变形
* @param $width
* @param $height
*/
public function thumbnailByWH($width, $height) {
$this->tranParams[] = "/thumbnail/" . $width . "x" . $height . "!";
}
/**
* 限定缩略图的宽度和高度的最大值分别为 Width 和 Height进行等比缩小比例值为宽缩放比和高缩放比的较小值如果目标宽都大于原图宽则不变
* @param $width
* @param $height
*/
public function thumbnailEqualRatioReduceByWH($width, $height) {
$this->tranParams[] = "/thumbnail/{$width}x{$height}>";
}
/**
* 限定缩略图的宽度和高度的最大值分别为 Width 和 Height进行等比放大比例值为宽缩放比和高缩放比的较小值。如果目标宽(高)小于原图宽(高),则不变
* @param $width
* @param $height
*/
public function thumbnailEqualRatioEnlargeByWH($width, $height) {
$this->tranParams[] = "/thumbnail/{$width}x{$height}<";
}
/**
* 等比缩放图片,缩放后的图像,总像素数量不超过 $pixel
* @param $pixel
*/
public function thumbnailByPixel($pixel) {
$this->tranParams[] = "/thumbnail/" . $pixel . "@";
}
/**
* 将原图缩放为指定 Width 和 Height 的矩形内的最大图片,之后使用 color 参数指定的颜色居中填充空白部分取值0或10代表不使用 pad 模式1代表使用 pad 模式
* @param $is
*/
public function pad($is) {
$this->tranParams[] = "/pad/{$is}";
}
/**
* 填充颜色,缺省为白色,需设置为十六进制 RGB 格式(如 #FF0000详情参考 RGB 编码表,需经过 URL 安全的 Base64 编码,默认值为 #3D3D3D
* @param $rgb
*/
public function color($rgb) {
$rgb = $this->ciBase64($rgb);
$this->tranParams[] = "/color/{$rgb}";
}
/**
* 当处理参数中携带此参数时,针对文件过大、参数超限等导致处理失败的场景,会直接返回原图而不报错
*/
public function ignoreError() {
$this->tranParams[] = "/ignore-error/1";
}
/**
* 普通裁剪参数说明 操作名称cut
* @param $width
* @param $height
* @param $dx
* @param $dy
*/
public function cut($width, $height, $dx, $dy) {
$this->tranParams[] = "/cut/" . $width . "x" . "$height" . "x" . $dx . "x" . $dy;
}
/**
* 指定目标图片宽度为 Width高度不变。Width 取值范围应大于0小于原图宽度
* @param $width
* @param string $gravity 指定操作的起点位置
*/
public function cropByWidth($width, $gravity = "") {
$temp = "/crop/" . $width . "x";
if($gravity){
$temp .= "/gravity/" . $gravity;
}
$this->tranParams[] = $temp;
}
/**
* 指定目标图片高度为 Height宽度不变。Height 取值范围应大于0小于原图高度
* @param $height
* @param string $gravity 指定操作的起点位置
*/
public function cropByHeight($height, $gravity = "") {
$temp = "/crop/x" . $height;
if($gravity){
$temp .= "/gravity/" . $gravity;
}
$this->tranParams[] = $temp;
}
/**
* 指定目标图片宽度为 Width高度为 Height 。Width 和 Height 取值范围都应大于0小于原图宽度/高度
* @param $width
* @param $height
* @param string $gravity 指定操作的起点位置
*/
public function cropByWH($width, $height, $gravity = "") {
$temp = "/crop/" . $width . "x" . $height;
if($gravity){
$temp .= "/gravity/" . $gravity;
}
$this->tranParams[] = $temp;
}
/**
* 内切圆裁剪功能radius 是内切圆的半径取值范围为大于0且小于原图最小边一半的整数。内切圆的圆心为图片的中心。图片格式为 gif 时,不支持该参数。
* @param $radius
*/
public function iradius($radius) {
$this->tranParams[] = "/iradius/" . $radius;
}
/**
* 圆角裁剪功能radius 为图片圆角边缘的半径取值范围为大于0且小于原图最小边一半的整数。圆角与原图边缘相切。图片格式为 gif 时,不支持该参数。
* @param $radius
*/
public function rradius($radius) {
$this->tranParams[] = "/rradius/" . $radius;
}
/**
* 基于图片中的人脸位置进行缩放裁剪。目标图片的宽度为 Width、高度为 Height。
* @param $width
* @param $height
*/
public function scrop($width, $height) {
$this->tranParams[] = "/scrop/" . $width . "x" . $height;
}
/**
* 普通旋转图片顺时针旋转角度取值范围0 - 360默认不旋转。
* @param $degree
*/
public function rotate($degree) {
$this->tranParams[] = "/rotate/" . $degree;
}
/**
* 自适应旋转:根据原图 EXIF 信息将图片自适应旋转回正。
*/
public function autoOrient() {
$this->tranParams[] = "/auto-orient";
}
/**
* 镜像翻转flip 值为 vertical 表示垂直翻转horizontal 表示水平翻转
* @param $flip
*/
public function flip($flip) {
$this->tranParams[] = "/flip/" . $flip;
}
/**
* 格式转换目标缩略图的图片格式可为jpgbmpgifpngwebpyjpeg 等,其中 yjpeg 为数据万象针对 jpeg 格式进行的优化,本质为 jpg 格式;缺省为原图格式。
* @param $format
*/
public function format($format) {
$this->tranParams[] = "/format/" . $format;
}
/**
* gif 格式优化:只针对原图为 gif 格式,对 gif 图片格式进行的优化,降帧降颜色。分为以下两种情况:
* FrameNumber=1则按照默认帧数30处理如果图片帧数大于该帧数则截取。
* FrameNumber 取值( 1,100 ],则将图片压缩到指定帧数 FrameNumber
* @param $frameNumber
*/
public function gifOptimization($frameNumber) {
$this->tranParams[] = "/cgif/" . $frameNumber;
}
/**
* 输出为渐进式 jpg 格式。Mode 可为0或1。0表示不开启渐进式1表示开启渐进式。该参数仅在输出图片格式为 jpg 格式时有效。如果输出非 jpg 图片格式会忽略该参数默认值0。
* @param $mode
*/
public function jpegInterlaceMode($mode) {
$this->tranParams[] = "/interlace/" . $mode;
}
/**
* 图片的绝对质量取值范围0 - 100默认值为原图质量取原图质量和指定质量的最小值<Quality>后面加“!”表示强制使用指定值例如90!。
* @param $value
* @param int $force
*/
public function quality($value, $force = 0) {
$temp = "/quality/" . $value;
if($force){
$temp .= "!";
}
$this->tranParams[] = $temp;
}
/**
* 图片的最低质量取值范围0 - 100设置结果图的质量参数最小值。
* 例如原图质量为85将 lquality 设置为80后处理结果图的图片质量为85。
* 例如原图质量为60将 lquality 设置为80后处理结果图的图片质量会被提升至80。
* @param $value
*/
public function lowestQuality($value) {
$this->tranParams[] = "/lquality/" . $value;
}
/**
* 图片的相对质量取值范围0 - 100数值以原图质量为标准。例如原图质量为80将 rquality 设置为80后得到处理结果图的图片质量为6480x80%)。
* @param $value
*/
public function relativelyQuality($value) {
$this->tranParams[] = "/rquality/" . $value;
}
/**
* 高斯模糊
* @param $radius integer|float 模糊半径取值范围为1 - 50
* @param $sigma integer|float 正态分布的标准差必须大于0
*/
public function blur($radius, $sigma) {
$this->tranParams[] = "/blur/" . $radius . "x" . $sigma;
}
/**
* 图片亮度调节功能value 为亮度参数值,取值范围为[-100, 100]的整数。
* 取值0降低图片亮度。
* 取值 = 0不调整图片亮度。
* 取值0提高图片亮度。
* @param $value
*/
public function bright($value) {
$this->tranParams[] = "/bright/" . $value;
}
/**
* 图片对比度调节功能value 为对比度参数值,取值范围为[-100, 100]的整数。
* 取值0降低图片对比度。
* 取值 = 0不调整图片对比度。
* 取值0提高图片对比度。
* @param $value
*/
public function contrast($value) {
$this->tranParams[] = "/contrast/" . $value;
}
/**
* 图片锐化功能value 为锐化参数值取值范围为10 - 300间的整数推荐使用70。参数值越大锐化效果越明显。
* @param $value
*/
public function sharpen($value) {
$this->tranParams[] = "/sharpen/" . $value;
}
/**
* 将图片设置为灰度图。 value 取值为0表示不改变图片。 value 取值为1表示将图片变为灰度图。
* @param $value
*/
public function grayscale($value) {
$this->tranParams[] = "/grayscale/" . $value;
}
/**
* 去除图片元信息,包括 exif 信息
*/
public function strip() {
$this->tranParams[] = "/strip";
}
/**
* 限制图片转换后的大小支持以兆字节m和千字节k为单位
* 1. 仅支持 JPG 格式的图片,可以用于限制处理后图片的大小
* 2. 若在尾部加上!表示用处理后的图片大小与原图大小做比较如果处理后的图片比原图小则返回处理后的图片否则返回原图。例如examplebucket-1250000000.cos.ap-shanghai.myqcloud.com/picture.jpg?imageMogr2/size-limit/15k!
* 3. 建议搭配strip参数使用去除图片的一些冗余信息会有更好的效果。例如examplebucket-1250000000.cos.ap-shanghai.myqcloud.com/picture.jpg?imageMogr2/strip/format/png/size-limit/15k!
* @param $value
* @param int $compare
*/
public function sizeLimit($value, $compare = 0) {
$temp = "/size-limit/" . $value;
if($compare){
$temp .= "!";
}
$this->tranParams[] = $temp;
}
public function queryString() {
if($this->tranParams) {
$this->tranString = "imageMogr2" . implode("", $this->tranParams);
}
return $this->tranString;
}
public function resetRule() {
$this->tranString = "";
$this->tranParams = array();
}
}

View File

@ -0,0 +1,37 @@
<?php
namespace Qcloud\Cos\ImageParamTemplate;
class ImageQrcodeTemplate extends ImageTemplate
{
private $mode;
public function __construct() {
parent::__construct();
$this->mode = "";
}
public function setMode($mode) {
$this->mode = "/cover/" . $mode;
}
public function getMode() {
return $this->mode;
}
public function queryString() {
$head = "QRcode";
$res = "";
if($this->mode) {
$res .= $this->mode;
}
if($res) {
$res = $head . $res;
}
return $res;
}
public function resetRule() {
$this->mode = "";
}
}

View File

@ -0,0 +1,33 @@
<?php
namespace Qcloud\Cos\ImageParamTemplate;
class ImageStyleTemplate extends ImageTemplate
{
private $style;
public function __construct() {
parent::__construct();
$this->style = "";
}
public function setStyle($styleName) {
$this->style = "style/" . $styleName;
}
public function getStyle() {
return $this->style;
}
public function queryString() {
$res = "";
if($this->style) {
$res = $this->style;
}
return $res;
}
public function resetRule() {
$this->style = "";
}
}

View File

@ -0,0 +1,18 @@
<?php
namespace Qcloud\Cos\ImageParamTemplate;
class ImageTemplate
{
public function __construct() {
}
public function queryString() {
return "";
}
public function ciBase64($value) {
return str_replace("/", "_", str_replace("+", "-", base64_encode($value)));
}
}

View File

@ -0,0 +1,115 @@
<?php
namespace Qcloud\Cos\ImageParamTemplate;
/**
* Parses default XML exception responses
*/
class ImageViewTemplate extends ImageTemplate
{
private $mode;
private $width;
private $height;
private $format;
private $quality;
private $ignoreError;
public function __construct() {
parent::__construct();
$this->mode = "";
$this->width = "";
$this->height = "";
$this->format = "";
$this->quality = "";
$this->ignoreError = "";
}
public function setMode($value) {
$this->mode = "/" . $value;
}
public function setWidth($value) {
$this->width = "/w/" . $value;
}
public function setHeight($value) {
$this->height = "/h/" . $value;
}
public function setFormat($value) {
$this->format = "/format/" . $value;
}
public function setQuality($qualityType, $qualityValue, $force = 0) {
if($qualityType == 1){
$this->quality = "/q/$qualityValue" ;
if($force){
$this->quality .= "!";
}
}else if($qualityType == 2){
$this->quality = "/rq/$qualityValue" ;
}else if ($qualityType == 3){
$this->quality = "/lq/$qualityValue" ;
}
}
public function ignoreError() {
$this->ignoreError = '/ignore-error/1';
}
public function getMode() {
return $this->mode;
}
public function getWidth() {
return $this->width;
}
public function getHeight() {
return $this->height;
}
public function getFormat() {
return $this->format;
}
public function getQuality() {
return $this->quality;
}
public function queryString() {
$head = "imageView2";
$res = "";
if($this->mode) {
$res .= $this->mode;
}
if($this->width) {
$res .= $this->width;
}
if($this->height) {
$res .= $this->height;
}
if($this->format) {
$res .= $this->format;
}
if($this->quality) {
$res .= $this->quality;
}
if($this->ignoreError) {
$res .= $this->ignoreError;
}
if($res) {
$res = $head . $res;
}
return $res;
}
public function resetRule() {
$this->mode = "";
$this->width = "";
$this->height = "";
$this->format = "";
$this->quality = "";
}
}

View File

@ -0,0 +1,212 @@
<?php
namespace Qcloud\Cos\ImageParamTemplate;
class ImageWatermarkTemplate extends ImageTemplate
{
private $image;
private $gravity;
private $dx;
private $dy;
private $blogo;
private $scatype;
private $spcent;
private $dissolve;
private $batch;
private $degree;
public function __construct() {
parent::__construct();
$this->image = "";
$this->gravity = "";
$this->dx = "";
$this->dy = "";
$this->blogo = "";
$this->scatype = "";
$this->spcent = "";
$this->dissolve = "";
$this->batch = "";
$this->degree = "";
}
/**
* 水印图片地址,需要经过 URL 安全的 Base64 编码。
* @param $value
*/
public function setImage($value) {
$this->image = "/image/" . $this->ciBase64($value);
}
/**
* 图片水印位置,九宫格位置(参考九宫格方位图 ),默认值 SouthEast
* @param $value
*/
public function setGravity($value) {
$this->gravity = "/gravity/" . $value;
}
/**
* 水平横轴边距单位为像素缺省值为0
* @param $value
*/
public function setDx($value) {
$this->dx = "/dx/" . $value;
}
/**
* 垂直纵轴边距单位为像素默认值为0
* @param $value
*/
public function setDy($value) {
$this->dy = "/dy/" . $value;
}
/**
* 水印图适配功能,适用于水印图尺寸过大的场景(如水印墙)。共有两种类型:
* 当 blogo 设置为1时水印图会被缩放至与原图相似大小后添加
* 当 blogo 设置为2时水印图会被直接裁剪至与原图相似大小后添加
* @param $value
*/
public function setBlogo($value) {
$this->blogo = "/blogo/" . $value;
}
/**
* 根据原图的大小,缩放调整水印图的大小:
* 当 scatype 设置为1时按原图的宽缩放
* 当 scatype 设置为2时按原图的高缩放
* 当 scatype 设置为3时按原图的整体面积缩放
* @param $value
*/
public function setScatype($value) {
$this->scatype = "/scatype/" . $value;
}
/**
* 与 scatype 搭配使用:
* 当 scatype 设置为1时该有效值为[1,1000],单位为千分比
* 当 scatype 设置为2时该有效值为[1,1000],单位为千分比
* 当 scatype 设置为3时该有效值为[1,250],单位为千分比。
* @param $value
*/
public function setSpcent($value) {
$this->spcent = "/spcent/" . $value;
}
/**
* 图片水印的透明度取值为1 - 100默认9090%不透明度)
* @param $value
*/
public function setDissolve($value) {
$this->dissolve = "/dissolve/" . $value;
}
/**
* 平铺水印功能可将图片水印平铺至整张图片。值为1时表示开启平铺水印功能
* @param $value
*/
public function setBatch($value) {
$this->batch = "/batch/" . $value;
}
/**
* 当 batch 值为1时生效。图片水印的旋转角度设置取值范围为0 - 360默认0
* @param $value
*/
public function setDegree($value) {
$this->degree = "/degree/" . $value;
}
public function getImage() {
return $this->image;
}
public function getGravity() {
return $this->gravity;
}
public function getDx() {
return $this->dx;
}
public function getDy() {
return $this->dy;
}
public function getBlogo() {
return $this->blogo;
}
public function getScatype() {
return $this->scatype;
}
public function getSpcent() {
return $this->spcent;
}
public function getDissolve() {
return $this->dissolve;
}
public function getBatch() {
return $this->batch;
}
public function getDegree() {
return $this->degree;
}
public function queryString() {
$head = "watermark/1";
$res = "";
if($this->image) {
$res .= $this->image;
}
if($this->gravity) {
$res .= $this->gravity;
}
if($this->dx) {
$res .= $this->dx;
}
if($this->dy) {
$res .= $this->dy;
}
if($this->blogo) {
$res .= $this->blogo;
}
if($this->scatype) {
$res .= $this->scatype;
}
if($this->spcent) {
$res .= $this->spcent;
}
if($this->dissolve) {
$res .= $this->dissolve;
}
if($this->batch) {
$res .= $this->batch;
}
if($this->degree) {
$res .= $this->degree;
}
if($res) {
$res = $head . $res;
}
return $res;
}
public function resetRule() {
$this->image = "";
$this->gravity = "";
$this->dx = "";
$this->dy = "";
$this->blogo = "";
$this->scatype = "";
$this->spcent = "";
$this->dissolve = "";
$this->batch = "";
$this->degree = "";
}
}

View File

@ -0,0 +1,64 @@
<?php
namespace Qcloud\Cos\ImageParamTemplate;
/**
* Class PicOperationsTransformation 图片处理参数 Pic-Operations
* @package Qcloud\Cos\ImageParamTemplate
*/
class PicOperationsTransformation {
private $isPicInfo;
private $rules;
public function __construct() {
$this->isPicInfo = 0;
$this->rules = array();
}
public function setIsPicInfo($value) {
$this->isPicInfo = $value;
}
public function addRule(ImageTemplate $template, $fileid = "", $bucket = "") {
$rule = $template->queryString();
if($rule){
$item = array();
$item['rule'] = $rule;
if($fileid){
$item['fileid'] = $fileid;
}
if($bucket) {
$item['bucket'] = $bucket;
}
$this->rules[] = $item;
}
}
public function getIsPicInfo() {
return $this->isPicInfo;
}
public function getRules() {
return $this->rules;
}
public function queryString() {
$res = "";
$picOperations = array();
if($this->isPicInfo){
$picOperations['is_pic_info'] = $this->isPicInfo;
}
if($this->rules){
$picOperations['rules'] = $this->rules;
}
if($picOperations){
$res = json_encode($picOperations);
}
return $res;
}
public function resetRule() {
$this->isPicInfo = 0;
$this->rules = array();
}
}

View File

@ -0,0 +1,208 @@
<?php
namespace Qcloud\Cos\ImageParamTemplate;
/**
* Parses default XML exception responses
*/
class TextWatermarkTemplate extends ImageTemplate
{
private $text;
private $font;
private $fontsize;
private $fill;
private $dissolve;
private $gravity;
private $dx;
private $dy;
private $batch;
private $degree;
private $shadow;
private $scatype;
private $spcent;
public function __construct() {
parent::__construct();
$this->text = "";
$this->font = "";
$this->fontsize = "";
$this->fill = "";
$this->dissolve = "";
$this->gravity = "";
$this->dx = "";
$this->dy = "";
$this->batch = "";
$this->degree = "";
$this->shadow = "";
$this->scatype = "";
$this->spcent = "";
}
public function setText($value) {
$this->text = "/text/" . $this->ciBase64($value);
}
public function setFont($value) {
$this->font = "/font/" . $this->ciBase64($value);
}
public function setFontsize($value) {
$this->fontsize = "/fontsize/" . $value;
}
public function setFill($value) {
$this->fill = "/fill/" . $this->ciBase64($value);
}
public function setDissolve($value) {
$this->dissolve = "/dissolve/" . $value;
}
public function setGravity($value) {
$this->gravity = "/gravity/" . $value;
}
public function setDx($value) {
$this->dx = "/dx/" . $value;
}
public function setDy($value) {
$this->dy = "/dy/" . $value;
}
public function setBatch($value) {
$this->batch = "/batch/" . $value;
}
public function setDegree($value) {
$this->degree = "/degree/" . $value;
}
public function setShadow($value) {
$this->shadow = "/shadow/" . $value;
}
public function setScatype($value) {
$this->scatype = "/scatype/" . $value;
}
public function setSpcent($value) {
$this->spcent = "/spcent/" . $value;
}
public function getText() {
return $this->text;
}
public function getFont() {
return $this->font;
}
public function getFontsize() {
return $this->fontsize;
}
public function getFill() {
return $this->fill;
}
public function getDissolve() {
return $this->dissolve;
}
public function getGravity() {
return $this->gravity;
}
public function getDx() {
return $this->dx;
}
public function getDy() {
return $this->dy;
}
public function getBatch() {
return $this->batch;
}
public function getDegree() {
return $this->degree;
}
public function getShadow() {
return $this->shadow;
}
public function getScatype() {
return $this->scatype;
}
public function getSpcent() {
return $this->spcent;
}
public function queryString() {
$head = "watermark/2";
$res = "";
if($this->text) {
$res .= $this->text;
}
if($this->font) {
$res .= $this->font;
}
if($this->fontsize) {
$res .= $this->fontsize;
}
if($this->fill) {
$res .= $this->fill;
}
if($this->dissolve) {
$res .= $this->dissolve;
}
if($this->gravity) {
$res .= $this->gravity;
}
if($this->dx) {
$res .= $this->dx;
}
if($this->dy) {
$res .= $this->dy;
}
if($this->batch) {
$res .= $this->batch;
}
if($this->degree) {
$res .= $this->degree;
}
if($this->shadow) {
$res .= $this->shadow;
}
if($this->scatype) {
$res .= $this->scatype;
}
if($this->spcent) {
$res .= $this->spcent;
}
if($res) {
$res = $head . $res;
}
return $res;
}
public function resetRule() {
$this->text = "";
$this->font = "";
$this->fontsize = "";
$this->fill = "";
$this->dissolve = "";
$this->gravity = "";
$this->dx = "";
$this->dy = "";
$this->batch = "";
$this->degree = "";
$this->shadow = "";
$this->scatype = "";
$this->spcent = "";
}
}