Interface Drawable

    • Field Detail

      • GROUP_TRANSFORM

        @Internal
        static final Drawable.DrawableHint GROUP_TRANSFORM
        Key will be internally used to store affine transformation temporarily within group shapes
      • GRADIENT_SHAPE

        static final Drawable.DrawableHint GRADIENT_SHAPE
        PathGradientPaint needs the shape to be set. It will be achieved through setting it in the rendering hints
      • PRESET_GEOMETRY_CACHE

        static final Drawable.DrawableHint PRESET_GEOMETRY_CACHE
        Internal key for caching the preset geometries
      • FONT_HANDLER

        static final Drawable.DrawableHint FONT_HANDLER
        Use this object to resolve unknown / missing fonts when rendering slides. The font handler must be of type DrawFontManager.

        In case a FONT_HANDLER is register, FONT_FALLBACK and FONT_MAP are ignored

      • FONT_FALLBACK

        static final Drawable.DrawableHint FONT_FALLBACK
        Key for a font fallback map of type Map<String,String> which maps the original font family (key) to the fallback font family (value). In case there is also a FONT_MAP registered, the original font is first mapped via the font_map and then the fallback font is determined
      • FONT_MAP

        static final Drawable.DrawableHint FONT_MAP
        Key for a font map of type Map<String,String> which maps the original font family (key) to the mapped font family (value)
      • CURRENT_SLIDE

        static final Drawable.DrawableHint CURRENT_SLIDE
        The Common SL Draw API works sometimes cascading, but there are places where the current slide context need to be evaluated, e.g. when slide numbers are printed. In this situation we need to have a way to access the current slide
      • BUFFERED_IMAGE

        static final Drawable.DrawableHint BUFFERED_IMAGE
        Stores a reference (WEAK_REFERENCE) to the buffered image, if the rendering is based on a buffered image
      • DEFAULT_CHARSET

        static final Drawable.DrawableHint DEFAULT_CHARSET
        Sets the default charset to render text elements. Opposed to other windows libraries in POI this simply defaults to Windows-1252. The rendering value is of type Charset
      • EMF_FORCE_HEADER_BOUNDS

        static final Drawable.DrawableHint EMF_FORCE_HEADER_BOUNDS
        A boolean value to force the usage of the bounding box, which is specified in the EMF header. Defaults to FALSE - in this case the records are scanned for window and viewport records to determine the initial bounding box by using the following condition: isValid(viewport) ? viewport : isValid(window) ? window : headerBounds

        This is a workaround switch, which might be removed in future releases, when the bounding box determination for the special cases is fixed. In most cases it's recommended to leave the default value.

      • CACHE_IMAGE_SOURCE

        static final Drawable.DrawableHint CACHE_IMAGE_SOURCE
        A boolean value to instruct the bitmap image renderer to keep the original image bytes. Defaults to false if unset.
    • Method Detail

      • applyTransform

        void applyTransform​(Graphics2D graphics)
        Apply 2-D transforms before drawing this shape. This includes rotation and flipping.
        Parameters:
        graphics - the graphics whose transform matrix will be modified
      • draw

        void draw​(Graphics2D graphics)
        Draw this shape into the supplied canvas
        Parameters:
        graphics - the graphics to draw into
      • drawContent

        void drawContent​(Graphics2D graphics)
        draw any content within this shape (image, text, etc.).
        Parameters:
        graphics - the graphics to draw into