Skip to content
Extraits de code Groupes Projets
Valider 58f489e1 rédigé par ARNO*'s avatar ARNO*
Parcourir les fichiers

Nouvelle methode de resize: djpeg | pnmscale | cjpeg

parent 489a964f
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -85,6 +85,9 @@ else { ...@@ -85,6 +85,9 @@ else {
case 'gd2': case 'gd2':
$formats_graphiques = lire_meta('gd_formats'); $formats_graphiques = lire_meta('gd_formats');
break; break;
case 'netpbm':
$formats_graphiques = 'jpg';
break;
case 'convert': case 'convert':
$formats_graphiques = 'gif,jpg,png'; $formats_graphiques = 'gif,jpg,png';
break; break;
...@@ -109,10 +112,16 @@ else { ...@@ -109,10 +112,16 @@ else {
} }
} }
afficher_choix_vignette($p = 'netpbm');
$nb_process ++;
if ($convert_command) { if ($convert_command) {
afficher_choix_vignette($p = 'convert'); afficher_choix_vignette($p = 'convert');
$nb_process ++; $nb_process ++;
} }
echo "</tr></table>\n"; echo "</tr></table>\n";
......
...@@ -194,7 +194,7 @@ function image_ratio ($srcWidth, $srcHeight, $maxWidth, $maxHeight) { ...@@ -194,7 +194,7 @@ function image_ratio ($srcWidth, $srcHeight, $maxWidth, $maxHeight) {
} }
function creer_vignette($image, $maxWidth, $maxHeight, $format, $destination, $process='AUTO', $force=false) { function creer_vignette($image, $maxWidth, $maxHeight, $format, $destination, $process='AUTO', $force=false) {
global $convert_command; global $convert_command, $djpeg_command, $cjpeg_command, $pnmscale_command;
// ordre de preference des formats graphiques pour creer les vignettes // ordre de preference des formats graphiques pour creer les vignettes
// le premier format disponible, selon la methode demandee, est utilise // le premier format disponible, selon la methode demandee, est utilise
...@@ -257,7 +257,14 @@ function creer_vignette($image, $maxWidth, $maxHeight, $format, $destination, $p ...@@ -257,7 +257,14 @@ function creer_vignette($image, $maxWidth, $maxHeight, $format, $destination, $p
imagick_write($handle, $vignette); imagick_write($handle, $vignette);
if (!@file_exists($vignette)) return; // echec imagick if (!@file_exists($vignette)) return; // echec imagick
} }
else if ($process == "netpbm") {
if ($format == "jpg") {
$vignette = $destination.".".$format;
exec("$djpeg_command $image | $pnmscale_command -width $destWidth | $cjpeg_command -outfile $vignette");
if (!@file_exists($vignette))
return; // echec commande
}
}
// gd ou gd2 // gd ou gd2
if ($process == 'gd1' OR $process == 'gd2') { if ($process == 'gd1' OR $process == 'gd2') {
......
...@@ -126,6 +126,10 @@ $type_urls = 'standard'; ...@@ -126,6 +126,10 @@ $type_urls = 'standard';
// le chemin complet '/bin/convert' (Linux) ou '/sw/bin/convert' (fink/Mac OS X) // le chemin complet '/bin/convert' (Linux) ou '/sw/bin/convert' (fink/Mac OS X)
// Note : preferer GD2 ou le module php imagick s'ils sont disponibles // Note : preferer GD2 ou le module php imagick s'ils sont disponibles
$convert_command = 'convert'; $convert_command = 'convert';
// creation des vignettes avec djpeg/pnmscale/cjpeg
$djpeg_command = 'djpeg';
$cjpeg_command = 'cjpeg';
$pnmscale_command = 'pnmscale';
// faut-il passer les connexions MySQL en mode debug ? // faut-il passer les connexions MySQL en mode debug ?
$mysql_debug = false; $mysql_debug = false;
......
...@@ -78,7 +78,7 @@ function tester_vignette ($test_vignette) { ...@@ -78,7 +78,7 @@ function tester_vignette ($test_vignette) {
} }
// et maintenant envoyer la vignette de tests // et maintenant envoyer la vignette de tests
if (ereg("^(gd1|gd2|imagick|convert)$", $test_vignette)) { if (ereg("^(gd1|gd2|imagick|convert|netpbm)$", $test_vignette)) {
include_ecrire('inc_logos.php3'); include_ecrire('inc_logos.php3');
$taille_preview = lire_meta("taille_preview"); $taille_preview = lire_meta("taille_preview");
if ($taille_preview < 10) $taille_preview = 120; if ($taille_preview < 10) $taille_preview = 120;
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter