JAL-4375 I don't think turning off antialiasing is necessary and possibly not appropriate
[jalview.git] / src / jalview / renderer / AnnotationRenderer.java
index 9a0081f..0fbfb02 100644 (file)
@@ -28,10 +28,16 @@ import java.awt.Graphics;
 import java.awt.Graphics2D;
 import java.awt.Image;
 import java.awt.RenderingHints;
+import java.awt.Stroke;
 import java.awt.geom.AffineTransform;
 import java.awt.image.ImageObserver;
 import java.util.BitSet;
+import java.util.HashMap;
 import java.util.Hashtable;
+import java.util.Map;
+
+import org.jfree.graphics2d.svg.SVGGraphics2D;
+import org.jibble.epsgraphics.EpsGraphics2D;
 
 import jalview.analysis.AAFrequency;
 import jalview.analysis.CodingUtils;
@@ -91,6 +97,10 @@ public class AnnotationRenderer
 
   private boolean av_ignoreGapsConsensus;
 
+  private boolean renderingVectors = false;
+
+  private boolean glyphLineDrawn = false;
+
   /**
    * attributes set from AwtRenderPanelI
    */
@@ -167,7 +177,6 @@ public class AnnotationRenderer
           int x, int y, int iconOffset, int startRes, int column,
           boolean validRes, boolean validEnd)
   {
-    g.setColor(STEM_COLOUR);
     int sCol = (lastSSX / charWidth)
             + hiddenColumns.visibleToAbsoluteColumn(startRes);
     int x1 = lastSSX;
@@ -177,11 +186,19 @@ public class AnnotationRenderer
             : row_annotations[column - 1].secondaryStructure;
 
     boolean diffupstream = sCol == 0 || row_annotations[sCol - 1] == null
-            || dc != row_annotations[sCol - 1].secondaryStructure;
+            || dc != row_annotations[sCol - 1].secondaryStructure
+            || !validEnd;
     boolean diffdownstream = !validRes || !validEnd
             || row_annotations[column] == null
             || dc != row_annotations[column].secondaryStructure;
 
+    if (diffupstream || diffdownstream)
+    {
+      // draw glyphline under arrow
+      drawGlyphLine(g, lastSSX, x, y, iconOffset);
+    }
+    g.setColor(STEM_COLOUR);
+
     if (column > 0 && Rna.isClosingParenthesis(dc))
     {
       if (diffupstream)
@@ -194,7 +211,8 @@ public class AnnotationRenderer
          */
         fillPolygon(g, new int[] { lastSSX + 5, lastSSX + 5, lastSSX },
                 new int[]
-                { y + iconOffset, y + 14 + iconOffset, y + 8 + iconOffset },
+                { y + iconOffset + 1, y + 13 + iconOffset,
+                    y + 7 + iconOffset },
                 3);
         x1 += 5;
       }
@@ -212,9 +230,10 @@ public class AnnotationRenderer
          * if annotation ending with an opeing base pair half of the stem, 
          * display a forward arrow
          */
-        fillPolygon(g, new int[] { x2 - 5, x2 - 5, x2 },
+        fillPolygon(g, new int[] { x2 - 6, x2 - 6, x2 - 1 },
                 new int[]
-                { y + iconOffset, y + 14 + iconOffset, y + 8 + iconOffset },
+                { y + iconOffset + 1, y + 13 + iconOffset,
+                    y + 7 + iconOffset },
                 3);
         x2 -= 5;
       }
@@ -224,7 +243,8 @@ public class AnnotationRenderer
       }
     }
     // draw arrow body
-    fillRect(g, x1, y + 4 + iconOffset, x2 - x1, 7);
+    unsetAntialias(g);
+    fillRect(g, x1, y + 4 + iconOffset, x2 - x1, 6);
   }
 
   void drawNotCanonicalAnnot(Graphics g, Color nonCanColor,
@@ -243,7 +263,8 @@ public class AnnotationRenderer
             : row_annotations[column - 1].displayCharacter;
 
     boolean diffupstream = sCol == 0 || row_annotations[sCol - 1] == null
-            || !dc.equals(row_annotations[sCol - 1].displayCharacter);
+            || !dc.equals(row_annotations[sCol - 1].displayCharacter)
+            || !validEnd;
     boolean diffdownstream = !validRes || !validEnd
             || row_annotations[column] == null
             || !dc.equals(row_annotations[column].displayCharacter);
@@ -254,8 +275,7 @@ public class AnnotationRenderer
     if (diffupstream || diffdownstream)
     {
       // draw glyphline under arrow
-      this.drawGlyphLine(g, row_annotations, lastSSX, x, y, iconOffset,
-              startRes, column, validRes, validEnd);
+      drawGlyphLine(g, lastSSX, x, y, iconOffset);
     }
     g.setColor(nonCanColor);
     if (column > 0 && Rna.isClosingParenthesis(dc))
@@ -297,7 +317,7 @@ public class AnnotationRenderer
     }
     // draw arrow body
     unsetAntialias(g);
-    fillRect(g, x1 - 1, y + 4 + iconOffset, x2 - x1 + 1, 6);
+    fillRect(g, x1, y + 4 + iconOffset, x2 - x1, 6);
   }
 
   // public void updateFromAnnotationPanel(FontMetrics annotFM, AlignViewportI
@@ -460,16 +480,11 @@ public class AnnotationRenderer
           AlignViewportI av, Graphics g, int activeRow, int startRes,
           int endRes)
   {
-    Graphics2D g2d = (Graphics2D) g;
-    /*
-    if (Cache.getDefault("ANTI_ALIAS", true))
+    if (g instanceof EpsGraphics2D || g instanceof SVGGraphics2D)
     {
-      g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
-              RenderingHints.VALUE_ANTIALIAS_ON);
-      g2d.setRenderingHint(RenderingHints.KEY_STROKE_CONTROL,
-              RenderingHints.VALUE_STROKE_PURE);
+      this.setVectorRendering(true);
     }
-    */
+    Graphics2D g2d = (Graphics2D) g;
 
     long stime = System.currentTimeMillis();
     boolean usedFaded = false;
@@ -616,9 +631,13 @@ public class AnnotationRenderer
          * 
          * continue; }
          */
+
         // first pass sets up state for drawing continuation from left-hand
         // column
         // of startRes
+
+        // flag used for vector rendition
+        this.glyphLineDrawn = false;
         x = (startRes == 0) ? 0 : -1;
         while (x < endRes - startRes)
         {
@@ -806,7 +825,7 @@ public class AnnotationRenderer
             if (!validRes || (ss != lastSS))
             {
 
-              if (x > -1)
+              if (x > 0)
               {
 
                 // int nb_annot = x - temp;
@@ -905,13 +924,17 @@ public class AnnotationRenderer
                   // temp = x;
                   break;
                 default:
-                  unsetAntialias(g);
-                  g.setColor(GLYPHLINE_COLOR);
-                  g.fillRect(lastSSX, y + 6 + iconOffset,
-                          (x * charWidth) - lastSSX, 2);
-                  g.drawRect(lastSSX, y + 6 + iconOffset,
-                          (x * charWidth) - lastSSX - 1, 2);
-                  // temp = x;
+                  if (isVectorRendering())
+                  {
+                    // draw single full width glyphline
+                    drawGlyphLine(g, lastSSX, endRes - x, y, iconOffset);
+                    // disable more glyph lines
+                    this.glyphLineDrawn = true;
+                  }
+                  else
+                  {
+                    drawGlyphLine(g, lastSSX, x, y, iconOffset);
+                  }
                   break;
                 }
               }
@@ -1042,8 +1065,17 @@ public class AnnotationRenderer
                     x, y, iconOffset, startRes, column, validRes, validEnd);
             break;
           default:
-            drawGlyphLine(g, row_annotations, lastSSX, x, y, iconOffset,
-                    startRes, column, validRes, validEnd);
+            if (isVectorRendering())
+            {
+              // draw single full width glyphline
+              drawGlyphLine(g, lastSSX, endRes - x, y, iconOffset);
+              // disable more glyph lines
+              this.glyphLineDrawn = true;
+            }
+            else
+            {
+              drawGlyphLine(g, lastSSX, x, y, iconOffset);
+            }
             break;
           }
         }
@@ -1110,7 +1142,7 @@ public class AnnotationRenderer
               renderer.renderRow(g, charWidth, charHeight, hasHiddenColumns,
                       av, hiddenColumns, columnSelection, row,
                       row_annotations, startRes, endRes, row.graphMin,
-                      row.graphMax, y);
+                      row.graphMax, y, isVectorRendering());
             }
             if (debugRedraw)
             {
@@ -1170,7 +1202,7 @@ public class AnnotationRenderer
 
   public static final Color GLYPHLINE_COLOR = Color.gray;
 
-  public static final Color SHEET_COLOUR = Color.green.darker();
+  public static final Color SHEET_COLOUR = Color.green;
 
   public static final Color HELIX_COLOUR = Color.red;
 
@@ -1178,15 +1210,17 @@ public class AnnotationRenderer
 
   // private Color sdNOTCANONICAL_COLOUR;
 
-  void drawGlyphLine(Graphics g, Annotation[] row, int lastSSX, int x,
-          int y, int iconOffset, int startRes, int column, boolean validRes,
-          boolean validEnd)
+  void drawGlyphLine(Graphics g, int lastSSX, int x, int y, int iconOffset)
   {
+    if (glyphLineDrawn)
+    {
+      // if we've drawn a single long glyphline for an export, don't draw the
+      // bits
+      return;
+    }
     unsetAntialias(g);
     g.setColor(GLYPHLINE_COLOR);
     g.fillRect(lastSSX, y + 6 + iconOffset, (x * charWidth) - lastSSX, 2);
-    g.drawRect(lastSSX, y + 6 + iconOffset, (x * charWidth) - lastSSX - 1,
-            2);
   }
 
   void drawSheetAnnot(Graphics g, Annotation[] row,
@@ -1198,8 +1232,8 @@ public class AnnotationRenderer
             || row[column].secondaryStructure != 'E')
     {
       // draw the glyphline underneath
-      drawGlyphLine(g, row, lastSSX, x, y, iconOffset, startRes, column,
-              validRes, validEnd);
+      drawGlyphLine(g, lastSSX, x, y, iconOffset);
+
       g.setColor(SHEET_COLOUR);
       fillRect(g, lastSSX, y + 4 + iconOffset,
               (x * charWidth) - lastSSX - 4, 6);
@@ -1215,7 +1249,8 @@ public class AnnotationRenderer
     else
     {
       g.setColor(SHEET_COLOUR);
-      fillRect(g, lastSSX, y + 4 + iconOffset, x * charWidth - lastSSX, 6);
+      fillRect(g, lastSSX, y + 4 + iconOffset, (x * charWidth) - lastSSX,
+              6);
     }
   }
 
@@ -1223,29 +1258,29 @@ public class AnnotationRenderer
           int y, int iconOffset, int startRes, int column, boolean validRes,
           boolean validEnd)
   {
-    g.setColor(HELIX_COLOUR);
-
     int sCol = (lastSSX / charWidth)
             + hiddenColumns.visibleToAbsoluteColumn(startRes);
     int x1 = lastSSX;
     int x2 = (x * charWidth);
 
-    y--;
-
-    if (USE_FILL_ROUND_RECT)
+    if (USE_FILL_ROUND_RECT || isVectorRendering())
     {
+      // draw glyph line behind helix (visible in EPS or SVG output)
+      drawGlyphLine(g, lastSSX, x, y, iconOffset);
+
+      g.setColor(HELIX_COLOUR);
+      setAntialias(g);
       int ofs = charWidth / 2;
       // Off by 1 offset when drawing rects and ovals
       // to offscreen image on the MAC
-      fillRoundRect(g, lastSSX, y + 4 + iconOffset, x2 - x1 - 1, 8, 8, 8);
+      fillRoundRect(g, lastSSX, y + 3 + iconOffset, x2 - x1 - 1, 8, 8, 8);
       if (sCol == 0 || row[sCol - 1] == null
               || row[sCol - 1].secondaryStructure != 'H')
       {
       }
       else
       {
-        // g.setColor(Color.orange);
-        fillRoundRect(g, lastSSX, y + 4 + iconOffset, x2 - x1 - ofs, 8, 0,
+        fillRoundRect(g, lastSSX, y + 3 + iconOffset, x2 - x1 - ofs, 8, 0,
                 0);
       }
       if (!validRes || row[column] == null
@@ -1255,31 +1290,38 @@ public class AnnotationRenderer
       }
       else
       {
-        // g.setColor(Color.magenta);
-        fillRoundRect(g, lastSSX + ofs, y + 4 + iconOffset, x2 - x1 - ofs,
+        fillRoundRect(g, lastSSX + ofs, y + 3 + iconOffset, x2 - x1 - ofs,
                 8, 0, 0);
-
       }
 
       return;
     }
 
-    if (sCol == 0 || row[sCol - 1] == null
-            || row[sCol - 1].secondaryStructure != 'H')
+    boolean leftEnd = sCol == 0 || row[sCol - 1] == null
+            || row[sCol - 1].secondaryStructure != 'H';
+    boolean rightEnd = !validRes || row[column] == null
+            || row[column].secondaryStructure != 'H';
+
+    if (leftEnd || rightEnd)
     {
-      fillArc(g, lastSSX, y + 4 + iconOffset, charWidth, 8, 90, 180);
+      drawGlyphLine(g, lastSSX, x, y, iconOffset);
+    }
+    g.setColor(HELIX_COLOUR);
+
+    if (leftEnd)
+    {
+      fillArc(g, lastSSX, y + 3 + iconOffset, charWidth, 8, 90, 180);
       x1 += charWidth / 2;
     }
 
-    if (!validRes || row[column] == null
-            || row[column].secondaryStructure != 'H')
+    if (rightEnd)
     {
-      fillArc(g, (x * charWidth) - charWidth - 1, y + 4 + iconOffset,
-              charWidth, 8, 270, 180);
+      fillArc(g, ((x - 1) * charWidth), y + 3 + iconOffset, charWidth, 8,
+              270, 180);
       x2 -= charWidth / 2;
     }
 
-    fillRect(g, x1, y + 4 + iconOffset, x2 - x1, 8);
+    fillRect(g, x1, y + 3 + iconOffset, x2 - x1, 8);
   }
 
   void drawLineGraph(Graphics g, AlignmentAnnotation _aa,
@@ -1290,6 +1332,13 @@ public class AnnotationRenderer
     {
       return;
     }
+    Stroke roundStroke = new BasicStroke(1, BasicStroke.CAP_ROUND,
+            BasicStroke.JOIN_ROUND);
+    Stroke squareStroke = new BasicStroke(1, BasicStroke.CAP_SQUARE,
+            BasicStroke.JOIN_MITER);
+    Graphics2D g2d = (Graphics2D) g;
+    Stroke prevStroke = g2d.getStroke();
+    g2d.setStroke(roundStroke);
 
     int x = 0;
 
@@ -1301,11 +1350,6 @@ public class AnnotationRenderer
 
     eRes = Math.min(eRes, aa_annotations.length);
 
-    if (sRes == 0)
-    {
-      x++;
-    }
-
     int y1 = y, y2 = y;
     float range = max - min;
 
@@ -1315,16 +1359,21 @@ public class AnnotationRenderer
       y2 = y - (int) ((0 - min / range) * graphHeight);
     }
 
-    setAntialias(g);
     g.setColor(Color.gray);
-    g.drawLine(x - charWidth, y2, (eRes - sRes + 1) * charWidth, y2);
+    drawLine(g, squareStroke, x * charWidth, y2, (eRes - sRes) * charWidth,
+            y2);
+
+    if (sRes == 0)
+    {
+      x++;
+    }
 
     eRes = Math.min(eRes, aa_annotations.length);
 
     int column;
     int aaMax = aa_annotations.length - 1;
 
-    while (x < eRes - sRes)
+    while (x <= eRes - sRes)
     {
       column = sRes + x;
       if (hasHiddenColumns)
@@ -1352,32 +1401,55 @@ public class AnnotationRenderer
         g.setColor(aa_annotations[column].colour);
       }
 
-      if (aa_annotations[column - 1] == null
-              && aa_annotations.length > column + 1
-              && aa_annotations[column + 1] == null)
+      boolean previousValueExists = column > 0
+              && aa_annotations[column - 1] != null;
+      float previousValue = previousValueExists
+              ? aa_annotations[column - 1].value
+              : 0;
+      float thisValue = aa_annotations[column].value;
+      boolean nextValueExists = aa_annotations.length > column + 1
+              && aa_annotations[column + 1] != null;
+      float nextValue = nextValueExists ? aa_annotations[column + 1].value
+              : 0;
+
+      // check for standalone value
+      if (!previousValueExists && !nextValueExists)
       {
-        // standalone value
-        y1 = y - (int) (((aa_annotations[column].value - min) / range)
-                * graphHeight);
-        g.drawLine(x * charWidth + charWidth / 4, y1,
-                x * charWidth + 3 * charWidth / 4, y1);
+        y2 = y - yValueToPixelHeight(thisValue, min, range, graphHeight);
+        drawLine(g, x * charWidth + charWidth / 4, y2,
+                x * charWidth + 3 * charWidth / 4, y2);
         x++;
         continue;
       }
 
-      if (aa_annotations[column - 1] == null)
+      if (!previousValueExists)
       {
         x++;
         continue;
       }
 
-      y1 = y - (int) (((aa_annotations[column - 1].value - min) / range)
-              * graphHeight);
-      y2 = y - (int) (((aa_annotations[column].value - min) / range)
-              * graphHeight);
+      y1 = y - yValueToPixelHeight(previousValue, min, range, graphHeight);
+      y2 = y - yValueToPixelHeight(thisValue, min, range, graphHeight);
+
+      if (x == 0)
+      {
+        // only draw an initial half-line
+        drawLine(g, x * charWidth, y1 + (y2 - y1) / 2,
+                x * charWidth + charWidth / 2, y2);
 
-      g.drawLine(x * charWidth - charWidth / 2, y1,
-              x * charWidth + charWidth / 2, y2);
+      }
+      else if (x == eRes - sRes)
+      {
+        // this is one past the end to draw -- only draw a half line
+        drawLine(g, (x - 1) * charWidth + charWidth / 2, y1,
+                x * charWidth - 1, y1 + (y2 - y1) / 2);
+
+      }
+      else
+      {
+        drawLine(g, (x - 1) * charWidth + charWidth / 2, y1,
+                x * charWidth + charWidth / 2, y2);
+      }
       x++;
     }
 
@@ -1385,14 +1457,48 @@ public class AnnotationRenderer
     {
       g.setColor(_aa.threshold.colour);
       Graphics2D g2 = (Graphics2D) g;
-      g2.setStroke(new BasicStroke(1, BasicStroke.CAP_SQUARE,
-              BasicStroke.JOIN_ROUND, 3f, new float[]
-              { 5f, 3f }, 0f));
-
       y2 = (int) (y - ((_aa.threshold.value - min) / range) * graphHeight);
-      g.drawLine(0, y2, (eRes - sRes) * charWidth, y2);
-      g2.setStroke(new BasicStroke());
+      drawLine(g, dashedLine(charWidth), 0, y2, (eRes - sRes) * charWidth,
+              y2);
+    }
+    g2d.setStroke(prevStroke);
+  }
+
+  private static double log2 = Math.log(2);
+
+  // Cached dashed line Strokes
+  private static Map<Integer, Stroke> dashedLineLookup = new HashMap<>();
+
+  /**
+   * Returns a dashed line stroke as close to 6-4 pixels as fits within the
+   * charWidth. This allows translations of multiples of charWidth without
+   * disrupting the dashed line. The exact values are 0.6-0.4 proportions of
+   * charWidth for charWidth under 16. For charWidth 16 or over, the number of
+   * dashes doubles as charWidth doubles.
+   * 
+   * @param charWidth
+   * @return Stroke with appropriate dashed line fitting exactly within the
+   *         charWidth
+   */
+  private static Stroke dashedLine(int charWidth)
+  {
+    if (!dashedLineLookup.containsKey(charWidth))
+    {
+      int power2 = charWidth >= 8 ? (int) (Math.log(charWidth) / log2) : 2;
+      float width = ((float) charWidth) / ((float) Math.pow(2, power2 - 3));
+      float segment1 = width * 0.6f;
+      float segment2 = width - segment1;
+      dashedLineLookup.put(charWidth, new BasicStroke(1,
+              BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND, 3f, new float[]
+              { segment1, segment2 }, 0f));
     }
+    return dashedLineLookup.get(charWidth);
+  }
+
+  private static int yValueToPixelHeight(float value, float min,
+          float range, int graphHeight)
+  {
+    return (int) (((value - min) / range) * graphHeight);
   }
 
   @SuppressWarnings("unused")
@@ -1419,7 +1525,7 @@ public class AnnotationRenderer
 
     g.setColor(Color.gray);
 
-    g.drawLine(x, y2, (eRes - sRes) * charWidth, y2);
+    drawLine(g, x, y2, (eRes - sRes) * charWidth, y2);
 
     int column;
     int aaMax = aa_annotations.length - 1;
@@ -1559,12 +1665,6 @@ public class AnnotationRenderer
             }
             g.setColor(colour == Color.white ? Color.lightGray : colour);
 
-            // Debug - render boxes around characters
-            // g.setColor(Color.red);
-            // g.drawRect(x*av.charWidth, (int)ht, av.charWidth,
-            // (int)(scl));
-            // g.setColor(profcolour.findColour(dc[0]).darker());
-
             double sx = 1f * charWidth / fm.charsWidth(dc, 0, dc.length);
             double sy = newHeight / asc;
             double newAsc = asc * sy;
@@ -1618,15 +1718,13 @@ public class AnnotationRenderer
     if (_aa.threshold != null)
     {
       g.setColor(_aa.threshold.colour);
-      Graphics2D g2 = (Graphics2D) g;
-      g2.setStroke(new BasicStroke(1, BasicStroke.CAP_SQUARE,
+      Stroke s = new BasicStroke(1, BasicStroke.CAP_SQUARE,
               BasicStroke.JOIN_ROUND, 3f, new float[]
-              { 5f, 3f }, 0f));
+              { 5f, 3f }, 0f);
 
       y2 = (int) (y
               - ((_aa.threshold.value - min) / range) * _aa.graphHeight);
-      g.drawLine(0, y2, (eRes - sRes) * charWidth, y2);
-      g2.setStroke(new BasicStroke());
+      drawLine(g, s, 0, y2, (eRes - sRes) * charWidth, y2);
     }
   }
 
@@ -1793,40 +1891,59 @@ public class AnnotationRenderer
     }
   }
 
-  private static void fillPolygon(Graphics g, int[] xpoints, int[] ypoints,
-          int n)
+  private void fillPolygon(Graphics g, int[] xpoints, int[] ypoints, int n)
   {
-    unsetAntialias(g);
-    g.fillPolygon(xpoints, ypoints, n);
     setAntialias(g);
     g.fillPolygon(xpoints, ypoints, n);
-    g.drawPolygon(xpoints, ypoints, n);
   }
 
-  private static void fillRect(Graphics g, int a, int b, int c, int d)
+  /*
+  private void fillRect(Graphics g, int a, int b, int c, int d)
   {
+    fillRect(g, false, a, b, c, d);
+  }*/
+
+  private void fillRect(Graphics g, int a, int b, int c, int d)
+  {
+    unsetAntialias(g);
     g.fillRect(a, b, c, d);
-    g.drawRect(a, b, c, d);
   }
 
-  private static void fillRoundRect(Graphics g, int a, int b, int c, int d,
-          int e, int f)
+  private void fillRoundRect(Graphics g, int a, int b, int c, int d, int e,
+          int f)
   {
     setAntialias(g);
     g.fillRoundRect(a, b, c, d, e, f);
-    g.drawRoundRect(a, b, c, d, e, f);
   }
 
-  private static void fillArc(Graphics g, int a, int b, int c, int d, int e,
-          int f)
+  private void fillArc(Graphics g, int a, int b, int c, int d, int e, int f)
   {
     setAntialias(g);
     g.fillArc(a, b, c, d, e, f);
-    g.drawArc(a, b, c, d, e, f);
   }
 
-  private static void setAntialias(Graphics g)
+  private void drawLine(Graphics g, Stroke s, int a, int b, int c, int d)
   {
+    Graphics2D g2d = (Graphics2D) g;
+    Stroke p = g2d.getStroke();
+    g2d.setStroke(s);
+    drawLine(g, a, b, c, d);
+    g2d.setStroke(p);
+  }
+
+  private void drawLine(Graphics g, int a, int b, int c, int d)
+  {
+    setAntialias(g);
+    g.drawLine(a, b, c, d);
+  }
+
+  private void setAntialias(Graphics g)
+  {
+    if (isVectorRendering())
+    {
+      // no need to antialias vector drawings
+      return;
+    }
     if (Cache.getDefault("ANTI_ALIAS", true))
     {
       Graphics2D g2d = (Graphics2D) g;
@@ -1835,10 +1952,25 @@ public class AnnotationRenderer
     }
   }
 
-  private static void unsetAntialias(Graphics g)
+  private void unsetAntialias(Graphics g)
   {
+    if (isVectorRendering())
+    {
+      // no need to antialias vector drawings
+      return;
+    }
     Graphics2D g2d = (Graphics2D) g;
     g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
             RenderingHints.VALUE_ANTIALIAS_OFF);
   }
+
+  public void setVectorRendering(boolean b)
+  {
+    renderingVectors = b;
+  }
+
+  public boolean isVectorRendering()
+  {
+    return renderingVectors;
+  }
 }