]> git.mxchange.org Git - friendica.git/blob - include/Photo.php
issues with private photos - hitting internal size limits
[friendica.git] / include / Photo.php
1 <?php
2
3 if(! class_exists("Photo")) {
4 class Photo {
5
6         private $image;
7         private $width;
8         private $height;
9         private $valid;
10
11         public function __construct($data) {
12                 $this->valid = false;
13                 $this->image = @imagecreatefromstring($data);
14                 if($this->image !== FALSE) {
15                         $this->width  = imagesx($this->image);
16                         $this->height = imagesy($this->image);
17                         $this->valid  = true;
18                 }
19         }
20
21         public function __destruct() {
22                 if($this->image)
23                         imagedestroy($this->image);
24         }
25
26         public function is_valid() {
27                 return $this->valid;
28         }
29
30         public function getWidth() {
31                 return $this->width;
32         }
33
34         public function getHeight() {
35                 return $this->height;
36         }
37
38         public function getImage() {
39                 return $this->image;
40         }
41
42         public function scaleImage($max) {
43
44                 $width = $this->width;
45                 $height = $this->height;
46
47                 $dest_width = $dest_height = 0;
48
49                 if((! $width)|| (! $height))
50                         return FALSE;
51
52                 if($width > $max && $height > $max) {
53                         if($width > $height) {
54                                 $dest_width = $max;
55                                 $dest_height = intval(( $height * $max ) / $width);
56                         }
57                         else {
58                                 $dest_width = intval(( $width * $max ) / $height);
59                                 $dest_height = $max;
60                         }
61                 }
62                 else {
63                         if( $width > $max ) {
64                                 $dest_width = $max;
65                                 $dest_height = intval(( $height * $max ) / $width);
66                         }
67                         else {
68                                 if( $height > $max ) {
69                                         $dest_width = intval(( $width * $max ) / $height);
70                                         $dest_height = $max;
71                                 }
72                                 else {
73                                         $dest_width = $width;
74                                         $dest_height = $height;
75                                 }
76                         }
77                 }
78
79
80                 $dest = imagecreatetruecolor( $dest_width, $dest_height );
81                 imagecopyresampled($dest, $this->image, 0, 0, 0, 0, $dest_width, $dest_height, $width, $height);
82                 if($this->image)
83                         imagedestroy($this->image);
84                 $this->image = $dest;
85                 $this->width  = imagesx($this->image);
86                 $this->height = imagesy($this->image);
87
88         }
89
90
91
92         public function scaleImageUp($min) {
93
94                 $width = $this->width;
95                 $height = $this->height;
96
97                 $dest_width = $dest_height = 0;
98
99                 if((! $width)|| (! $height))
100                         return FALSE;
101
102                 if($width < $min && $height < $min) {
103                         if($width > $height) {
104                                 $dest_width = $min;
105                                 $dest_height = intval(( $height * $min ) / $width);
106                         }
107                         else {
108                                 $dest_width = intval(( $width * $min ) / $height);
109                                 $dest_height = $min;
110                         }
111                 }
112                 else {
113                         if( $width < $min ) {
114                                 $dest_width = $min;
115                                 $dest_height = intval(( $height * $min ) / $width);
116                         }
117                         else {
118                                 if( $height < $min ) {
119                                         $dest_width = intval(( $width * $min ) / $height);
120                                         $dest_height = $min;
121                                 }
122                                 else {
123                                         $dest_width = $width;
124                                         $dest_height = $height;
125                                 }
126                         }
127                 }
128
129
130                 $dest = imagecreatetruecolor( $dest_width, $dest_height );
131                 imagecopyresampled($dest, $this->image, 0, 0, 0, 0, $dest_width, $dest_height, $width, $height);
132                 if($this->image)
133                         imagedestroy($this->image);
134                 $this->image = $dest;
135                 $this->width  = imagesx($this->image);
136                 $this->height = imagesy($this->image);
137
138         }
139
140
141
142         public function scaleImageSquare($dim) {
143
144                 $dest = imagecreatetruecolor( $dim, $dim );
145                 imagecopyresampled($dest, $this->image, 0, 0, 0, 0, $dim, $dim, $this->width, $this->height);
146                 if($this->image)
147                         imagedestroy($this->image);
148                 $this->image = $dest;
149                 $this->width  = imagesx($this->image);
150                 $this->height = imagesy($this->image);
151         }
152
153
154         public function cropImage($max,$x,$y,$w,$h) {
155                 $dest = imagecreatetruecolor( $max, $max );
156                 imagecopyresampled($dest, $this->image, 0, 0, $x, $y, $max, $max, $w, $h);
157                 if($this->image)
158                         imagedestroy($this->image);
159                 $this->image = $dest;
160                 $this->width  = imagesx($this->image);
161                 $this->height = imagesy($this->image);
162         }
163
164         public function saveImage($path) {
165                 $quality = get_config('system','jpeg_quality');
166                 if((! $quality) || ($quality > 100))
167                         $quality = JPEG_QUALITY;
168                 imagejpeg($this->image,$path,$quality);
169         }
170
171         public function imageString() {
172                 ob_start();
173
174                 $quality = get_config('system','jpeg_quality');
175                 if((! $quality) || ($quality > 100))
176                         $quality = JPEG_QUALITY;
177
178                 imagejpeg($this->image,NULL,$quality);
179                 $s = ob_get_contents();
180                 ob_end_clean();
181                 return $s;
182         }
183
184
185
186         public function store($uid, $cid, $rid, $filename, $album, $scale, $profile = 0, $allow_cid = '', $allow_gid = '', $deny_cid = '', $deny_gid = '') {
187
188                 $r = q("INSERT INTO `photo`
189                         ( `uid`, `contact-id`, `resource-id`, `created`, `edited`, `filename`, `album`, `height`, `width`, `data`, `scale`, `profile`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid` )
190                         VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', %d, %d, '%s', '%s', '%s', '%s' )",
191                         intval($uid),
192                         intval($cid),
193                         dbesc($rid),
194                         dbesc(datetime_convert()),
195                         dbesc(datetime_convert()),
196                         dbesc(basename($filename)),
197                         dbesc($album),
198                         intval($this->height),
199                         intval($this->width),
200                         dbesc($this->imageString()),
201                         intval($scale),
202                         intval($profile),
203                         dbesc($allow_cid),
204                         dbesc($allow_gid),
205                         dbesc($deny_cid),
206                         dbesc($deny_gid)
207                 );
208                 return $r;
209         }
210
211
212
213
214
215 }}
216
217
218 function import_profile_photo($photo,$uid,$cid) {
219
220         $a = get_app();
221
222         $photo_failure = false;
223
224         $filename = basename($photo);
225         $img_str = fetch_url($photo,true);
226         $img = new Photo($img_str);
227         if($img->is_valid()) {
228
229                 $img->scaleImageSquare(175);
230                                         
231                 $hash = photo_new_resource();
232
233                 $r = $img->store($uid, $cid, $hash, $filename, t('Contact Photos'), 4 );
234
235                 if($r === false)
236                         $photo_failure = true;
237
238                 $img->scaleImage(80);
239
240                 $r = $img->store($uid, $cid, $hash, $filename, t('Contact Photos'), 5 );
241
242                 if($r === false)
243                         $photo_failure = true;
244
245                 $img->scaleImage(48);
246
247                 $r = $img->store($uid, $cid, $hash, $filename, t('Contact Photos'), 6 );
248
249                 if($r === false)
250                         $photo_failure = true;
251
252
253
254                 $photo = $a->get_baseurl() . '/photo/' . $hash . '-4.jpg';
255                 $thumb = $a->get_baseurl() . '/photo/' . $hash . '-5.jpg';
256                 $micro = $a->get_baseurl() . '/photo/' . $hash . '-6.jpg';
257         }
258         else
259                 $photo_failure = true;
260
261         if($photo_failure) {
262                 $photo = $a->get_baseurl() . '/images/default-profile.jpg';
263                 $thumb = $a->get_baseurl() . '/images/default-profile-sm.jpg';
264                 $micro = $a->get_baseurl() . '/images/default-profile-mm.jpg';
265         }
266
267         return(array($photo,$thumb,$micro));
268
269 }