Created
April 4, 2013 08:33
-
-
Save khamidou/5308763 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// je fais une fonction pour calculer une correction sur des images | |
function composeImages($bottomImage, $topImage, $x, $y) { | |
$y_diff = $topImage->getImageHeight / 2; // ici j'oublie de mettre une parenthèse à mon appel de fonction | |
// ça passe parce que php met ça à 0 | |
$corrected_y = $y - $y_diff; // du coup il n'y a pas de correction | |
// j'en déduis que ça marche et je m'autocongratule | |
... | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment