Skip to content

Commit 67f6a30

Browse files
author
Evgeniy Sidenko
committed
* Release Aspose.Imaging for Python 25.4
1 parent 4e90f9b commit 67f6a30

File tree

61 files changed

+1122
-175
lines changed

Some content is hidden

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

61 files changed

+1122
-175
lines changed

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

+2-2
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_161)**: Access camera manufacturer maker notes in Jpeg image.
190+
**[Example # 1](#example_184)**: 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_161}
239+
### Access camera manufacturer maker notes in Jpeg image. {#example_184}
240240
``` python
241241

242242
from aspose.pycore import as_of

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

+1-1
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_161}
22+
### Access camera manufacturer maker notes in Jpeg image. {#example_184}
2323
``` python
2424

2525
from aspose.pycore import as_of

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

+1
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ url: /python-net/aspose.imaging.fileformats.apng/apngframe/
131131
| [load_with_options(file_path, load_options)](#load_with_options_file_path_load_options_68) | Loads a new image from the specified file path or URL.<br/> If _filePath_ is a file path the method just opens the file.<br/> If _filePath_ is an URL, the method downloads the file, stores it as a temporary one, and opens it. |
132132
| normalize_angle() | Normalizes the angle.<br/> This method is applicable to scanned text documents to get rid of the skewed scan.<br/> This method uses [RasterImage.get_skew_angle()](/imaging/python-net/aspose.imaging/rasterimage/) and [RasterImage.rotate(angle)](/imaging/python-net/aspose.imaging/rasterimage/) methods. |
133133
| [normalize_angle(resize_proportionally, background_color)](#normalize_angle_resize_proportionally_background_color_69) | Normalizes the angle.<br/> This method is applicable to scanned text documents to get rid of the skewed scan.<br/> This method uses [RasterImage.get_skew_angle()](/imaging/python-net/aspose.imaging/rasterimage/) and [RasterImage.rotate(angle, resize_proportionally, background_color)](/imaging/python-net/aspose.imaging/rasterimage/) methods. |
134+
| normalize_histogram() | Normalizes the image histogram — adjust pixel values to use all available range. |
134135
| [read_argb_32_scan_line(scan_line_index)](#read_argb_32_scan_line_scan_line_index_70) | Reads the whole scan line by the specified scan line index. |
135136
| [read_scan_line(scan_line_index)](#read_scan_line_scan_line_index_71) | Reads the whole scan line by the specified scan line index. |
136137
| remove_metadata() | Removes this image instance metadata by setting this [IHasXmpData.xmp_data](/imaging/python-net/aspose.imaging.xmp/ihasxmpdata/) value to **None**. |

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

+3-2
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ url: /python-net/aspose.imaging.fileformats.apng/apngimage/
141141
| [load_with_options(file_path, load_options)](#load_with_options_file_path_load_options_74) | Loads a new image from the specified file path or URL.<br/> If _filePath_ is a file path the method just opens the file.<br/> If _filePath_ is an URL, the method downloads the file, stores it as a temporary one, and opens it. |
142142
| normalize_angle() | Normalizes the angle.<br/> This method is applicable to scanned text documents to get rid of the skewed scan.<br/> This method uses [RasterImage.get_skew_angle()](/imaging/python-net/aspose.imaging/rasterimage/) and [RasterImage.rotate(angle)](/imaging/python-net/aspose.imaging/rasterimage/) methods. |
143143
| [normalize_angle(resize_proportionally, background_color)](#normalize_angle_resize_proportionally_background_color_75) | Normalizes the angle.<br/> This method is applicable to scanned text documents to get rid of the skewed scan.<br/> This method uses [RasterImage.get_skew_angle()](/imaging/python-net/aspose.imaging/rasterimage/) and [RasterCachedMultipageImage.rotate(angle, resize_proportionally, background_color)](/imaging/python-net/aspose.imaging/rastercachedmultipageimage/) methods. |
144+
| normalize_histogram() | Normalizes the image histogram — adjust pixel values to use all available range. |
144145
| [pop_frame_at(index)](#pop_frame_at_index_76) | Remove and retrieve the frame at the specified index from your frame collection<br/> with this intuitive method. Perfect for developers seeking efficient management<br/> of frames in their animations. |
145146
| [read_argb_32_scan_line(scan_line_index)](#read_argb_32_scan_line_scan_line_index_77) | Reads the whole scan line by the specified scan line index. |
146147
| [read_scan_line(scan_line_index)](#read_scan_line_scan_line_index_78) | Reads the whole scan line by the specified scan line index. |
@@ -2539,7 +2540,7 @@ Writes the whole scan line to the specified scan line index.
25392540
| pixels | [Color[]](/imaging/python-net/aspose.imaging/color) | The pixel colors array to write. |
25402541

25412542
## **Examples**
2542-
### The following example shows how to export to APNG file format. {#example_143}
2543+
### The following example shows how to export to APNG file format. {#example_161}
25432544
``` python
25442545

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

25592560
```
25602561

2561-
### The following example shows how to export apng APNG file format from other non-animated multi-page format. {#example_144}
2562+
### The following example shows how to export apng APNG file format from other non-animated multi-page format. {#example_162}
25622563
``` python
25632564

25642565
from aspose.imaging import Image

english/python-net/aspose.imaging.fileformats.avif/avifimage/_index.md

+1
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ url: /python-net/aspose.imaging.fileformats.avif/avifimage/
129129
| [load_with_options(file_path, load_options)](#load_with_options_file_path_load_options_67) | Loads a new image from the specified file path or URL.<br/> If _filePath_ is a file path the method just opens the file.<br/> If _filePath_ is an URL, the method downloads the file, stores it as a temporary one, and opens it. |
130130
| normalize_angle() | Normalizes the angle.<br/> This method is applicable to scanned text documents to get rid of the skewed scan.<br/> This method uses [RasterImage.get_skew_angle()](/imaging/python-net/aspose.imaging/rasterimage/) and [RasterImage.rotate(angle)](/imaging/python-net/aspose.imaging/rasterimage/) methods. |
131131
| [normalize_angle(resize_proportionally, background_color)](#normalize_angle_resize_proportionally_background_color_68) | Normalizes the angle.<br/> This method is applicable to scanned text documents to get rid of the skewed scan.<br/> This method uses [RasterImage.get_skew_angle()](/imaging/python-net/aspose.imaging/rasterimage/) and [RasterImage.rotate(angle, resize_proportionally, background_color)](/imaging/python-net/aspose.imaging/rasterimage/) methods. |
132+
| normalize_histogram() | Normalizes the image histogram — adjust pixel values to use all available range. |
132133
| [read_argb_32_scan_line(scan_line_index)](#read_argb_32_scan_line_scan_line_index_69) | Reads the whole scan line by the specified scan line index. |
133134
| [read_scan_line(scan_line_index)](#read_scan_line_scan_line_index_70) | Reads the whole scan line by the specified scan line index. |
134135
| remove_metadata() | Removes this image instance metadata by setting this [IHasXmpData.xmp_data](/imaging/python-net/aspose.imaging.xmp/ihasxmpdata/) value to **None**. |

english/python-net/aspose.imaging.fileformats.bigtiff/bigtiffimage/_index.md

+1
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ url: /python-net/aspose.imaging.fileformats.bigtiff/bigtiffimage/
144144
| [load_with_options(file_path, load_options)](#load_with_options_file_path_load_options_74) | Loads a new image from the specified file path or URL.<br/> If _filePath_ is a file path the method just opens the file.<br/> If _filePath_ is an URL, the method downloads the file, stores it as a temporary one, and opens it. |
145145
| normalize_angle() | Normalizes the angle.<br/> This method is applicable to scanned text documents to get rid of the skewed scan.<br/> This method uses [RasterImage.get_skew_angle()](/imaging/python-net/aspose.imaging/rasterimage/) and [RasterImage.rotate(angle)](/imaging/python-net/aspose.imaging/rasterimage/) methods. |
146146
| [normalize_angle(resize_proportionally, background_color)](#normalize_angle_resize_proportionally_background_color_75) | Utilize the NormalizeAngle method specifically designed for scanned text documents <br/> to rectify skewed scans, ensuring accurate alignment. Seamlessly <br/> integrate this functionality into your text processing workflows to enhance <br/> document readability and quality, improving overall efficiency in text recognition <br/> and analysis tasks.<br/> This method uses [RasterImage.get_skew_angle()](/imaging/python-net/aspose.imaging/rasterimage/) and [TiffImage.rotate(angle, resize_proportionally, background_color)](/imaging/python-net/aspose.imaging.fileformats.tiff/tiffimage/) methods. |
147+
| normalize_histogram() | Normalizes the image histogram — adjust pixel values to use all available range. |
147148
| [read_argb_32_scan_line(scan_line_index)](#read_argb_32_scan_line_scan_line_index_76) | Reads the whole scan line by the specified scan line index. |
148149
| [read_scan_line(scan_line_index)](#read_scan_line_scan_line_index_77) | Reads the whole scan line by the specified scan line index. |
149150
| [remove_frame(frame)](#remove_frame_frame_78) | Efficiently remove the specified frame from the image sequence, facilitating <br/> streamlined frame management within your application. Integrate this functionality <br/> to enhance precision and flexibility in frame manipulation, ensuring seamless <br/> organization and presentation of image content. |

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

+3-2
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ url: /python-net/aspose.imaging.fileformats.bmp/bmpimage/
144144
| [load_with_options(file_path, load_options)](#load_with_options_file_path_load_options_72) | Loads a new image from the specified file path or URL.<br/> If _filePath_ is a file path the method just opens the file.<br/> If _filePath_ is an URL, the method downloads the file, stores it as a temporary one, and opens it. |
145145
| normalize_angle() | Normalizes the angle.<br/> This method is applicable to scanned text documents to get rid of the skewed scan.<br/> This method uses [RasterImage.get_skew_angle()](/imaging/python-net/aspose.imaging/rasterimage/) and [RasterImage.rotate(angle)](/imaging/python-net/aspose.imaging/rasterimage/) methods. |
146146
| [normalize_angle(resize_proportionally, background_color)](#normalize_angle_resize_proportionally_background_color_73) | Normalizes the angle.<br/> This method is applicable to scanned text documents to get rid of the skewed scan.<br/> This method uses [RasterImage.get_skew_angle()](/imaging/python-net/aspose.imaging/rasterimage/) and [RasterImage.rotate(angle, resize_proportionally, background_color)](/imaging/python-net/aspose.imaging/rasterimage/) methods. |
147+
| normalize_histogram() | Normalizes the image histogram — adjust pixel values to use all available range. |
147148
| [read_argb_32_scan_line(scan_line_index)](#read_argb_32_scan_line_scan_line_index_74) | Reads the whole scan line by the specified scan line index. |
148149
| [read_scan_line(scan_line_index)](#read_scan_line_scan_line_index_75) | Reads the whole scan line by the specified scan line index. |
149150
| remove_metadata() | Removes this image instance metadata by setting this [IHasXmpData.xmp_data](/imaging/python-net/aspose.imaging.xmp/ihasxmpdata/) value to **None**. |
@@ -3252,7 +3253,7 @@ with Image.load(r"c:\temp\sample.bmp") as image:
32523253

32533254
```
32543255

3255-
### Compress BMP image using DXT1 compression algorithm. {#example_152}
3256+
### Compress BMP image using DXT1 compression algorithm. {#example_171}
32563257
``` python
32573258
#cxFor:aspose.imaging.imageoptions.BmpOptions.compression
32583259

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

32683269
```
32693270

3270-
### Decompress BMP image which was previously compressed using DXT1 compression algorithm. {#example_153}
3271+
### Decompress BMP image which was previously compressed using DXT1 compression algorithm. {#example_172}
32713272
``` python
32723273

32733274
from aspose.imaging import Image

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -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_139)**: The following example shows how to cache all pages of a CDR image.
145+
**[Example # 1](#example_152)**: 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}
@@ -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_139}
1451+
### The following example shows how to cache all pages of a CDR image. {#example_152}
14521452
``` python
14531453

14541454
import aspose.pycore as aspycore

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -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_143)**: The following example shows how to cache all pages of a CMX image.
146+
**[Example # 1](#example_153)**: 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}
@@ -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_143}
1452+
### The following example shows how to cache all pages of a CMX image. {#example_153}
14531453
``` python
14541454
import aspose.pycore as aspycore
14551455
from aspose.imaging import Image

0 commit comments

Comments
 (0)