image-resizer-function
Gesponsorde koppelingen
PHP script bestanden
Code (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
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
<?php
/***
* resizeImage (function)
*
* @Author: Henry v.d. Berg [email protected]
*
* Deze functie wijzigt de grootte van een JPG/PNG/GIF plaatje
*
* @param string: $sSrcPath: Locatie van het originele bestand, eindigend op de bestandsnaam incl. extentie
* @param string: $sDestPath: Locatie waar het ge-resized bestand wordt opgeslagen, ZONDER bestandsnaam of extentie, eindigend op '/'
* @param int: $iDestWidth: Maximale breedte van het uiteidelijke bestand
* @param int: $iDestHeight: Maximale hoogte van het uiteindelijke bestand
* @param int: $iDestQuality: De kwaliteit van het uiteindelijke bestand in procenten, standaard 75%
*
* @return boolean: TRUE or FALSE
***/
function resizeImage($sSrcPath, $sDestPath, $iDestWidth, $iDestHeight, $iDestQuality = 75) {
$aSrcMime = getimagesize($sSrcPath);
$aSrcName = array_pop(split("[/]", $sSrcPath));
$aSrcExtention = strtolower(array_pop(split("[.]", $sSrcPath)));
$sDestPath = $sDestPath . $aSrcName;
switch ($aSrcMime["mime"]) {
case "image/gif":
if ($aSrcExtention == "gif") {
$sSrcData = imagecreatefromgif($sSrcPath);
}
else {
return false;
}
break;
case "image/png":
if ($aSrcExtention == "png") {
$sSrcData = imagecreatefrompng($sSrcPath);
}
else {
return false;
}
break;
case "image/jpeg":
if ( ($aSrcExtention == "jpg") || ($aSrcExtention == "jpeg") ) {
$sSrcData = imagecreatefromjpeg($sSrcPath);
}
else {
return false;
}
break;
default:
return false;
break;
}
if ($sSrcData) {
$iSrcWidth = imagesx($sSrcData);
$iSrcHeight = imagesy($sSrcData);
$fSrcRatio = $iSrcWidth/$iSrcHeight;
$fDestRatio = $iDestWidth/$iDestHeight;
if ($fDestRatio > $fSrcRatio){
$iDestHeight = $iDestHeight;
$iDestWidth = $iDestHeight*$fSrcRatio;
}
else {
$iDestWidth = $iDestWidth;
$iDestHeight = $iDestWidth/$fSrcRatio;
}
$sDestData = imagecreatetruecolor($iDestWidth, $iDestHeight);
if (imagecopyresampled($sDestData, $sSrcData, 0, 0, 0, 0, $iDestWidth, $iDestHeight, $iSrcWidth, $iSrcHeight)) {
switch ($aSrcMime["mime"]) {
case "image/gif":
if ($aSrcExtention == "gif") {
if(imagegif($sDestData, $sDestPath, $iDestQuality)) {
imagedestroy($sSrcData);
return true;
}
else {
return false;
}
}
else {
return false;
}
break;
case "image/png":
if ($aSrcExtention == "png") {
if(imagepng($sDestData, $sDestPath, $iDestQuality)) {
imagedestroy($sSrcData);
return true;
}
else {
return false;
}
}
else {
return false;
}
break;
case "image/jpeg":
if ( ($aSrcExtention == "jpg") || ($aSrcExtention == "jpeg") ) {
if(imagejpeg($sDestData, $sDestPath, $iDestQuality)) {
imagedestroy($sSrcData);
return true;
}
else {
return false;
}
}
else {
return false;
}
break;
default:
return false;
break;
}
}
else {
return false;
}
}
else {
return false;
}
}
?>
/***
* resizeImage (function)
*
* @Author: Henry v.d. Berg [email protected]
*
* Deze functie wijzigt de grootte van een JPG/PNG/GIF plaatje
*
* @param string: $sSrcPath: Locatie van het originele bestand, eindigend op de bestandsnaam incl. extentie
* @param string: $sDestPath: Locatie waar het ge-resized bestand wordt opgeslagen, ZONDER bestandsnaam of extentie, eindigend op '/'
* @param int: $iDestWidth: Maximale breedte van het uiteidelijke bestand
* @param int: $iDestHeight: Maximale hoogte van het uiteindelijke bestand
* @param int: $iDestQuality: De kwaliteit van het uiteindelijke bestand in procenten, standaard 75%
*
* @return boolean: TRUE or FALSE
***/
function resizeImage($sSrcPath, $sDestPath, $iDestWidth, $iDestHeight, $iDestQuality = 75) {
$aSrcMime = getimagesize($sSrcPath);
$aSrcName = array_pop(split("[/]", $sSrcPath));
$aSrcExtention = strtolower(array_pop(split("[.]", $sSrcPath)));
$sDestPath = $sDestPath . $aSrcName;
switch ($aSrcMime["mime"]) {
case "image/gif":
if ($aSrcExtention == "gif") {
$sSrcData = imagecreatefromgif($sSrcPath);
}
else {
return false;
}
break;
case "image/png":
if ($aSrcExtention == "png") {
$sSrcData = imagecreatefrompng($sSrcPath);
}
else {
return false;
}
break;
case "image/jpeg":
if ( ($aSrcExtention == "jpg") || ($aSrcExtention == "jpeg") ) {
$sSrcData = imagecreatefromjpeg($sSrcPath);
}
else {
return false;
}
break;
default:
return false;
break;
}
if ($sSrcData) {
$iSrcWidth = imagesx($sSrcData);
$iSrcHeight = imagesy($sSrcData);
$fSrcRatio = $iSrcWidth/$iSrcHeight;
$fDestRatio = $iDestWidth/$iDestHeight;
if ($fDestRatio > $fSrcRatio){
$iDestHeight = $iDestHeight;
$iDestWidth = $iDestHeight*$fSrcRatio;
}
else {
$iDestWidth = $iDestWidth;
$iDestHeight = $iDestWidth/$fSrcRatio;
}
$sDestData = imagecreatetruecolor($iDestWidth, $iDestHeight);
if (imagecopyresampled($sDestData, $sSrcData, 0, 0, 0, 0, $iDestWidth, $iDestHeight, $iSrcWidth, $iSrcHeight)) {
switch ($aSrcMime["mime"]) {
case "image/gif":
if ($aSrcExtention == "gif") {
if(imagegif($sDestData, $sDestPath, $iDestQuality)) {
imagedestroy($sSrcData);
return true;
}
else {
return false;
}
}
else {
return false;
}
break;
case "image/png":
if ($aSrcExtention == "png") {
if(imagepng($sDestData, $sDestPath, $iDestQuality)) {
imagedestroy($sSrcData);
return true;
}
else {
return false;
}
}
else {
return false;
}
break;
case "image/jpeg":
if ( ($aSrcExtention == "jpg") || ($aSrcExtention == "jpeg") ) {
if(imagejpeg($sDestData, $sDestPath, $iDestQuality)) {
imagedestroy($sSrcData);
return true;
}
else {
return false;
}
}
else {
return false;
}
break;
default:
return false;
break;
}
}
else {
return false;
}
}
else {
return false;
}
}
?>