-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathUploadForm.php
173 lines (143 loc) · 6 KB
/
UploadForm.php
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<?php
namespace daimakuai\avatar;
use Yii;
use yii\base\Model;
class UploadForm extends Model
{
/**
* @var UploadedFile
*/
public $imageFile;
public $avatarData;
public $config;
public $imageUrl;
public $_lastError;
public function rules()
{
return [
[['avatarData','config'], 'required'],
[['imageFile'], 'file', 'skipOnEmpty' => false, 'extensions' => 'png, jpg, jpeg, gif'],
];
}
/**
* 图片上传
* @throws \Exception
* @return boolean
*/
public function upload()
{
try{
$userId = isset(Yii::$app->user->identity->id)?Yii::$app->user->identity->id:"000000";
$path = $this->config['uploadPath'].'/'.$userId;
if(!$this->mkDirs($path)){
throw new \Exception('上传目录生成失败!');
}
//图片裁剪
$bigImage = $this->crop();
//配置大中小图上传路径
$bigImageUrl = $path.'/'.date("YmdHis") . '_big'.'.'.$this->imageFile->extension;
$middleImageUrl = $path.'/'.date("YmdHis") . '_middle'.'.'.$this->imageFile->extension;
$smallImageUrl = $path.'/'.date("YmdHis") . '_small'.'.'.$this->imageFile->extension;
//生成缩略中小图
$middleImage = imagecreatetruecolor($this->config['middleImageWidth'], $this->config['middleImageHeight']);
$smallImage = imagecreatetruecolor($this->config['smallImageWidth'], $this->config['smallImageHeight']);
imagecopyresampled($middleImage, $bigImage, 0, 0, 0, 0, $this->config['middleImageWidth'], $this->config['middleImageHeight'], $this->config['bigImageWidth'], $this->config['bigImageHeight']);
imagecopyresampled($smallImage, $bigImage, 0, 0, 0, 0, $this->config['smallImageWidth'], $this->config['smallImageHeight'], $this->config['bigImageWidth'], $this->config['bigImageHeight']);
//图片移动到对应目录
if (!imagepng($bigImage, $bigImageUrl)||!imagepng($middleImage, $middleImageUrl) ||!imagepng($smallImage, $smallImageUrl)) {
throw new \Exception('上传失败!');
}
$this->imageUrl = '/'.$bigImageUrl;
return true;
}catch (\Exception $e){
$this->_lastError = $e->getMessage();
return false;
}
}
private function mkDirs($dir){
if(!is_dir($dir)){
if(!$this->mkDirs(dirname($dir))){
return false;
}
if(!mkdir($dir,0777)){
return false;
}
}
return true;
}
/**
* bool imagecopyresampled ( resource $dst_image , resource $src_image , int $dst_x , int $dst_y , int $src_x , int $src_y , int $dst_w , int $dst_h , int $src_w , int $src_h )
* $dst_image:新建的图片
* $src_image:需要载入的图片
* $dst_x:设定需要载入的图片在新图中的x坐标
* $dst_y:设定需要载入的图片在新图中的y坐标
* $src_x:设定载入图片要载入的区域x坐标
* $src_y:设定载入图片要载入的区域y坐标
* $dst_w:设定载入的原图的宽度(在此设置缩放)
* $dst_h:设定载入的原图的高度(在此设置缩放)
* $src_w:原图要载入的宽度
* $src_h:原图要载入的高度
*/
public function crop()
{
$data = json_decode($this->avatarData);
$size = getimagesize($this->imageFile->tempName);
switch ($size['mime']) {
case 'image/gif':
$src_img = imagecreatefromgif($this->imageFile->tempName);
break;
case 'image/jpeg':
$src_img = imagecreatefromjpeg($this->imageFile->tempName);
break;
case 'image/jpg':$dm = imagecreatefromjpeg($this->imageFile->tempName);
break;
case 'image/png':
$src_img = imagecreatefrompng($this->imageFile->tempName);
break;
}
$size_w = $size[0]; // natural width
$size_h = $size[1]; // natural height
$src_img_w = $size_w;
$src_img_h = $size_h;
$tmp_img_w = $data -> width;
$tmp_img_h = $data -> height;
$dst_img_w = $this->config['bigImageWidth'];
$dst_img_h = $this->config['bigImageHeight'];;
$src_x = $data -> x;
$src_y = $data -> y;
if ($src_x <= -$tmp_img_w || $src_x > $src_img_w) {
$src_x = $src_w = $dst_x = $dst_w = 0;
} else if ($src_x <= 0) {
$dst_x = -$src_x;
$src_x = 0;
$src_w = $dst_w = min($src_img_w, $tmp_img_w + $src_x);
} else if ($src_x <= $src_img_w) {
$dst_x = 0;
$src_w = $dst_w = min($tmp_img_w, $src_img_w - $src_x);
}
if ($src_w <= 0 || $src_y <= -$tmp_img_h || $src_y > $src_img_h) {
$src_y = $src_h = $dst_y = $dst_h = 0;
} else if ($src_y <= 0) {
$dst_y = -$src_y;
$src_y = 0;
$src_h = $dst_h = min($src_img_h, $tmp_img_h + $src_y);
} else if ($src_y <= $src_img_h) {
$dst_y = 0;
$src_h = $dst_h = min($tmp_img_h, $src_img_h - $src_y);
}
$ratio = $tmp_img_w / $dst_img_w;
$dst_x /= $ratio;
$dst_y /= $ratio;
$dst_w /= $ratio;
$dst_h /= $ratio;
$dst_img = imagecreatetruecolor($dst_img_w, $dst_img_h);
imagefill($dst_img, 0, 0, imagecolorallocatealpha($dst_img, 0, 0, 0, 127));
imagesavealpha($dst_img, true);
$result = imagecopyresampled($dst_img, $src_img, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h);
if ($result) {
return $dst_img;
} else {
return null;
}
}
}