public interface IImageCollection extends IGenericCollection<IPPImage>
Represents collection of PPImage.
Modifier and Type | Method and Description |
---|---|
IPPImage |
addFromSvg(java.lang.String svgContent)
Add an image to a presentation from Svg.
|
IPPImage |
addFromSvg(java.lang.String svgContent,
IExternalResourceResolver externalResResolver,
java.lang.String baseUri)
Add an image to a presentation from Svg.
|
IPPImage |
addImage(android.graphics.Bitmap image)
Add an image to a presentation.
|
IPPImage |
addImage(byte[] buffer)
Adds an image to a presentation from specified buffer.
|
IPPImage |
addImage(java.io.InputStream stream)
Add an image to a presentation from stream.
|
IPPImage |
addImage(IPPImage imageSource)
Adds a copy of an image from an another presentation.
|
IPPImage |
get_Item(int index)
Returns image by its index.
|
iterator
IPPImage get_Item(int index)
Returns image by its index.
index
- Index.IPPImage addImage(android.graphics.Bitmap image)
Add an image to a presentation.
image
- Image to add.
IPPImage addImage(java.io.InputStream stream)
Add an image to a presentation from stream.
stream
- Stream to add image from.
IPPImage addImage(byte[] buffer)
Adds an image to a presentation from specified buffer.
buffer
- Buffer.IPPImage addImage(IPPImage imageSource)
Adds a copy of an image from an another presentation.
imageSource
- Source image.IPPImage addFromSvg(java.lang.String svgContent)
Add an image to a presentation from Svg.
svgContent
- Svg content.
IPPImage addFromSvg(java.lang.String svgContent, IExternalResourceResolver externalResResolver, java.lang.String baseUri)
Add an image to a presentation from Svg.
svgContent
- Svg content.externalResResolver
- A callback object used to fetch external objects. If this parameter is null all external objects will be ignored.baseUri
- Base URI of the specified Svg. Used to resolve relative links.
Copyright © 2004-2019 Aspose Pty Ltd. All Rights Reserved.