public class EpubRenderer extends Renderer<com.aspose.ms.System.IO.Stream>
Represents a EPub document renderer.
Constructor and Description |
---|
EpubRenderer() |
Modifier and Type | Method and Description |
---|---|
void |
render(IDevice device,
com.aspose.ms.System.Collections.Generic.IGenericList<com.aspose.ms.System.IO.Stream> documents,
Configuration configuration)
Renders multiple EPub documents into specified
IDevice . |
void |
render(IDevice device,
com.aspose.ms.System.Collections.Generic.IGenericList<com.aspose.ms.System.IO.Stream> documents,
Configuration configuration,
com.aspose.ms.System.TimeSpan timeout)
Renders multiple EPub documents into specified
IDevice . |
void |
render(IDevice device,
java.io.InputStream stream) |
void |
render(IDevice device,
com.aspose.ms.System.IO.Stream document,
Configuration configuration)
Renders EPub document into specified
IDevice . |
void |
render(IDevice device,
com.aspose.ms.System.IO.Stream document,
Configuration configuration,
com.aspose.ms.System.TimeSpan timeout)
Renders EPub document into specified
IDevice . |
void |
render(IDevice device,
com.aspose.ms.System.TimeSpan timeout,
com.aspose.ms.System.IO.Stream... documents)
Defines method for rendering multiple EPub
Stream s into specific IDevice . |
void |
render(IDevice device,
com.aspose.ms.System.TimeSpan timeout,
com.aspose.ms.System.IO.Stream stream)
Defines method for rendering
TDocument into specific IDevice . |
render, render, render, render, render
public void render(IDevice device, java.io.InputStream stream)
public void render(IDevice device, com.aspose.ms.System.TimeSpan timeout, com.aspose.ms.System.IO.Stream... documents)
Defines method for rendering multiple EPub Stream
s into specific IDevice
.
The rendering will be performed once there are no any network operations for loading resources, active timers, animation tasks or specified timeout is elapsed.
public void render(IDevice device, com.aspose.ms.System.TimeSpan timeout, com.aspose.ms.System.IO.Stream stream)
Renderer
Defines method for rendering TDocument
into specific IDevice
.
The rendering will be performed once there are no any network operations for loading resources, active timers, animation tasks or specified timeout is elapsed.
public final void render(IDevice device, com.aspose.ms.System.IO.Stream document, Configuration configuration)
Renders EPub document into specified IDevice
.
device
- The device.document
- The document.configuration
- The configuration.public final void render(IDevice device, com.aspose.ms.System.IO.Stream document, Configuration configuration, com.aspose.ms.System.TimeSpan timeout)
Renders EPub document into specified IDevice
.
The rendering will be performed once there are no any network operations for loading resources, active timers, animation tasks or specified timeout is elapsed.
device
- The device.document
- The document.configuration
- The configuration.timeout
- A TimeSpan
that represents the number of milliseconds to wait, or a TimeSpan
that represents -1 millisecond to wait indefinitely.public final void render(IDevice device, com.aspose.ms.System.Collections.Generic.IGenericList<com.aspose.ms.System.IO.Stream> documents, Configuration configuration)
Renders multiple EPub documents into specified IDevice
.
device
- The device.documents
- The IList{Stream}
of documents to render.configuration
- The configuration.public final void render(IDevice device, com.aspose.ms.System.Collections.Generic.IGenericList<com.aspose.ms.System.IO.Stream> documents, Configuration configuration, com.aspose.ms.System.TimeSpan timeout)
Renders multiple EPub documents into specified IDevice
.
The rendering will be performed once there are no any network operations for loading resources, active timers, animation tasks or specified timeout is elapsed.
device
- The device.documents
- The IList{Stream}
of documents to render.configuration
- The configuration.timeout
- A TimeSpan
that represents the number of milliseconds to wait, or a TimeSpan
that represents -1 millisecond to wait indefinitely.