get_thumbnails method
Contents
[
Hide
]get_thumbnails
Returns a Thumbnail Bitmap objects for all slides of a presentation.
Returns
Bitmap objects.
def get_thumbnails(self, options):
...
| Parameter | Type | Description |
|---|---|---|
| options | IRenderingOptions | Tiff options. |
get_thumbnails
Returns a Thumbnail Bitmap objects for specified slides of a presentation.
Returns
Bitmap objects.
def get_thumbnails(self, options, slides):
...
| Parameter | Type | Description |
|---|---|---|
| options | IRenderingOptions | Tiff options. |
| slides | List[int] | Array with slide positions, starting from 1. |
get_thumbnails
Returns a Thumbnail Bitmap objects for all slides of a presentation with specified size.
Returns
Bitmap objects.
def get_thumbnails(self, options, image_size):
...
| Parameter | Type | Description |
|---|---|---|
| options | IRenderingOptions | Tiff options. |
| image_size | aspose.pydrawing.Size | Size of the image to create. |
get_thumbnails
Returns a Thumbnail Bitmap objects for all slides of a presentation with custom scaling.
Returns
Bitmap objects.
def get_thumbnails(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_thumbnails
Returns a Thumbnail Bitmap objects for specified slides of a presentation with specified size.
Returns
Bitmap objects.
def get_thumbnails(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_thumbnails
Returns a Thumbnail Bitmap objects for specified slides of a presentation with custom scaling.
Returns
Bitmap objects.
def get_thumbnails(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