File: class.hft_image.php

package info (click to toggle)
collabtive 2.0%2Bdfsg-5
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 17,708 kB
  • ctags: 27,425
  • sloc: php: 100,872; sh: 72; makefile: 50
file content (322 lines) | stat: -rw-r--r-- 10,654 bytes parent folder | download | duplicates (2)
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
<?PHP
#require("hft_image_errors.php"); // here you can include your own language error file

//this class works with image
class hft_image {
	var $image_original;
	var $file_original;
	var $image_original_width;
	var $image_original_height;
	var $image_original_type_code;
	var $image_original_type_abbr;
	var $image_original_html_sizes;

	var $image_resized;
	var $file_resized;
	var $image_resized_width;
	var $image_resized_height;
	var $image_resized_type_code;
	var $image_resized_type_abbr;
	var $image_resized_html_sizes;

	//some settings
	var $jpeg_quality;
	var $use_gd2;


	function hft_image($file_original){
		//constructor of the class
		//it takes given file and creates image out of it
		global $ERR;
		$this->clear(); // clear all.

		if(file_exists($file_original))	{
			$this->file_original = $file_original;
			$this->image_original = $this->imagecreatefromfile($file_original);
			if(!$this->image_original){
				$this->error($ERR["IMAGE_NOT_CREATED_FROM_FILE"]." file=$file_original");
				return false;
			}
		} else {
			$this->error($ERR["FILE_DOESNOT_EXSIT"]." file=$file_original");
		}
	}

	function clear() {
		// clear all the class member variables
			$this->image_original			=	0;
			$this->file_original			=	"";
			$this->image_original_width		=	0;
			$this->image_original_height	=	0;
			$this->image_original_type_code	=	0;
			$this->image_original_type_abbr	=	"";
			$this->image_original_html_sizes=	"";

			$this->image_resized			=	0;
			$this->file_resized				=	"";
			$this->image_resized_width		=	0;
			$this->image_resized_height		=	0;
			$this->image_resized_type_code	=	-1;
			$this->image_resized_type_abbr	=	"";
			$this->image_resized_html_sizes	=	"";

			$this->set_parameters();
	}

	function set_parameters($jpeg_quality="90", $use_gd2=true) {
		$this->jpeg_quality=$jpeg_quality;
		$this->use_gd2=$use_gd2;
	}

	function error($msg){
		//error messages and debug info:
		// here you can implement your own error handling
		echo("<hr color='red'><font color='red'><b>$msg</b></font><br> file=<b>".__FILE__."</b><hr color='red'>");
	}

	function imagecreatefromfile($img_file){
		global $ERR;
		$img=0;
		$img_sz =  getimagesize( $img_file ); 	## returns array with some properties like dimensions and type;
		####### Now create original image from uploaded file. Be carefull! GIF is often not supported, as far as I remember from GD 1.6
		switch( $img_sz[2] ){
			case 1:
				$img = $this->_imagecheckandcreate("ImageCreateFromGif", $img_file);
				$img_type = "GIF";
			break;
			case 2:
				$img = $this->_imagecheckandcreate("ImageCreateFromJpeg", $img_file);
				$img_type = "JPG";
			break;
			case 3:
				$img = $this->_imagecheckandcreate("ImageCreateFromPng", $img_file);
				$img_type = "PNG";
			break;
			// would be nice if this function will be finally supported
			case 4:
				$img = $this->_imagecheckandcreate("ImageCreateFromSwf", $img_file);
				$img_type = "SWF";
			break;
			default:
				$img = 0;
				$img_type = "UNKNOWN";
				$this->error($ERR["IMG_NOT_SUPPORTED"]." $img_file");
				break;

		}//case

		if($img){
			$this->image_original_width=$img_sz[0];
			$this->image_original_height=$img_sz[1];
			$this->image_original_type_code=$img_sz[2];
			$this->image_original_type_abbr=$img_type;
			$this->image_original_html_sizes=$img_sz[3];
		}else {
			$this->clear();
		}

		return $img;
	}


	function _imagecheckandcreate($function, $img_file) {
		//inner function used from imagecreatefromfile().
		//Checks if the function exists and returns
		//created image or false
		global $ERR;
		if(function_exists($function)) {
			$img = $function($img_file);
		}else{
			$img = false;
			$this->error($ERR["FUNCTION_DOESNOT_EXIST"]." ".$function);
		}

		return $img;
	}

	function resize($desired_width, $desired_height, $mode="0"){
		//this is core function--it resizes created image
		//if any of parameters == "*" then no resizing on this parameter
		//>> mode = "+" then image is resized to cover the region specified by desired_width, _height
		//>> mode = "-" then image is resized to fit into the region specified by desired_width, _height
		// width-to-height ratio is all the time the same
		//>>mode=0 then image will be exactly resized to $desired_width _height.
		//geometrical distortion can occur in this case.
		// say u have picture 400x300 and there is circle on the picture
		//now u resized in mode=0 to 800x300 -- circle shape will be distorted and will look like ellipse.
		//GD2 provides much better quality but is not everywhere installed
		global $ERR;
		if($desired_width == "*" && $desired_height == "*"){
			$this->image_resized = $this->image_original;
			Return true;
		}
		switch($mode) {
			case "-":
			case '+':
				//multipliers
				if($desired_width != "*") $mult_x = $desired_width / $this->image_original_width;
				if($desired_height != "*") $mult_y = $desired_height / $this->image_original_height;
				$ratio = $this->image_original_width / $this->image_original_height;

				if($desired_width == "*"){
					$new_height = $desired_height;
					$new_width = $ratio * $desired_height;
				}elseif($desired_height == "*"){
					$new_height = $desired_width / $ratio;
					$new_width =  $desired_width;
				}else{
					if($mode=="-"){
							if( $this->image_original_height * $mult_x < $desired_height ){
							//image must be smaller than given $desired_ region
							//test which multiplier gives us best result

								//$mult_x does the job
								$new_width = $desired_width;
								$new_height = $this->image_original_height * $mult_x;
							}else{
								//$mult_y does the job
								$new_width = $this->image_original_width * $mult_y;
								$new_height = $desired_height;
							}
					}else{
						//mode == "+"
						// cover the region
						//image must be bigger than given $desired_ region
						//test which multiplier gives us best result
						if( $this->image_original_height * $mult_x > $desired_height ){
							//$mult_x does the job
							$new_width = $desired_width;
							$new_height = $this->image_original_height * $mult_x;
						}else{
							//$mult_y does the job
							$new_width = $this->image_original_width * $mult_y;
							$new_height = $desired_height;
						}

					}
				}
			break;

			case '0':
				//fit the region exactly.
				if($desired_width == "*") $desired_width = $this->image_original_width;
				if($desired_height == "*") $desired_height = $this->image_original_height;
				$new_width = $desired_width;
				$new_height = $desired_height;

			break;
			default:
				$this->error($ERR["UNKNOWN_RESIZE_MODE"]."  $mode");
			break;
		}

		// OK here we have $new_width _height
		//create destination image checking for GD2 functions:
		if( $this->use_gd2 ){
			if( function_exists("imagecreatetruecolor")){

				$this->image_resized = imagecreatetruecolor($new_width, $new_height) or $this->error($ERR["GD2_NOT_CREATED"]);
			}else {
				$this->error($ERR["GD2_UNAVALABLE"]." ImageCreateTruecolor()");
			}
		} else {
			$this->image_resized = imagecreate($new_width, $new_height) or $this->error($ERR["IMG_NOT_CREATED"]);
		}

		//Resize
		if( $this->use_gd2 ){
			if( function_exists("imagecopyresampled")){
				$res = imagecopyresampled($this->image_resized,
										  $this->image_original,
										  0, 0,  //dest coord
										  0, 0,			//source coord
										  $new_width, $new_height, //dest sizes
										  $this->image_original_width, $this->image_original_height // src sizes
										) or $this->error($ERR["GD2_NOT_RESIZED"]);
			}else {
				$this->error($ERR["GD2_UNAVALABLE"]." ImageCopyResampled()");
			}
		} else {
			$res = imagecopyresized($this->image_resized,
									  $this->image_original,
									  0, 0,  //dest coord
									  0, 0,			//source coord
									  $new_width, $new_height, //dest sizes
									  $this->image_original_width, $this->image_original_height // src sizes
									) or $this->error($ERR["IMG_NOT_RESIZED"]);
		}
	}

	function output_original($destination_file, $image_type="JPG") {
        //outputs original image
        //if destination file is empty  image will be output to browser
        // right now $image_type can be JPG or PNG
        return _output_image($destination_file, $image_type, $this->image_original);
    }

	function output_resized($destination_file, $image_type="JPG") {
        //if destination file is empty  image will be output to browser
        // right now $image_type can be JPG or PNG
        $res = $this->_output_image($destination_file, $image_type, $this->image_resized);
        if(trim($destination_file)){
            $sz=getimagesize($destination_file);
            $this->file_resized = $destination_file;
            $this->image_resized_width = $sz[0];
            $this->image_resized_height = $sz[1];
            $this->image_resized_type_code=$sz[2];
            $this->image_resized_html_sizes=$sz[3];
                //only jpeg and png are really supported, but I'd like to think of future
            switch($this->image_resized_html_sizes){
                case 0:
                    $this->image_resized_type_abbr = "GIF";
                break;
                case 1:
                    $this->image_resized_type_abbr = "JPG";
                break;
                case 2:
                    $this->image_resized_type_abbr = "PNG";
                break;
                case 3:
                    $this->image_resized_type_abbr = "SWF";
                break;
                default:
                    $this->image_resized_type_abbr = "UNKNOWN";
                break;
            }
        }
        return $res;
    }

    function _output_image($destination_file, $image_type, $image){
        //if destination file is empty  image will be output to browser
        // right now $image_type can be JPEG or PNG
        global $ERR;
		
        $destination_file = trim($destination_file);
		if (empty($destination_file)) {
			$destination_file = NULL;
		}
		
        $res = false;
        if($image){
            switch($image_type) {
                case 'JPEG':
                case 'JPG':
                    $res = ImageJpeg($image, $destination_file, $this->jpeg_quality);
                break;
                case 'PNG':
                    $res = Imagepng($image, $destination_file);
                break;
                default:
                    $this->error($ERR["UNKNOWN_OUTPUT_FORMAT"]." $image_type");
                break;
            }
        }else{
            $this->error($ERR["NO_IMAGE_FOR_OUTPUT"]);
        }
        if(!$res) $this->error($ERR["UNABLE_TO_OUTPUT"]." $destination_file");
        return $res;
    }
}

?>