Interface PdfContent

  • All Known Implementing Classes:
    ClassicPdfContent

    public interface PdfContent
    Author:
    Lucian Chirita (lucianc@users.sourceforge.net)
    • Method Detail

      • setFillColor

        void setFillColor​(Color color)
      • setFillColorAlpha

        void setFillColorAlpha​(int alpha)
      • resetFillColor

        void resetFillColor()
      • setStrokeColor

        void setStrokeColor​(Color color)
      • resetStrokeColor

        void resetStrokeColor()
      • setLineWidth

        void setLineWidth​(float lineWidth)
      • setLineDash

        void setLineDash​(float f)
      • setLineDash

        void setLineDash​(float lineWidth,
                         float lineWidth2,
                         float f)
      • strokeLine

        void strokeLine​(float x1,
                        float y1,
                        float x2,
                        float y2)
      • fillRectangle

        void fillRectangle​(float x,
                           float y,
                           float width,
                           float height)
      • fillRoundRectangle

        void fillRoundRectangle​(float x,
                                float y,
                                float width,
                                float height,
                                float radius)
      • strokeRoundRectangle

        void strokeRoundRectangle​(float x,
                                  float y,
                                  float width,
                                  float height,
                                  float radius)
      • fillEllipse

        void fillEllipse​(float x1,
                         float y1,
                         float x2,
                         float y2)
      • strokeEllipse

        void strokeEllipse​(float x1,
                           float y1,
                           float x2,
                           float y2)
      • setLiteral

        void setLiteral​(String string)