Skip to content

Commit ca5414e

Browse files
author
Evgeniy Sidenko
committed
Release Aspose.Imaging for Python via .NET 25.5
1 parent dda7be1 commit ca5414e

File tree

64 files changed

+833
-435
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+833
-435
lines changed

english/python-net/aspose.imaging.exif/exifdata/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ Gets the maker notes.
187187

188188
**See also:**
189189

190-
**[Example # 1](#example_184)**: Access camera manufacturer maker notes in Jpeg image.
190+
**[Example # 1](#example_198)**: Access camera manufacturer maker notes in Jpeg image.
191191

192192

193193
### Method: remove_tag(tag) {#remove_tag_tag_1}
@@ -236,7 +236,7 @@ Remove tag from container
236236
| tag_id | ushort | The tag identifier to remove. |
237237

238238
## **Examples**
239-
### Access camera manufacturer maker notes in Jpeg image. {#example_184}
239+
### Access camera manufacturer maker notes in Jpeg image. {#example_198}
240240
``` python
241241

242242
from aspose.pycore import as_of

english/python-net/aspose.imaging.exif/makernote/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ url: /python-net/aspose.imaging.exif/makernote/
1919

2020

2121
## **Examples**
22-
### Access camera manufacturer maker notes in Jpeg image. {#example_184}
22+
### Access camera manufacturer maker notes in Jpeg image. {#example_198}
2323
``` python
2424

2525
from aspose.pycore import as_of

english/python-net/aspose.imaging.fileformats.apng/apngimage/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2540,7 +2540,7 @@ Writes the whole scan line to the specified scan line index.
25402540
| pixels | [Color[]](/imaging/python-net/aspose.imaging/color) | The pixel colors array to write. |
25412541

25422542
## **Examples**
2543-
### The following example shows how to export to APNG file format. {#example_161}
2543+
### The following example shows how to export to APNG file format. {#example_175}
25442544
``` python
25452545

25462546
import aspose.pycore as aspycore
@@ -2559,7 +2559,7 @@ with Image.load("Animation1.webp") as image:
25592559

25602560
```
25612561

2562-
### The following example shows how to export apng APNG file format from other non-animated multi-page format. {#example_162}
2562+
### The following example shows how to export apng APNG file format from other non-animated multi-page format. {#example_176}
25632563
``` python
25642564

25652565
from aspose.imaging import Image

english/python-net/aspose.imaging.fileformats.bmp/bmpimage/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3253,7 +3253,7 @@ with Image.load(r"c:\temp\sample.bmp") as image:
32533253

32543254
```
32553255

3256-
### Compress BMP image using DXT1 compression algorithm. {#example_171}
3256+
### Compress BMP image using DXT1 compression algorithm. {#example_185}
32573257
``` python
32583258
#cxFor:aspose.imaging.imageoptions.BmpOptions.compression
32593259

@@ -3268,7 +3268,7 @@ with Image.load("Tiger.bmp") as image:
32683268

32693269
```
32703270

3271-
### Decompress BMP image which was previously compressed using DXT1 compression algorithm. {#example_172}
3271+
### Decompress BMP image which was previously compressed using DXT1 compression algorithm. {#example_186}
32723272
``` python
32733273

32743274
from aspose.imaging import Image

english/python-net/aspose.imaging.fileformats.cdr/cdrimage/_index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ url: /python-net/aspose.imaging.fileformats.cdr/cdrimage/
6868
| [create_from_images(images, dispose_images)](#create_from_images_images_dispose_images_18) | Creates a new image the specified images as pages. |
6969
| [crop(left_shift, right_shift, top_shift, bottom_shift)](#crop_left_shift_right_shift_top_shift_bottom_shift_19) | Crop image with shifts. |
7070
| [crop(rectangle)](#crop_rectangle_20) | Crops the specified rectangle. |
71-
| [get_default_options(args)](#get_default_options_args_21) | Retrieve the default options effortlessly with this user-friendly method.<br/> Perfect for developers seeking quick access to the default settings or<br/> configurations associated with an object, ensuring efficient customization<br/> and streamlined workflow. |
71+
| [get_default_options(args)](#get_default_options_args_21) | Gets the default image options. |
7272
| [get_embedded_images()](#get_embedded_images__22) | Gets the embedded images. |
7373
| [get_file_format(file_path)](#get_file_format_file_path_23) | Gets the file format. |
7474
| [get_file_format(stream)](#get_file_format_stream_24) | Gets the file format. |
@@ -142,7 +142,7 @@ Retrieve the pages of the image seamlessly with this intuitive property.<br/>
142142

143143
**See also:**
144144

145-
**[Example # 1](#example_152)**: The following example shows how to cache all pages of a CDR image.
145+
**[Example # 1](#example_161)**: The following example shows how to cache all pages of a CDR image.
146146

147147

148148
### Method: can_load(file_path) [static] {#can_load_file_path_1}
@@ -591,7 +591,7 @@ Crops the specified rectangle.
591591
get_default_options(args)
592592
```
593593

594-
Retrieve the default options effortlessly with this user-friendly method.<br/> Perfect for developers seeking quick access to the default settings or<br/> configurations associated with an object, ensuring efficient customization<br/> and streamlined workflow.
594+
Gets the default image options.
595595

596596
**Parameters:**
597597

@@ -603,7 +603,7 @@ Retrieve the default options effortlessly with this user-friendly method.<br/>
603603

604604
| Type | Description |
605605
| :- | :- |
606-
| [ImageOptionsBase](/imaging/python-net/aspose.imaging/imageoptionsbase) | Default options |
606+
| [ImageOptionsBase](/imaging/python-net/aspose.imaging/imageoptionsbase) | The default image options. |
607607

608608

609609
### Method: get_embedded_images() {#get_embedded_images__22}
@@ -1448,7 +1448,7 @@ Customize the color palette of the image with this intuitive method. Ideal for<b
14481448
| update_colors | bool | if set to <c>true</c> colors will be updated according to the new palette; otherwise color<br/> indexes remain unchanged. Note that unchanged indexes may crash the image on loading if some indexes have no<br/> corresponding palette entries. |
14491449

14501450
## **Examples**
1451-
### The following example shows how to cache all pages of a CDR image. {#example_152}
1451+
### The following example shows how to cache all pages of a CDR image. {#example_161}
14521452
``` python
14531453

14541454
import aspose.pycore as aspycore

english/python-net/aspose.imaging.fileformats.cmx/cmximage/_index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ url: /python-net/aspose.imaging.fileformats.cmx/cmximage/
6969
| [create_from_images(images, dispose_images)](#create_from_images_images_dispose_images_18) | Creates a new image the specified images as pages. |
7070
| [crop(left_shift, right_shift, top_shift, bottom_shift)](#crop_left_shift_right_shift_top_shift_bottom_shift_19) | Crop image with shifts. |
7171
| [crop(rectangle)](#crop_rectangle_20) | Crops the specified rectangle. |
72-
| [get_default_options(args)](#get_default_options_args_21) | Retrieve the default options effortlessly with this user-friendly method.<br/> Perfect for developers seeking quick access to the default settings or configurations<br/> associated with an object, ensuring efficient customization and streamlined workflow. |
72+
| [get_default_options(args)](#get_default_options_args_21) | Gets the default image options. |
7373
| [get_embedded_images()](#get_embedded_images__22) | Gets the embedded images. |
7474
| [get_file_format(file_path)](#get_file_format_file_path_23) | Gets the file format. |
7575
| [get_file_format(stream)](#get_file_format_stream_24) | Gets the file format. |
@@ -143,7 +143,7 @@ Retrieve the pages of the image seamlessly with this intuitive property.<br/>
143143

144144
**See also:**
145145

146-
**[Example # 1](#example_153)**: The following example shows how to cache all pages of a CMX image.
146+
**[Example # 1](#example_162)**: The following example shows how to cache all pages of a CMX image.
147147

148148

149149
### Method: can_load(file_path) [static] {#can_load_file_path_1}
@@ -592,7 +592,7 @@ Crops the specified rectangle.
592592
get_default_options(args)
593593
```
594594

595-
Retrieve the default options effortlessly with this user-friendly method.<br/> Perfect for developers seeking quick access to the default settings or configurations<br/> associated with an object, ensuring efficient customization and streamlined workflow.
595+
Gets the default image options.
596596

597597
**Parameters:**
598598

@@ -604,7 +604,7 @@ Retrieve the default options effortlessly with this user-friendly method.<br/>
604604

605605
| Type | Description |
606606
| :- | :- |
607-
| [ImageOptionsBase](/imaging/python-net/aspose.imaging/imageoptionsbase) | Default options |
607+
| [ImageOptionsBase](/imaging/python-net/aspose.imaging/imageoptionsbase) | The default image options. |
608608

609609

610610
### Method: get_embedded_images() {#get_embedded_images__22}
@@ -1449,7 +1449,7 @@ Customize the color palette of the image with this intuitive method. Ideal for<b
14491449
| update_colors | bool | if set to <c>true</c> colors will be updated according to the new palette; otherwise color indexes remain unchanged. Note that unchanged indexes may crash the image on loading if some indexes have no corresponding palette entries. |
14501450

14511451
## **Examples**
1452-
### The following example shows how to cache all pages of a CMX image. {#example_153}
1452+
### The following example shows how to cache all pages of a CMX image. {#example_162}
14531453
``` python
14541454
import aspose.pycore as aspycore
14551455
from aspose.imaging import Image

0 commit comments

Comments
 (0)