]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
fixed compile error
authorKeiron Liddle <keiron@apache.org>
Mon, 8 Jul 2002 08:48:26 +0000 (08:48 +0000)
committerKeiron Liddle <keiron@apache.org>
Mon, 8 Jul 2002 08:48:26 +0000 (08:48 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194983 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/image/JimiImage.java

index a4b3113b59eddb850dce0f71456c25e17271a4aa..80bdb609b1f3b64875932144a768b43d76628967 100644 (file)
@@ -131,8 +131,8 @@ public class JimiImage extends AbstractFopImage {
         for (int i = 0; i < this.m_height; i++) {
             for (int j = 0; j < this.m_width; j++) {
                 int p = tmpMap[i * this.m_width + j];
-                int r = (p > > 16) & 0xFF;
-                int g = (p > > 8) & 0xFF;
+                int r = (p >> 16) & 0xFF;
+                int g = (p >> 8) & 0xFF;
                 int b = (p) & 0xFF;
                 this.m_bitmaps[3 * (i * this.m_width + j)] =
                   (byte)(r & 0xFF);