function flipImage($image, $vertical, $horizontal) {
$w = imagesx($image);
$h = imagesy($image);
if (!$vertical && !$horizontal) return $image;
$flipped = imagecreatetruecolor($w, $h);
if ($vertical) {
for ($y=0; $y<$h; $y++) {
imagecopy($flipped, $image, 0, $y, 0, $h - $y - 1, $w, 1);
}
}
if ($horizontal) {
if ($vertical) {
$image = $flipped;
$flipped = imagecreatetruecolor($w, $h);
}
for ($x=0; $x<$w; $x++) {
imagecopy($flipped, $image, $x, 0, $w - $x - 1, 0, 1, $h);
}
}
return $flipped;
}
[Wednesday, January 09, 2008
|
0
comments
]
Popular Posts
- Jquery based dynamic adding and removal of html elements.
- Creating Google map and adding markers ans polyline on it
- php question
- Questoin regarding classes
- Contact Me
- creating dynamic elements in HTML using Javascript.
- functiion for MD5 encrypting and decrypting
- Php Questions
- PHP Question and answers
- function to calculate difference between two dates
0 comments
Post a Comment
Please put your comments here. your questions, your suggestions, also what went wrong with me.