Gregwar / Image

A PHP library to handle images
MIT License
1k stars 191 forks source link

Function guess() not working #20

Closed 10257 closed 11 years ago

10257 commented 11 years ago

I'm having an issue with the function guess() The saved image is always a .jpeg.

From the demo cache.php :

echo Image::open('img/test.png')->sepia()->guess();
result in: cache/images/1/2/3/7/f/1bdb743fb85b8445cf12a0a58a25e3edaa0.jpeg

I found a solution with the following work around :

$img = Image::open('img/test.png');
$type = $img->guessType();
$img->sepia()->cacheFile($type);
Gregwar commented 11 years ago

(I guess you're french, if you're not tell me)

Bonjour et merci pour tes issues, je suis actuellement en déplacement je ne peux pas coder avant la semaine prochaine

As tu installé l'extension exif pour php?

10257 commented 11 years ago

(On dirait que mon anglais m'a trahi... :))

Bonjour

L'extension est bien installé et activé!

Gregwar commented 11 years ago

Plutôt le nom "Jean Yves" :-)

Ok j'enqueterai dessus la semaine prochaine du coup Le 18 mai 2013 17:30, "Jean Yves" notifications@github.com a écrit :

(On dirait que mon anglais m'a trahi... :))

Bonjour

L'extension est bien installé et activé!

— Reply to this email directly or view it on GitHubhttps://github.com/Gregwar/Image/issues/20#issuecomment-18102952 .

Gregwar commented 11 years ago

Je viens de commiter une correction, ça devrait être bon maintenant

10257 commented 11 years ago

Ouip ca marche! merci :)