Interface Renderer

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.List<java.awt.Image> render​(Document document)
      Renders a given document an outputs result as a list of Image objects (on image per page).
      java.util.List<java.awt.Image> render​(Document document, int begin, int end)
      Renders pages of a given document an outputs result as a list of Image objects (on image per page).
    • Method Detail

      • render

        java.util.List<java.awt.Image> render​(Document document)
                                       throws java.io.IOException,
                                              RendererException,
                                              DocumentException
        Renders a given document an outputs result as a list of Image objects (on image per page).
        Parameters:
        document - Document to render. Document type may or may no be supported (support left to the render final implementation).
        Returns:
        a List of Image objects
        Throws:
        java.io.IOException
        AnalyzerException
        RendererException
        DocumentException
      • render

        java.util.List<java.awt.Image> render​(Document document,
                                              int begin,
                                              int end)
                                       throws java.io.IOException,
                                              RendererException,
                                              DocumentException
        Renders pages of a given document an outputs result as a list of Image objects (on image per page).
        Parameters:
        document - Document to render. Document type may or may no be supported (support left to the render final implementation).
        begin - Index of the first page to render
        end - Index of the last page to render
        Returns:
        a List of Image objects
        Throws:
        java.io.IOException
        AnalyzerException
        RendererException
        DocumentException