get_images method
Contents
[
Hide
]get_images
Returns a Image objects for all slides of a presentation.
Returns
Image objects.
def get_images(self, options):
...
| Parameter | Type | Description |
|---|---|---|
| options | IRenderingOptions | Tiff options. |
get_images
Returns a Thumbnail Image objects for specified slides of a presentation.
Returns
Image objects.
def get_images(self, options, slides):
...
| Parameter | Type | Description |
|---|---|---|
| options | IRenderingOptions | Tiff options. |
| slides | List[int] | Array with slide positions, starting from 1. |
get_images
Returns a Thumbnail Image objects for all slides of a presentation with specified size.
Returns
Image objects.
def get_images(self, options, image_size):
...
| Parameter | Type | Description |
|---|---|---|
| options | IRenderingOptions | Tiff options. |
| image_size | aspose.pydrawing.Size | Size of the image to create. |
get_images
Returns a Thumbnail Image objects for all slides of a presentation with custom scaling.
Returns
Image objects.
def get_images(self, options, scale_x, scale_y):
...
| Parameter | Type | Description |
|---|---|---|
| options | IRenderingOptions | Tiff options. |
| scale_x | float | The value by which to scale this Thumbnail in the x-axis direction. |
| scale_y | float | The value by which to scale this Thumbnail in the y-axis direction. |
get_images
Returns a Thumbnail Image objects for specified slides of a presentation with specified size.
Returns
Image objects.
def get_images(self, options, slides, image_size):
...
| Parameter | Type | Description |
|---|---|---|
| options | IRenderingOptions | Tiff options. |
| slides | List[int] | Array with slide positions, starting from 1. |
| image_size | aspose.pydrawing.Size | Size of the image to create. |
get_images
Returns a Thumbnail Image objects for specified slides of a presentation with custom scaling.
Returns
Image objects.
def get_images(self, options, slides, scale_x, scale_y):
...
| Parameter | Type | Description |
|---|---|---|
| options | IRenderingOptions | Tiff options. |
| slides | List[int] | Array with slide positions, starting from 1. |
| scale_x | float | The value by which to scale this Thumbnail in the x-axis direction. |
| scale_y | float | The value by which to scale this Thumbnail in the y-axis direction. |
See Also
- class
IRenderingOptions - class
Presentation - module
aspose.slides - library
Aspose.Slides