591 |
aurelien |
1 |
<?php
|
2462 |
jpm |
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Classe de manipulation des fichiers images JPEG.
|
|
|
5 |
*
|
|
|
6 |
* @internal Mininum PHP version : 5.2
|
|
|
7 |
* @category CEL
|
|
|
8 |
* @package Services
|
|
|
9 |
* @subpackage Bibliothèques
|
|
|
10 |
* @version 0.1
|
|
|
11 |
* @author Mathias CHOUET <mathias@tela-botanica.org>
|
|
|
12 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
13 |
* @author Aurelien PERONNET <aurelien@tela-botanica.org>
|
|
|
14 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
15 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
16 |
* @copyright 1999-2014 Tela Botanica <accueil@tela-botanica.org>
|
|
|
17 |
*/
|
632 |
aurelien |
18 |
Class ImageRecreation {
|
1154 |
jpm |
19 |
|
1883 |
mathias |
20 |
private $droits = 0755;
|
1874 |
aurelien |
21 |
private $formats = array('CRX2S','CRXS','CXS','CS','CRS','XS','S','M','L','XL','X2L','X3L');
|
632 |
aurelien |
22 |
const MODE_GD = 'gd';
|
|
|
23 |
const MODE_IMAGEMAGICK = 'imagemagick';
|
|
|
24 |
private $mode;
|
1154 |
jpm |
25 |
|
632 |
aurelien |
26 |
private $verbose = true;
|
591 |
aurelien |
27 |
|
672 |
jpm |
28 |
public function __construct($config) {
|
|
|
29 |
$this->config = $config;
|
1154 |
jpm |
30 |
|
632 |
aurelien |
31 |
if (extension_loaded('imagick')) {
|
|
|
32 |
$this->mode = self::MODE_IMAGEMAGICK;
|
1154 |
jpm |
33 |
} else {
|
|
|
34 |
$this->mode = self::MODE_GD;
|
632 |
aurelien |
35 |
}
|
591 |
aurelien |
36 |
}
|
1154 |
jpm |
37 |
|
632 |
aurelien |
38 |
public function recreerMiniaturesRecursivement() {
|
970 |
aurelien |
39 |
$this->itererRecursivement($this->config['cel']['chemin_images']);
|
632 |
aurelien |
40 |
}
|
1154 |
jpm |
41 |
|
632 |
aurelien |
42 |
public function regenererMiniaturesIntervalle($params) {
|
|
|
43 |
$id_debut = $params[0];
|
|
|
44 |
$id_fin = $params[1];
|
|
|
45 |
|
|
|
46 |
if (is_numeric($id_debut) && is_numeric($id_fin)) {
|
668 |
aurelien |
47 |
for ($i = $id_debut; $i <= $id_fin; $i++) {;
|
632 |
aurelien |
48 |
$tab_param = array($i);
|
|
|
49 |
$this->regenererMiniaturesPourId($tab_param);
|
|
|
50 |
}
|
|
|
51 |
}
|
591 |
aurelien |
52 |
}
|
1154 |
jpm |
53 |
|
632 |
aurelien |
54 |
public function regenererMiniaturesPourId($params) {
|
|
|
55 |
$id = $params[0];
|
|
|
56 |
|
|
|
57 |
if (!is_numeric($id)) {
|
2462 |
jpm |
58 |
return;
|
632 |
aurelien |
59 |
}
|
|
|
60 |
|
|
|
61 |
$dossier_fichier = $this->obtenirDossierPourFormat($id, 'O');
|
|
|
62 |
$nom_fichier = $this->convertirIdBddVersNomFichier($id, 'O');
|
1154 |
jpm |
63 |
|
632 |
aurelien |
64 |
$chemin_fichier = $dossier_fichier.'/'.$nom_fichier;
|
|
|
65 |
|
1154 |
jpm |
66 |
if (file_exists($chemin_fichier)) {
|
632 |
aurelien |
67 |
$infos_image_originale = $this->obtenirImageEtInfosPourChemin($chemin_fichier);
|
1154 |
jpm |
68 |
|
632 |
aurelien |
69 |
// creation de miniatures pour chacuns des formats définis
|
1154 |
jpm |
70 |
foreach ($this->formats as $format) {
|
632 |
aurelien |
71 |
$this->creerEtStockerMiniatureFichierImageSelonFormat($id, $infos_image_originale, $format);
|
668 |
aurelien |
72 |
};
|
632 |
aurelien |
73 |
}
|
621 |
aurelien |
74 |
}
|
1154 |
jpm |
75 |
|
605 |
aurelien |
76 |
public function itererRecursivement($dossier) {
|
591 |
aurelien |
77 |
// on ne parse que le dossier des images originales
|
|
|
78 |
$dossiers_a_exclure = $this->getFormats();
|
1154 |
jpm |
79 |
|
591 |
aurelien |
80 |
foreach (new DirectoryIterator($dossier) as $fichier_ou_dossier) {
|
632 |
aurelien |
81 |
if ($fichier_ou_dossier->isDot()) {
|
591 |
aurelien |
82 |
continue;
|
|
|
83 |
}
|
1154 |
jpm |
84 |
|
632 |
aurelien |
85 |
if (in_array($fichier_ou_dossier->getBasename(), $dossiers_a_exclure)) {
|
591 |
aurelien |
86 |
continue;
|
|
|
87 |
}
|
1154 |
jpm |
88 |
|
2462 |
jpm |
89 |
if ($fichier_ou_dossier->isDir()) {
|
|
|
90 |
$this->itererRecursivement($fichier_ou_dossier->getPathname());
|
|
|
91 |
} else {
|
|
|
92 |
$nom_fichier = $fichier_ou_dossier->getFilename();
|
1154 |
jpm |
93 |
|
591 |
aurelien |
94 |
$infos_image_originale = $this->obtenirImageEtInfosPourChemin($fichier_ou_dossier->getPathname());
|
2462 |
jpm |
95 |
$id = $this->convertirBaseNomFichierVersIdBdd($nom_fichier, $this->formats);
|
1154 |
jpm |
96 |
|
2462 |
jpm |
97 |
// creation de miniatures pour chacuns des formats définis
|
1154 |
jpm |
98 |
foreach ($this->formats as $format) {
|
591 |
aurelien |
99 |
$this->creerEtStockerMiniatureFichierImageSelonFormat($id, $infos_image_originale, $format);
|
|
|
100 |
}
|
2462 |
jpm |
101 |
}
|
591 |
aurelien |
102 |
}
|
|
|
103 |
}
|
2462 |
jpm |
104 |
|
2083 |
aurelien |
105 |
public function creerOuRenvoyerImage($id, $format) {
|
|
|
106 |
$dossier = $this->obtenirDossierPourFormat($id, $format);
|
|
|
107 |
$nom_fichier = $this->convertirIdBddVersNomFichier($id, $format);
|
2462 |
jpm |
108 |
$chemin_image = $dossier.'/'.$nom_fichier;
|
1154 |
jpm |
109 |
|
2083 |
aurelien |
110 |
$image = false;
|
2462 |
jpm |
111 |
if (!file_exists($chemin_image)) {
|
2133 |
aurelien |
112 |
$chemin_image_originale = $this->obtenirCheminImageOriginale($id);
|
|
|
113 |
$infos_image_originale = $this->obtenirImageEtInfosPourChemin($chemin_image_originale);
|
2083 |
aurelien |
114 |
if($infos_image_originale) {
|
2133 |
aurelien |
115 |
// le verrou est là dans le (rare) cas où l'image est déjà en train
|
2462 |
jpm |
116 |
// d'être générée par le script de création des miniatures ou bien
|
2133 |
aurelien |
117 |
// un autre instance de cette classe appelée par le web service
|
|
|
118 |
$fp = fopen($chemin_image_originale, "r");
|
2462 |
jpm |
119 |
// si le fichier est verrouillé, flock attendra qu'il se libère
|
2133 |
aurelien |
120 |
$verrou = flock($fp, LOCK_EX);
|
|
|
121 |
if(!file_exists($chemin_image)) {
|
|
|
122 |
// si le fichier a été locké alors l'image était en train d'être générée
|
|
|
123 |
// et donc il n'est pas nécéssaire de la créer (d'où le 2eme test sur file exists)
|
|
|
124 |
$this->creerEtStockerMiniatureFichierImageSelonFormat($id, $infos_image_originale, $format);
|
|
|
125 |
}
|
|
|
126 |
$verrou = flock($fp, LOCK_UN);
|
|
|
127 |
fclose($fp);
|
2083 |
aurelien |
128 |
$image = file_get_contents($chemin_image);
|
|
|
129 |
}
|
|
|
130 |
} else {
|
|
|
131 |
$image = file_get_contents($chemin_image);
|
|
|
132 |
}
|
|
|
133 |
return $image;
|
|
|
134 |
}
|
|
|
135 |
|
668 |
aurelien |
136 |
public function creerMiniatureImageSelonFormat($infos_image_originale, $format = 'O') {
|
2238 |
mathias |
137 |
$image_redimensionnee = false;
|
1154 |
jpm |
138 |
if ($format == 'O') {
|
591 |
aurelien |
139 |
// format original : rien à faire
|
|
|
140 |
$image_redimensionnee = $infos_image_originale['image'];
|
|
|
141 |
} else {
|
632 |
aurelien |
142 |
if ($this->estUnFormatRogne($format)) {
|
|
|
143 |
if ($this->mode == self::MODE_IMAGEMAGICK) {
|
|
|
144 |
// si l'on dispose de la librairie imageMagick
|
|
|
145 |
// on applique l'algorithme d'auto détection de sujets
|
|
|
146 |
// qui centre la miniature sur le sujet de l'image
|
|
|
147 |
$image_redimensionnee = $this->opticrop($infos_image_originale, $format);
|
2238 |
mathias |
148 |
}
|
|
|
149 |
if ($image_redimensionnee === false) {
|
|
|
150 |
// si l'on ne dispose que de gd ou bien que Imagick a échoué
|
632 |
aurelien |
151 |
// la minature est une image redimensionnée rognée au centre
|
1154 |
jpm |
152 |
$image_redimensionnee = $this->creerMiniatureCarreeRognee($infos_image_originale, $format);
|
|
|
153 |
}
|
632 |
aurelien |
154 |
} else if ($this->estUnFormatCarre($format)) {
|
591 |
aurelien |
155 |
// le format carre et une image redimensionnée en gardant son ratio, insérée dans un carré blanc
|
1154 |
jpm |
156 |
$image_redimensionnee = $this->creerMiniatureCarree($infos_image_originale, $format);
|
591 |
aurelien |
157 |
} else {
|
1154 |
jpm |
158 |
$image_redimensionnee = $this->creerMiniature($infos_image_originale, $format);
|
591 |
aurelien |
159 |
}
|
|
|
160 |
}
|
668 |
aurelien |
161 |
return $image_redimensionnee;
|
|
|
162 |
}
|
2370 |
mathias |
163 |
|
|
|
164 |
/**
|
|
|
165 |
* Déplace une image temporaire uploadée vers le répertoire de stockage d'images,
|
|
|
166 |
* en enregistrant les métadonnées et tout le tintouin.
|
|
|
167 |
* Si $conserverFichiersTemporaires vaut true, l'image est copiée et non déplacée.
|
2462 |
jpm |
168 |
*
|
2370 |
mathias |
169 |
* @param unknown $fichier
|
|
|
170 |
* @param unknown $id
|
|
|
171 |
* @param unknown $conserverFichiersTemporaires
|
|
|
172 |
* @return Ambigous <multitype:, boolean>|boolean
|
|
|
173 |
*/
|
|
|
174 |
public function stockerFichierOriginal($fichier, $id, $conserverFichiersTemporaires=false) {
|
2083 |
aurelien |
175 |
$chemin_fichier_origine = is_array($fichier) ? $fichier['tmp_name'] : $fichier;
|
2462 |
jpm |
176 |
|
2704 |
mathias |
177 |
$tailleFichierOrigine = filesize($chemin_fichier_origine);
|
|
|
178 |
|
2083 |
aurelien |
179 |
$chemin_base_fichier = $this->creerSiNecessaireEtRenvoyerCheminStockageFichierPourIdEtFormat($id, 'O');
|
|
|
180 |
$nom_fichier = $this->convertirIdBddVersNomFichier($id, 'O');
|
2462 |
jpm |
181 |
|
2083 |
aurelien |
182 |
$chemin_fichier = $chemin_base_fichier.'/'.$nom_fichier;
|
2462 |
jpm |
183 |
|
2370 |
mathias |
184 |
$deplacement_fichier = $this->stockerImageExterne($chemin_fichier_origine, $chemin_fichier, $conserverFichiersTemporaires);
|
2704 |
mathias |
185 |
if ($tailleFichierOrigine == 0) {
|
|
|
186 |
$erreur = 'ERREUR : fichier image original [' . $chemin_fichier . '] de taille nulle (0) \n' ;
|
|
|
187 |
$this->logger('CEL_bugs',$erreur);
|
|
|
188 |
return false;
|
|
|
189 |
}
|
2462 |
jpm |
190 |
|
2083 |
aurelien |
191 |
if ($deplacement_fichier) {
|
|
|
192 |
$infos_image_originale = $this->obtenirImageEtInfosPourChemin($chemin_fichier);
|
|
|
193 |
$taux_compression = $this->renvoyerTauxCompressionPourPoids($infos_image_originale['poids_octets']);
|
2462 |
jpm |
194 |
|
2704 |
mathias |
195 |
$ecritureOK = true;
|
2083 |
aurelien |
196 |
if ($taux_compression < 100 && $this->mode == self::MODE_IMAGEMAGICK) {
|
2704 |
mathias |
197 |
$ecritureOK = $this->ecrireImageSurDisqueAvecMeta($chemin_fichier, $taux_compression);
|
2083 |
aurelien |
198 |
}
|
1154 |
jpm |
199 |
|
2704 |
mathias |
200 |
if ($ecritureOK) {
|
|
|
201 |
return $infos_image_originale;
|
|
|
202 |
} else {
|
|
|
203 |
$erreur = 'ERREUR : probleme durant la recompression du fichier image original \n' ;
|
|
|
204 |
$this->logger('CEL_bugs',$erreur);
|
|
|
205 |
return false ;
|
|
|
206 |
}
|
2083 |
aurelien |
207 |
} else {
|
2704 |
mathias |
208 |
$erreur = 'ERREUR : probleme durant le déplacement du fichier temporaire \n' ;
|
2083 |
aurelien |
209 |
$this->logger('CEL_bugs',$erreur);
|
|
|
210 |
return false ;
|
|
|
211 |
}
|
|
|
212 |
}
|
2462 |
jpm |
213 |
|
2083 |
aurelien |
214 |
public function stockerFichierEtCreerMiniatures($fichier, $id) {
|
|
|
215 |
$infos_image_originale_stockee = $this->stockerFichierOriginal($fichier, $id);
|
2462 |
jpm |
216 |
if ($infos_image_originale_stockee) {
|
2083 |
aurelien |
217 |
$formats = $this->getFormats();
|
2462 |
jpm |
218 |
|
2083 |
aurelien |
219 |
// creation de miniatures pour chacuns des formats définis
|
|
|
220 |
foreach($formats as $format) {
|
|
|
221 |
$this->creerEtStockerMiniatureFichierImageSelonFormat($id, $infos_image_originale_stockee, $format);
|
|
|
222 |
}
|
|
|
223 |
} else {
|
|
|
224 |
$erreur = 'ERROR : impossible d\'obtenir les informations sur l\'image originale \n' ;
|
|
|
225 |
$this->logger('CEL_bugs',$erreur);
|
|
|
226 |
return false ;
|
|
|
227 |
}
|
|
|
228 |
return true ;
|
|
|
229 |
}
|
|
|
230 |
|
668 |
aurelien |
231 |
public function creerEtStockerMiniatureFichierImageSelonFormat($id ,$infos_image_originale, $format = 'O') {
|
|
|
232 |
$image_redimensionnee = $this->creerMiniatureImageSelonFormat($infos_image_originale, $format);
|
591 |
aurelien |
233 |
$taux_compression = $this->renvoyerTauxCompressionPourPoids($infos_image_originale['poids_octets']);
|
|
|
234 |
$this->ecrireImageSurDisque($image_redimensionnee, $id, $format, $taux_compression);
|
|
|
235 |
return true;
|
|
|
236 |
}
|
1154 |
jpm |
237 |
|
591 |
aurelien |
238 |
public function creerImageRedimensionnee($infos_image_originale, $hauteur_redimension, $largeur_redimension) {
|
|
|
239 |
$image_redimensionnee = imagecreatetruecolor($largeur_redimension, $hauteur_redimension);
|
1154 |
jpm |
240 |
|
|
|
241 |
imagecopyresampled($image_redimensionnee,
|
|
|
242 |
$infos_image_originale['image'],
|
|
|
243 |
0, 0,
|
|
|
244 |
0, 0,
|
|
|
245 |
$largeur_redimension,
|
|
|
246 |
$hauteur_redimension,
|
|
|
247 |
$infos_image_originale['largeur'],
|
672 |
jpm |
248 |
$infos_image_originale['hauteur']
|
591 |
aurelien |
249 |
);
|
|
|
250 |
return $image_redimensionnee;
|
|
|
251 |
}
|
1154 |
jpm |
252 |
|
591 |
aurelien |
253 |
public function creerMiniature($informations_images, $format) {
|
|
|
254 |
$taille_reference_pour_format = $this->obtenirDimensionsPourFormat($format);
|
1154 |
jpm |
255 |
|
591 |
aurelien |
256 |
$taille_image_redimensionnee = $this->calculerTailleImage($informations_images, $taille_reference_pour_format['hauteur']);
|
|
|
257 |
$image_redimensionnee = $this->creerImageRedimensionnee($informations_images, $taille_image_redimensionnee['hauteur'], $taille_image_redimensionnee['largeur']);
|
1154 |
jpm |
258 |
|
591 |
aurelien |
259 |
return $image_redimensionnee;
|
|
|
260 |
}
|
1154 |
jpm |
261 |
|
591 |
aurelien |
262 |
public function creerMiniatureCarree($informations_image, $format) {
|
|
|
263 |
$taille_reference_pour_format = $this->obtenirDimensionsPourFormat($format);
|
|
|
264 |
$cote_carre = $taille_reference_pour_format['largeur'];
|
1154 |
jpm |
265 |
|
591 |
aurelien |
266 |
$image_redimensionnee_avec_rapport = $this->creerMiniature($informations_image, $format);
|
|
|
267 |
$taille_redimensionnee_avec_rapport = $this->calculerTailleImage($informations_image, $taille_reference_pour_format['hauteur']);
|
1154 |
jpm |
268 |
|
|
|
269 |
if ($this->estPaysage($informations_image)) {
|
672 |
jpm |
270 |
$debut_largeur_a_copier = 0 ;
|
1154 |
jpm |
271 |
$debut_hauteur_a_copier = ($cote_carre - $taille_redimensionnee_avec_rapport['hauteur'])/2 ;
|
591 |
aurelien |
272 |
} else {
|
672 |
jpm |
273 |
$debut_largeur_a_copier = ($cote_carre - $taille_redimensionnee_avec_rapport['largeur'])/2 ;
|
1154 |
jpm |
274 |
$debut_hauteur_a_copier = 0 ;
|
591 |
aurelien |
275 |
}
|
1154 |
jpm |
276 |
|
591 |
aurelien |
277 |
$image_carre_blanc_cible = $this->renvoyerEtCreerImageCarreeBlancheSelonFormat($cote_carre);
|
1154 |
jpm |
278 |
|
591 |
aurelien |
279 |
imagecopy($image_carre_blanc_cible, $image_redimensionnee_avec_rapport,
|
672 |
jpm |
280 |
$debut_largeur_a_copier ,$debut_hauteur_a_copier, 0, 0,
|
|
|
281 |
$taille_redimensionnee_avec_rapport['largeur'], $taille_redimensionnee_avec_rapport['hauteur']
|
591 |
aurelien |
282 |
);
|
|
|
283 |
|
|
|
284 |
return $image_carre_blanc_cible;
|
|
|
285 |
}
|
1154 |
jpm |
286 |
|
591 |
aurelien |
287 |
public function creerMiniatureCarreeRognee($informations_image, $format) {
|
|
|
288 |
$taille_reference_pour_format = $this->obtenirDimensionsPourFormat($format);
|
|
|
289 |
$cote_carre = $taille_reference_pour_format['largeur'];
|
|
|
290 |
$cote_carre_non_redimensionne = 0;
|
1154 |
jpm |
291 |
|
|
|
292 |
if ($this->estPaysage($informations_image)) {
|
|
|
293 |
$cote_carre_non_redimensionne = $informations_image['hauteur'];
|
2238 |
mathias |
294 |
$debut_largeur_a_copier = ($informations_image['largeur'] / 2) - ($informations_image['hauteur'] / 2);
|
672 |
jpm |
295 |
$debut_hauteur_a_copier = 0;
|
1154 |
jpm |
296 |
|
672 |
jpm |
297 |
if($debut_largeur_a_copier <= 0) {
|
|
|
298 |
$debut_largeur_a_copier = 0;
|
|
|
299 |
}
|
1154 |
jpm |
300 |
|
672 |
jpm |
301 |
$nb_pixels_largeur_a_copier = $cote_carre_non_redimensionne;
|
|
|
302 |
$nb_pixels_hauteur_a_copier = $cote_carre_non_redimensionne;
|
|
|
303 |
} else {
|
|
|
304 |
$cote_carre_non_redimensionne = $informations_image['largeur'];
|
|
|
305 |
$debut_largeur_a_copier = 0 ;
|
2238 |
mathias |
306 |
$debut_hauteur_a_copier = ($informations_image['hauteur'] / 2) - ($informations_image['largeur'] / 2);
|
1154 |
jpm |
307 |
|
672 |
jpm |
308 |
if($debut_hauteur_a_copier <= 0) {
|
591 |
aurelien |
309 |
$debut_hauteur_a_copier = 0;
|
672 |
jpm |
310 |
}
|
1154 |
jpm |
311 |
|
672 |
jpm |
312 |
$nb_pixels_largeur_a_copier = $cote_carre_non_redimensionne;
|
|
|
313 |
$nb_pixels_hauteur_a_copier = $cote_carre_non_redimensionne;
|
591 |
aurelien |
314 |
}
|
1154 |
jpm |
315 |
|
591 |
aurelien |
316 |
$image_carre_temporaire = imagecreatetruecolor($cote_carre_non_redimensionne, $cote_carre_non_redimensionne);
|
1154 |
jpm |
317 |
|
|
|
318 |
imagecopyresampled($image_carre_temporaire,
|
|
|
319 |
$informations_image['image'],
|
|
|
320 |
0, 0,
|
672 |
jpm |
321 |
$debut_largeur_a_copier,
|
1154 |
jpm |
322 |
$debut_hauteur_a_copier,
|
|
|
323 |
$cote_carre_non_redimensionne,
|
|
|
324 |
$cote_carre_non_redimensionne,
|
|
|
325 |
$nb_pixels_largeur_a_copier,
|
672 |
jpm |
326 |
$nb_pixels_hauteur_a_copier
|
591 |
aurelien |
327 |
);
|
1154 |
jpm |
328 |
|
591 |
aurelien |
329 |
$image_redimensionnee = imagecreatetruecolor($cote_carre, $cote_carre);
|
1154 |
jpm |
330 |
|
|
|
331 |
imagecopyresampled($image_redimensionnee,
|
|
|
332 |
$image_carre_temporaire,
|
|
|
333 |
0, 0,
|
|
|
334 |
0, 0,
|
|
|
335 |
$cote_carre,
|
|
|
336 |
$cote_carre,
|
|
|
337 |
$cote_carre_non_redimensionne,
|
672 |
jpm |
338 |
$cote_carre_non_redimensionne
|
591 |
aurelien |
339 |
);
|
|
|
340 |
|
|
|
341 |
return $image_redimensionnee;
|
|
|
342 |
}
|
1154 |
jpm |
343 |
|
2370 |
mathias |
344 |
/**
|
|
|
345 |
* Déplace un fichier temporaire vers une destination donnée. Si
|
|
|
346 |
* $conserverFichiersTemporaires vaut true, le fichier est copié et non déplacé.
|
2462 |
jpm |
347 |
*
|
2370 |
mathias |
348 |
* @param unknown $chemin_fichier_temp
|
|
|
349 |
* @param unknown $chemin_destination
|
|
|
350 |
* @param string $conserverFichiersTemporaires
|
|
|
351 |
* @return boolean
|
|
|
352 |
*/
|
|
|
353 |
public function stockerImageExterne($chemin_fichier_temp, $chemin_destination, $conserverFichiersTemporaires=false) {
|
|
|
354 |
if ($conserverFichiersTemporaires === true) {
|
|
|
355 |
// copie du fichier
|
|
|
356 |
$deplacement = copy($chemin_fichier_temp, $chemin_destination);
|
632 |
aurelien |
357 |
} else {
|
2370 |
mathias |
358 |
if (is_uploaded_file($chemin_fichier_temp)) {
|
|
|
359 |
$deplacement = move_uploaded_file($chemin_fichier_temp, $chemin_destination);
|
|
|
360 |
} else {
|
|
|
361 |
$deplacement = rename($chemin_fichier_temp, $chemin_destination);
|
|
|
362 |
}
|
632 |
aurelien |
363 |
}
|
1154 |
jpm |
364 |
|
632 |
aurelien |
365 |
return $deplacement;
|
|
|
366 |
}
|
1154 |
jpm |
367 |
|
591 |
aurelien |
368 |
public function creerSiNecessaireEtRenvoyerCheminStockageFichierPourIdEtFormat($id, $format) {
|
672 |
jpm |
369 |
$chemin_sur_serveur_final = $this->obtenirDossierPourFormat($id, $format);
|
1154 |
jpm |
370 |
|
672 |
jpm |
371 |
if (!file_exists($chemin_sur_serveur_final)) {
|
668 |
aurelien |
372 |
umask(0);
|
672 |
jpm |
373 |
if (!mkdir($chemin_sur_serveur_final, $this->droits, true)) {
|
591 |
aurelien |
374 |
$erreur = 'ERROR : probleme durant l\'écriture du dossier '.$format.' \n' ;
|
672 |
jpm |
375 |
$this->logger('CEL_bugs', $erreur);
|
591 |
aurelien |
376 |
return false;
|
|
|
377 |
}
|
|
|
378 |
}
|
1154 |
jpm |
379 |
|
591 |
aurelien |
380 |
return $chemin_sur_serveur_final;
|
|
|
381 |
}
|
1154 |
jpm |
382 |
|
591 |
aurelien |
383 |
public function obtenirDossierPourFormat($id, $format) {
|
970 |
aurelien |
384 |
$chemin_base = $this->config['cel']['chemin_images'];
|
1154 |
jpm |
385 |
|
672 |
jpm |
386 |
$chemin_sur_serveur = $chemin_base;
|
1154 |
jpm |
387 |
|
672 |
jpm |
388 |
$id = sprintf('%09s', $id);
|
|
|
389 |
$id = wordwrap($id, 3 , '_', true);
|
1154 |
jpm |
390 |
|
672 |
jpm |
391 |
list($dossierNiveau1, $dossierNiveau2) = explode('_', $id);
|
1154 |
jpm |
392 |
|
591 |
aurelien |
393 |
$chemin_sur_serveur_final = $chemin_sur_serveur.'/'.$dossierNiveau1.'/'.$dossierNiveau2.'/'.$format;
|
1154 |
jpm |
394 |
|
591 |
aurelien |
395 |
return $chemin_sur_serveur_final;
|
|
|
396 |
}
|
1154 |
jpm |
397 |
|
668 |
aurelien |
398 |
public function obtenirCheminImageOriginale($id_image) {
|
|
|
399 |
$nom = $this->convertirIdBddVersNomFichier($id_image, 'O');
|
|
|
400 |
$dossier = $this->obtenirDossierPourFormat($id_image,'O');
|
1154 |
jpm |
401 |
|
668 |
aurelien |
402 |
return $dossier.'/'.$nom;
|
|
|
403 |
}
|
1154 |
jpm |
404 |
|
668 |
aurelien |
405 |
public function obtenirImageEtInfosPourId($id_image) {
|
|
|
406 |
$chemin_image_o = $this->obtenirCheminImageOriginale($id_image);
|
|
|
407 |
return $this->obtenirImageEtInfosPourChemin($chemin_image_o);
|
|
|
408 |
}
|
1154 |
jpm |
409 |
|
591 |
aurelien |
410 |
public function obtenirImageEtInfosPourChemin($chemin_fichier) {
|
668 |
aurelien |
411 |
$image_et_infos = false;
|
1154 |
jpm |
412 |
|
|
|
413 |
if (file_exists($chemin_fichier)) {
|
668 |
aurelien |
414 |
$image_et_infos = array();
|
1154 |
jpm |
415 |
list($image_et_infos['largeur'], $image_et_infos['hauteur']) = getimagesize($chemin_fichier);
|
668 |
aurelien |
416 |
$image_et_infos['poids_octets'] = filesize($chemin_fichier);
|
2662 |
mathias |
417 |
// @TODO Se protéger contre les images vides, non-JPEG, ou invalides / incomplètes
|
668 |
aurelien |
418 |
$image_et_infos['image'] = imagecreatefromjpeg($chemin_fichier);
|
|
|
419 |
$image_et_infos['chemin'] = $chemin_fichier;
|
|
|
420 |
}
|
1154 |
jpm |
421 |
|
591 |
aurelien |
422 |
return $image_et_infos;
|
|
|
423 |
}
|
1154 |
jpm |
424 |
|
591 |
aurelien |
425 |
public function obtenirDimensionsPourFormat($format) {
|
672 |
jpm |
426 |
$dimensions = array('largeur' => 0, 'hauteur' => 0);
|
1154 |
jpm |
427 |
|
970 |
aurelien |
428 |
if (isset($this->config['cel']['format_'.$format])) {
|
|
|
429 |
list($dimensions['largeur'], $dimensions['hauteur']) = explode('_', $this->config['cel']['format_'.$format]);
|
591 |
aurelien |
430 |
}
|
1154 |
jpm |
431 |
|
591 |
aurelien |
432 |
return $dimensions;
|
|
|
433 |
}
|
1154 |
jpm |
434 |
|
591 |
aurelien |
435 |
public function calculerTailleImage($informations_images, $taille_max) {
|
2462 |
jpm |
436 |
$HL_redimension = array();
|
1154 |
jpm |
437 |
|
2462 |
jpm |
438 |
if ($this->estPaysage($informations_images)) {
|
|
|
439 |
$rapport = $informations_images['hauteur']/$informations_images['largeur'] ;
|
|
|
440 |
$HL_redimension['largeur'] = round($taille_max) ;
|
|
|
441 |
$HL_redimension['hauteur'] = round($taille_max*$rapport) ;
|
1154 |
jpm |
442 |
|
2462 |
jpm |
443 |
} else {
|
2662 |
mathias |
444 |
// protection contre division par 0 - prob. symptôme d'un autre pb : image vide ou mal transmise,
|
|
|
445 |
// voir TODO dans obtenirImageEtInfosPourChemin()
|
|
|
446 |
$rapport = $informations_images['hauteur'] == 0 ? 0 : $informations_images['largeur'] / $informations_images['hauteur'];
|
2462 |
jpm |
447 |
$HL_redimension['hauteur'] = round($taille_max) ;
|
|
|
448 |
$HL_redimension['largeur'] = round($taille_max*$rapport) ;
|
|
|
449 |
}
|
1154 |
jpm |
450 |
|
2462 |
jpm |
451 |
return $HL_redimension;
|
591 |
aurelien |
452 |
}
|
1154 |
jpm |
453 |
|
591 |
aurelien |
454 |
public function getFormats() {
|
|
|
455 |
return $this->formats;
|
|
|
456 |
}
|
1154 |
jpm |
457 |
|
591 |
aurelien |
458 |
public function estUnFormatCarre($format) {
|
1154 |
jpm |
459 |
return (strpos($format,'C') === 0);
|
591 |
aurelien |
460 |
}
|
1154 |
jpm |
461 |
|
591 |
aurelien |
462 |
public function estUnFormatRogne($format) {
|
1154 |
jpm |
463 |
return (strpos($format,'R') === 1);
|
591 |
aurelien |
464 |
}
|
1154 |
jpm |
465 |
|
591 |
aurelien |
466 |
public function estPaysage($informations_images) {
|
|
|
467 |
return $informations_images['largeur'] > $informations_images['hauteur'];
|
|
|
468 |
}
|
1154 |
jpm |
469 |
|
591 |
aurelien |
470 |
public function estPortait($informations_images) {
|
|
|
471 |
return $informations_images['largeur'] < $informations_images['hauteur'];
|
|
|
472 |
}
|
1154 |
jpm |
473 |
|
591 |
aurelien |
474 |
public function renvoyerTauxCompressionPourPoids($poids_octets) {
|
970 |
aurelien |
475 |
$poids_max_octets = $this->config['cel']['taille_max'];
|
1154 |
jpm |
476 |
|
591 |
aurelien |
477 |
$ratio_compression = 100 ;
|
1154 |
jpm |
478 |
|
2462 |
jpm |
479 |
if ($poids_octets >= $poids_max_octets) {
|
|
|
480 |
$ratio_compression = 75 ;
|
|
|
481 |
}
|
1154 |
jpm |
482 |
|
2462 |
jpm |
483 |
return $ratio_compression;
|
591 |
aurelien |
484 |
}
|
1154 |
jpm |
485 |
|
591 |
aurelien |
486 |
public function convertirIdBddVersNomFichier($id, $format, $extension = 'jpg') {
|
672 |
jpm |
487 |
// creation du format original
|
591 |
aurelien |
488 |
$id_avec_zeros = sprintf('%09s', $id) ;
|
|
|
489 |
$id_avec_zeros_underscores = wordwrap($id_avec_zeros, 3 , '_', true) ;
|
1154 |
jpm |
490 |
|
591 |
aurelien |
491 |
$nom_fichier = $id_avec_zeros_underscores.'_'.$format.'.'.$extension;
|
1154 |
jpm |
492 |
|
591 |
aurelien |
493 |
return $nom_fichier;
|
|
|
494 |
}
|
1154 |
jpm |
495 |
|
591 |
aurelien |
496 |
public function convertirBaseNomFichierVersIdBdd($nom_fichier, $formats) {
|
|
|
497 |
$nom_fichier_sans_extension = trim($nom_fichier, '.jpg');
|
1154 |
jpm |
498 |
|
2462 |
jpm |
499 |
foreach ($formats as $format) {
|
591 |
aurelien |
500 |
$nom_fichier_sans_extension = trim($nom_fichier_sans_extension, '_'.$format);
|
|
|
501 |
}
|
|
|
502 |
$id_image = str_replace('_', '', $nom_fichier_sans_extension);
|
1154 |
jpm |
503 |
|
591 |
aurelien |
504 |
// suppression des 0 devant
|
|
|
505 |
$id_image += 0;
|
1154 |
jpm |
506 |
|
591 |
aurelien |
507 |
return $id_image;
|
|
|
508 |
}
|
1154 |
jpm |
509 |
|
632 |
aurelien |
510 |
public function ecrireImageSurDisque($image_binaire, $id, $format, $compression = 100) {
|
591 |
aurelien |
511 |
umask(0);
|
1154 |
jpm |
512 |
|
591 |
aurelien |
513 |
$chemin_sur_serveur_final = $this->creerSiNecessaireEtRenvoyerCheminStockageFichierPourIdEtFormat($id, $format);
|
|
|
514 |
$nom_fichier = $this->convertirIdBddVersNomFichier($id, $format);
|
1154 |
jpm |
515 |
|
632 |
aurelien |
516 |
if (file_exists($chemin_sur_serveur_final.'/'.$nom_fichier)) {
|
591 |
aurelien |
517 |
unlink($chemin_sur_serveur_final.'/'.$nom_fichier);
|
|
|
518 |
}
|
1154 |
jpm |
519 |
|
668 |
aurelien |
520 |
// attention, ceci ne preserve pas les metadonnées
|
632 |
aurelien |
521 |
imagejpeg($image_binaire, $chemin_sur_serveur_final.'/'.$nom_fichier, $compression);
|
591 |
aurelien |
522 |
chmod($chemin_sur_serveur_final.'/'.$nom_fichier,$this->droits);
|
|
|
523 |
}
|
1154 |
jpm |
524 |
|
|
|
525 |
public function ecrireImageSurDisqueAvecMeta($chemin_image_a_stocker, $compression = 100) {
|
2704 |
mathias |
526 |
try {
|
|
|
527 |
$img = new Imagick($chemin_image_a_stocker);
|
1154 |
jpm |
528 |
|
2704 |
mathias |
529 |
// l'utilisation d'image magick préserve les métadonnées lors d'une recompression
|
|
|
530 |
$img->setformat('jpeg');
|
|
|
531 |
$img->setImageCompression(imagick::COMPRESSION_JPEG);
|
|
|
532 |
$img->setCompressionQuality($compression);
|
|
|
533 |
$img->writeImage($chemin_image_a_stocker);
|
|
|
534 |
$img->destroy();
|
|
|
535 |
|
|
|
536 |
chmod($chemin_image_a_stocker, $this->droits);
|
|
|
537 |
return true;
|
|
|
538 |
} catch (ImagickException $e) {
|
|
|
539 |
return false;
|
|
|
540 |
}
|
591 |
aurelien |
541 |
}
|
1154 |
jpm |
542 |
|
591 |
aurelien |
543 |
public function renvoyerEtCreerImageCarreeBlancheSelonFormat($cote) {
|
1154 |
jpm |
544 |
$image_blanche = imagecreatetruecolor($cote, $cote);
|
591 |
aurelien |
545 |
$blanc = imagecolorallocate($image_blanche, 255, 255, 255);
|
|
|
546 |
imagefilledrectangle($image_blanche, 0, 0, $cote, $cote, $blanc);
|
|
|
547 |
return $image_blanche;
|
|
|
548 |
}
|
1154 |
jpm |
549 |
|
|
|
550 |
public function detruireImageEnMemoire($image) {
|
591 |
aurelien |
551 |
imagedestroy($image);
|
|
|
552 |
}
|
1154 |
jpm |
553 |
|
2370 |
mathias |
554 |
/**
|
|
|
555 |
* Supprime une image du disque, ainsi que tous les formats générés
|
2462 |
jpm |
556 |
*
|
2370 |
mathias |
557 |
* @param Integer $id
|
|
|
558 |
* @return boolean true si tous les formats y compris l'original ont été détruits, false s'il en reste au moins un
|
|
|
559 |
*/
|
591 |
aurelien |
560 |
public function detruireImageSurDisque($id) {
|
|
|
561 |
$formats = $this->getFormats();
|
|
|
562 |
// on detruit aussi l'image originale
|
|
|
563 |
$formats[] = 'O';
|
1154 |
jpm |
564 |
|
2370 |
mathias |
565 |
$destruction_formats_fichier = true;
|
|
|
566 |
// destructions de chacun des formats définis
|
591 |
aurelien |
567 |
foreach($formats as $format) {
|
|
|
568 |
$dossier_format = $this->obtenirDossierPourFormat($id, $format);
|
|
|
569 |
$nom_fichier = $this->convertirIdBddVersNomFichier($id, $format);
|
1154 |
jpm |
570 |
|
632 |
aurelien |
571 |
if (file_exists($dossier_format.'/'.$nom_fichier)) {
|
2370 |
mathias |
572 |
$detruit = unlink($dossier_format.'/'.$nom_fichier);
|
|
|
573 |
$destruction_formats_fichier = ($destruction_formats_fichier && $detruit);
|
621 |
aurelien |
574 |
}
|
591 |
aurelien |
575 |
}
|
1154 |
jpm |
576 |
|
621 |
aurelien |
577 |
return $destruction_formats_fichier;
|
591 |
aurelien |
578 |
}
|
1154 |
jpm |
579 |
|
1755 |
raphael |
580 |
// recopie de Cel->logger() (pas d'extends pour ça)
|
|
|
581 |
public function logger($index,$chaine) {
|
2462 |
jpm |
582 |
if (!class_exists('Log')) {
|
1755 |
raphael |
583 |
Log::getInstance();
|
|
|
584 |
}
|
|
|
585 |
|
|
|
586 |
Log::setCheminLog($this->config['log']['cheminlog']);
|
|
|
587 |
Log::setTimeZone($this->config['log']['timezone']);
|
|
|
588 |
Log::setTailleMax($this->config['log']['taillemax']);
|
|
|
589 |
|
|
|
590 |
Log::ajouterEntree($index,$chaine);
|
|
|
591 |
}
|
|
|
592 |
|
1154 |
jpm |
593 |
/*
|
632 |
aurelien |
594 |
* edge-maximizing crop
|
1154 |
jpm |
595 |
* determines center-of-edginess, then tries different-sized crops around it.
|
632 |
aurelien |
596 |
* picks the crop with the highest normalized edginess.
|
|
|
597 |
* see documentation on how to tune the algorithm
|
|
|
598 |
*
|
|
|
599 |
* $informations_image - le tableau d'informations sur l'image tel que renvoyé par la fonction obtenirImageEtInfosPourChemin
|
|
|
600 |
* $format - le format (ex. : CS, XS, XL, CRS)
|
|
|
601 |
*/
|
672 |
jpm |
602 |
public function opticrop($informations_image, $format) {
|
632 |
aurelien |
603 |
umask(0);
|
2238 |
mathias |
604 |
$erreur_ecriture = false;
|
1154 |
jpm |
605 |
|
632 |
aurelien |
606 |
$nom_temp = md5(time());
|
1154 |
jpm |
607 |
$chemin_temp =
|
|
|
608 |
|
970 |
aurelien |
609 |
$out = $this->config['cel']['chemin_stockage_temp'].'/'.$nom_temp;
|
1154 |
jpm |
610 |
|
632 |
aurelien |
611 |
$dimension_vignettes = $this->obtenirDimensionsPourFormat($format);
|
1154 |
jpm |
612 |
|
632 |
aurelien |
613 |
$largeur_vignette = $dimension_vignettes['largeur'];
|
|
|
614 |
$hauteur_vignette = $dimension_vignettes['hauteur'];
|
1154 |
jpm |
615 |
|
2462 |
jpm |
616 |
// source dimensions
|
|
|
617 |
$largeur_image_originale = $informations_image['largeur'];
|
|
|
618 |
$hauteur_image_originale = $informations_image['hauteur'];
|
1154 |
jpm |
619 |
|
2462 |
jpm |
620 |
$chemin_image = $informations_image['chemin'];
|
1154 |
jpm |
621 |
|
2462 |
jpm |
622 |
// parameters for the edge-maximizing crop algorithm
|
|
|
623 |
$r = 1; // radius of edge filter
|
|
|
624 |
$nk = 9; // scale count: number of crop sizes to try
|
|
|
625 |
$gamma = 0.2; // edge normalization parameter -- see documentation
|
|
|
626 |
$ar = $largeur_vignette/$hauteur_vignette; // target aspect ratio (AR)
|
|
|
627 |
$ar0 = $largeur_image_originale/$hauteur_image_originale; // original aspect ratio (AR)
|
1154 |
jpm |
628 |
|
2462 |
jpm |
629 |
//echo("$chemin_image: $largeur_image_originale x $hauteur_image_originale => $largeur_vignette x $hauteur_vignette");
|
2698 |
mathias |
630 |
try {
|
|
|
631 |
$img = new Imagick($chemin_image); // ce machin jette une ImagickException si le fichier est vide
|
2702 |
mathias |
632 |
$imgcp = clone $img;
|
2698 |
mathias |
633 |
// compute center of edginess
|
|
|
634 |
$img->edgeImage($r);
|
|
|
635 |
$img->modulateImage(100,0,100); // grayscale
|
|
|
636 |
$img->blackThresholdImage("#0f0f0f");
|
|
|
637 |
$retour_ecriture_img = $img->writeImage($out);
|
|
|
638 |
|
|
|
639 |
if ($retour_ecriture_img !== true) {
|
|
|
640 |
error_log("Erreur d'écriture Imagick : [" . $chemin_image . "] vers [" . $out . "]");
|
|
|
641 |
$erreur_ecriture = true;
|
|
|
642 |
}
|
|
|
643 |
// use gd for random pixel access
|
|
|
644 |
$im = ImageCreateFromJpeg($out);
|
|
|
645 |
|
|
|
646 |
if ($im === false) {
|
|
|
647 |
error_log("GD ne peut pas lire l'image créée par Imagick : [" . $chemin_image . "] vers [" . $out . "]");
|
|
|
648 |
$erreur_ecriture = true;
|
|
|
649 |
}
|
|
|
650 |
} catch (ImagickException $e) {
|
|
|
651 |
// En principe si on se trouve ici c'est que l'image est vide
|
2462 |
jpm |
652 |
$erreur_ecriture = true;
|
2698 |
mathias |
653 |
$image_sortie = false;
|
2462 |
jpm |
654 |
}
|
2238 |
mathias |
655 |
|
2462 |
jpm |
656 |
if (! $erreur_ecriture) {
|
|
|
657 |
$xcenter = 0;
|
|
|
658 |
$ycenter = 0;
|
|
|
659 |
$sum = 0;
|
|
|
660 |
$n = 100000;
|
|
|
661 |
for ($k=0; $k<$n; $k++) {
|
|
|
662 |
$i = mt_rand(0,$largeur_image_originale-1);
|
|
|
663 |
$j = mt_rand(0,$hauteur_image_originale-1);
|
|
|
664 |
$val = imagecolorat($im, $i, $j) & 0xFF;
|
|
|
665 |
$sum += $val;
|
|
|
666 |
$xcenter += ($i+1)*$val;
|
|
|
667 |
$ycenter += ($j+1)*$val;
|
|
|
668 |
}
|
|
|
669 |
$xcenter /= $sum;
|
|
|
670 |
$ycenter /= $sum;
|
1154 |
jpm |
671 |
|
2462 |
jpm |
672 |
// crop source img to target AR
|
|
|
673 |
if ($largeur_image_originale/$hauteur_image_originale > $ar) {
|
|
|
674 |
// source AR wider than target
|
|
|
675 |
// crop width to target AR
|
|
|
676 |
$wcrop0 = round($ar*$hauteur_image_originale);
|
|
|
677 |
$hcrop0 = $hauteur_image_originale;
|
|
|
678 |
} else {
|
|
|
679 |
// crop height to target AR
|
|
|
680 |
$wcrop0 = $largeur_image_originale;
|
|
|
681 |
$hcrop0 = round($largeur_image_originale/$ar);
|
|
|
682 |
}
|
1154 |
jpm |
683 |
|
2462 |
jpm |
684 |
// crop parameters for all scales and translations
|
|
|
685 |
$params = array();
|
1154 |
jpm |
686 |
|
2462 |
jpm |
687 |
// crop at different scales
|
|
|
688 |
$hgap = $hcrop0 - $hauteur_vignette;
|
|
|
689 |
$hinc = ($nk == 1) ? 0 : $hgap / ($nk - 1);
|
|
|
690 |
$wgap = $wcrop0 - $largeur_vignette;
|
|
|
691 |
$winc = ($nk == 1) ? 0 : $wgap / ($nk - 1);
|
|
|
692 |
|
|
|
693 |
// find window with highest normalized edginess
|
|
|
694 |
$n = 10000;
|
|
|
695 |
$maxbetanorm = 0;
|
|
|
696 |
$maxfile = '';
|
|
|
697 |
$maxparam = array('w'=>0, 'h'=>0, 'x'=>0, 'y'=>0);
|
|
|
698 |
|
|
|
699 |
for ($k = 0; $k < $nk; $k++) {
|
|
|
700 |
$hcrop = round($hcrop0 - $k*$hinc);
|
|
|
701 |
$wcrop = round($wcrop0 - $k*$winc);
|
|
|
702 |
$xcrop = $xcenter - $wcrop / 2;
|
|
|
703 |
$ycrop = $ycenter - $hcrop / 2;
|
|
|
704 |
//echo("crop: $wcrop, $hcrop, $xcrop, $ycrop");
|
|
|
705 |
|
|
|
706 |
if ($xcrop < 0) $xcrop = 0;
|
|
|
707 |
if ($xcrop+$wcrop > $largeur_image_originale) $xcrop = $largeur_image_originale-$wcrop;
|
|
|
708 |
if ($ycrop < 0) $ycrop = 0;
|
|
|
709 |
if ($ycrop+$hcrop > $hauteur_image_originale) $ycrop = $hauteur_image_originale-$hcrop;
|
|
|
710 |
|
|
|
711 |
$beta = 0;
|
|
|
712 |
for ($c=0; $c<$n; $c++) {
|
|
|
713 |
$i = mt_rand(0,$wcrop-1);
|
|
|
714 |
$j = mt_rand(0,$hcrop-1);
|
|
|
715 |
$beta += imagecolorat($im, $xcrop+$i, $ycrop+$j) & 0xFF;
|
|
|
716 |
}
|
|
|
717 |
$area = $wcrop * $hcrop;
|
|
|
718 |
$betanorm = $beta / ($n*pow($area, $gamma-1));
|
|
|
719 |
// echo("beta: $beta; betan: $betanorm");
|
|
|
720 |
// echo("image$k.jpg:<br/>\n<img src=\"$currfile\"/>");
|
|
|
721 |
// best image found, save it
|
|
|
722 |
|
|
|
723 |
if ($betanorm > $maxbetanorm) {
|
|
|
724 |
|
|
|
725 |
$maxbetanorm = $betanorm;
|
|
|
726 |
$maxparam['w'] = $wcrop;
|
|
|
727 |
$maxparam['h'] = $hcrop;
|
|
|
728 |
$maxparam['x'] = $xcrop;
|
|
|
729 |
$maxparam['y'] = $ycrop;
|
|
|
730 |
// $maxfile = $currfile;
|
|
|
731 |
}
|
|
|
732 |
}
|
|
|
733 |
|
|
|
734 |
// écrasement de l'image par la version "croppée"
|
|
|
735 |
$imgcp->cropImage($maxparam['w'], $maxparam['h'], $maxparam['x'], $maxparam['y']);
|
|
|
736 |
$imgcp->scaleImage($largeur_vignette, $hauteur_vignette);
|
|
|
737 |
$imgcp->writeImage($out);
|
|
|
738 |
|
|
|
739 |
// return image
|
|
|
740 |
chmod($out, 0777);
|
|
|
741 |
$img->destroy();
|
|
|
742 |
$imgcp->destroy();
|
|
|
743 |
$image_sortie = ImageCreateFromJpeg($out);
|
|
|
744 |
} else {
|
|
|
745 |
// image n'a pas pu être croppée - on retourne l'originale
|
|
|
746 |
//$image_sortie = ImageCreateFromJpeg($chemin_image);
|
|
|
747 |
$image_sortie = false;
|
|
|
748 |
}
|
|
|
749 |
|
|
|
750 |
// destruction fichier temporaire dans tous les cas
|
|
|
751 |
unlink($out);
|
|
|
752 |
|
|
|
753 |
return $image_sortie;
|
632 |
aurelien |
754 |
}
|
2462 |
jpm |
755 |
}
|