ImageQrcodeTemplate.php
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
namespace Qcloud\Cos\ImageParamTemplate;
class ImageQrcodeTemplate extends ImageTemplate
{
private $cover;
private $barType;
private $segment;
private $size;
public function __construct() {
parent::__construct();
$this->cover = "";
$this->barType = "";
$this->segment = "";
$this->size = "";
}
public function setCover($cover) {
$this->cover = "/cover/" . $cover;
}
public function getCover() {
return $this->cover;
}
public function setBarType($barType) {
$this->barType = "/bar-type/" . $barType;
}
public function getBarType() {
return $this->barType;
}
public function setSegment($segment) {
$this->segment = "/segmente/" . $segment;
}
public function getSegment() {
return $this->segment;
}
public function setSize($size) {
$this->size = "/size/" . $size;
}
public function getSize() {
return $this->size;
}
public function queryString() {
$res = "QRcode";
if($this->cover) {
$res .= $this->cover;
}
if($this->barType) {
$res .= $this->barType;
}
if($this->segment) {
$res .= $this->segment;
}
if($this->size) {
$res .= $this->size;
}
return $res;
}
public function resetRule() {
$this->cover = "";
$this->barType = "";
$this->segment = "";
$this->size = "";
}
}