public interface IPresentationFactory
Allows to create presentation via COM interface
Modifier and Type | Method and Description |
---|---|
IPresentation |
createPresentation()
Creates new presentation.
|
IPresentation |
createPresentation(ILoadOptions options)
Creates new presentation with additional load options
|
IPresentationInfo |
getPresentationInfo(java.io.InputStream stream)
Gets info about presentation in specified stream.
|
IPresentationInfo |
getPresentationInfo(java.lang.String file)
Gets info about presentation in specified file.
|
IPresentationText |
getPresentationText(java.io.InputStream stream,
int mode)
Retreieves the raw text from the slides
|
IPresentationText |
getPresentationText(java.io.InputStream stream,
int mode,
ILoadOptions options)
Retreieves the raw text from the slides
|
IPresentationText |
getPresentationText(java.lang.String file,
int mode)
Retreieves the raw text from the slides
|
IPresentation |
readPresentation(byte[] data)
Reads an existing presentation from array
|
IPresentation |
readPresentation(byte[] data,
ILoadOptions options)
Reads an existing presentation from array with additional load options
|
IPresentation |
readPresentation(java.io.InputStream stream)
Reads an existing presentation from stream
|
IPresentation |
readPresentation(java.io.InputStream stream,
ILoadOptions options)
Reads an existing presentation from stream with additional load options
|
IPresentation |
readPresentation(java.lang.String file)
Reads an existing presentation from file
|
IPresentation |
readPresentation(java.lang.String file,
ILoadOptions options)
Reads an existing presentation from stream with additional load options
|
IPresentation createPresentation()
Creates new presentation.
IPresentation createPresentation(ILoadOptions options)
Creates new presentation with additional load options
options
- Load optionsIPresentationInfo getPresentationInfo(java.lang.String file)
Gets info about presentation in specified file.
file
- Presentaotin file.IPresentationInfo getPresentationInfo(java.io.InputStream stream)
Gets info about presentation in specified stream.
stream
- Presentation stream.IPresentation readPresentation(byte[] data)
Reads an existing presentation from array
data
- Array to readIPresentation readPresentation(byte[] data, ILoadOptions options)
Reads an existing presentation from array with additional load options
data
- Array to readoptions
- Load optionsIPresentation readPresentation(java.io.InputStream stream)
Reads an existing presentation from stream
stream
- Input stream to readIPresentation readPresentation(java.io.InputStream stream, ILoadOptions options)
Reads an existing presentation from stream with additional load options
stream
- Input stream to readoptions
- Load optionsIPresentation readPresentation(java.lang.String file)
Reads an existing presentation from file
file
- File nameIPresentation readPresentation(java.lang.String file, ILoadOptions options)
Reads an existing presentation from stream with additional load options
file
- File nameoptions
- Load optionsIPresentationText getPresentationText(java.lang.String file, int mode)
Retreieves the raw text from the slides
file
- Input filemode
- Extraction modeIPresentationText getPresentationText(java.io.InputStream stream, int mode)
Retreieves the raw text from the slides
stream
- Input streammode
- Extraction modeIPresentationText getPresentationText(java.io.InputStream stream, int mode, ILoadOptions options)
Retreieves the raw text from the slides
stream
- Input streammode
- Extraction modeoptions
- Load options