From 8d922ef0624485c509978a8184e2b1d1c51a1fd7 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Mon, 22 Feb 2010 23:20:13 -0800 Subject: [PATCH] fixed rotation: for some reason 90 and 270 degrees had to be switched --- phpfspot.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/phpfspot.class.php b/phpfspot.class.php index 5dedc2c..111b03e 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -1770,13 +1770,13 @@ class PHPFSPOT { case 4: /* bottom, right */ $flip_vert = true; break; case 5: /* left side, top */ - $rotate = 90; $flip_vert = true; break; + $rotate = 270; $flip_vert = true; break; case 6: /* right side, top */ - $rotate = 90; break; + $rotate = 270; break; case 7: /* left side, bottom */ - $rotate = 270; $flip_vert = true; break; + $rotate = 90; $flip_vert = true; break; case 8: /* right side, bottom */ - $rotate = 270; break; + $rotate = 90; break; } } -- 2.25.1