[spip-dev] étranges vignettes

Salut!
Histoire de m’amuser un peu j’ai fait un test sur un grand nombre de vignettes hier soir, voila le resultat:
http://www.camenerve.net/barafilm/article.php3?id_article=3

Vos yeux avertis auront remarqué la qualité désastreuse de certaines vignettes. Est-ce normal docteur?

Voilà ce qu’a dit mon hébergeur il y a quelques mois sur les vignettes et GD, un rapport?:
http://www.oxyd.fr/scripts/forum/viewthread.php?tid=502

A plus!
David

Merci pour le lien, en espérant que ça soit la solution à notre problème.
J'ai fait une tentative de correction dans le CVS, que tu peux récupérer à
l'endroit habituel (fichier spip_image.php3)

Comme j'ai dû faire ça en aveugle, je compte sur vous pour tester !

Vos yeux avertis auront remarqué la qualité désastreuse de certaines
vignettes. Est-ce normal docteur?

Voilà ce qu'a dit mon hébergeur il y a quelques mois sur les vignettes et GD, un rapport?:
http://www.oxyd.fr/scripts/forum/viewthread.php?tid=502

-- Fil

Ce serait peut-être mieux d'utiliser imagecopyresampled()
si dispo
http://uk.php.net/manual/en/function.imagecopyresampled.php

Fil wrote:

Fragment de code qui a l'air intéresant :

Here is the code I used to resize a given image:

$src_img = imagecreatefromjpeg("/path/to/$my_src_file");
$dst_img = imagecreatetruecolor($dest_width,$dest_height);
imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $dest_width,
$dest_height, $src_width, $src_height);
imagejpeg($dst_img, "/path/to/storage/new_file.jpg", $quality);
imagedestroy($src_img);
imagedestroy($dst_img);

As mentioned previously, it is very important to use 'imagecreatetruecolor'
to allocate memory for your new image... it will not be the correct color
otherwise.

@ Antoine Pitrou <antoine@rezo.net> :

Ce serait peut-être mieux d'utiliser imagecopyresampled()
si dispo
http://uk.php.net/manual/en/function.imagecopyresampled.php

-- Fil