Skip to content

Commit 573785f

Browse files
author
Evgeniy Sidenko
committed
Release Aspose.Imaging for Python via .NET 25.2
1 parent 10133f5 commit 573785f

File tree

104 files changed

+1699
-527
lines changed

Some content is hidden

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

104 files changed

+1699
-527
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ url: /python-net/aspose.imaging.exif/exifdata/
105105
| max_aperture_value | [TiffRational](/imaging/python-net/aspose.imaging.fileformats.tiff/tiffrational/) | r/w | Gets or sets the maximum aperture value. |
106106
| metering_mode | [ExifMeteringMode](/imaging/python-net/aspose.imaging.exif.enums/exifmeteringmode/) | r/w | Gets or sets the metering mode. |
107107
| oecf | byte | r/w | Gets or sets the Opto-Electric Conversion Function (OECF) specified in ISO 14524. |
108+
| orientation | [ExifOrientation](/imaging/python-net/aspose.imaging.exif.enums/exiforientation/) | r/w | Gets or sets the orientation. |
108109
| photographic_sensitivity | uint | r/w | Gets or sets the photographic sensitivity. |
109110
| pixel_x_dimension | uint | r/w | Gets or sets the pixel x dimension. |
110111
| pixel_y_dimension | uint | r/w | Gets or sets the pixel y dimension. |

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

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ url: /python-net/aspose.imaging.fileformats.cdr.objects/cdrtransforms/
2323
| disposed | bool | r | Gets a value indicating whether this instance is disposed. |
2424
| document | [CdrDocument](/imaging/python-net/aspose.imaging.fileformats.cdr.objects/cdrdocument) | r/w | Gets or sets the document. |
2525
| parent | [CdrObjectContainer](/imaging/python-net/aspose.imaging.fileformats.cdr.objects/cdrobjectcontainer) | r/w | Gets or sets the parent. |
26+
| transforms | System.Collections.Generic.List<Matrix> | r/w | Gets or sets the transforms. |
2627

2728

2829
### Constructor: CdrTransforms() {#CdrTransforms__1}

english/python-net/aspose.imaging.fileformats.emf/emfimage/_index.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ url: /python-net/aspose.imaging.fileformats.emf/emfimage/
7575
| [get_fitting_rectangle(rectangle, pixels, width, height)](#get_fitting_rectangle_rectangle_pixels_width_height_26) | Gets rectangle which fits the current image. |
7676
| [get_fitting_rectangle(rectangle, width, height)](#get_fitting_rectangle_rectangle_width_height_27) | Gets rectangle which fits the current image. |
7777
| [get_missed_fonts()](#get_missed_fonts__28) | Returns the list of fonts which used inside metafile but not found. |
78-
| [get_original_options()](#get_original_options__29) | Gets the options based on the original file settings.<br/> This can be helpful to keep bit-depth and other parameters of the original image unchanged.<br/> For example, if we load a black-white PNG image with 1 bit per pixel and then save it using the<br/> [DataStreamSupporter.save(file_path)](/imaging/python-net/aspose.imaging/datastreamsupporter/) method, the output PNG image with 8-bit per pixel will be produced.<br/> To avoid it and save PNG image with 1-bit per pixel, use this method to get corresponding saving options and pass them<br/> to the [Image.save(file_path, options)](/imaging/python-net/aspose.imaging/image/) method as the second parameter. |
78+
| [get_original_options()](#get_original_options__29) | Gets the original image options. |
7979
| [get_proportional_height(width, height, new_width)](#get_proportional_height_width_height_new_width_30) | Gets a proportional height. |
8080
| [get_proportional_width(width, height, new_height)](#get_proportional_width_width_height_new_height_31) | Gets a proportional width. |
8181
| [get_serialized_stream(image_options, clipping_rectangle, page_number)](#get_serialized_stream_image_options_clipping_rectangle_page_number_32) | Converts to aps. |
@@ -111,7 +111,7 @@ url: /python-net/aspose.imaging.fileformats.emf/emfimage/
111111
| [save(file_path, options)](#save_file_path_options_59) | Saves the object's data to the specified file location in the specified file format according to save options. |
112112
| [save(file_path, options, bounds_rectangle)](#save_file_path_options_bounds_rectangle_60) | Saves the object's data to the specified file location in the specified file format according to save options. |
113113
| [save(file_path, over_write)](#save_file_path_over_write_61) | Saves the object's data to the specified file location. |
114-
| [save(stream)](#save_stream_62) | Saves the data. |
114+
| [save(stream)](#save_stream_62) | Saves the data to specified _stream_. |
115115
| [save(stream, options_base)](#save_stream_options_base_63) | Saves the image's data to the specified stream in the specified file format according to save options. |
116116
| [save(stream, options_base, bounds_rectangle)](#save_stream_options_base_bounds_rectangle_64) | Saves the image's data to the specified stream in the specified file format according to save options. |
117117
| [save_to_stream(stream)](#save_to_stream_stream_65) | Saves the object's data to the specified stream. |
@@ -762,13 +762,13 @@ Returns the list of fonts which used inside metafile but not found.
762762
get_original_options()
763763
```
764764

765-
Gets the options based on the original file settings.<br/> This can be helpful to keep bit-depth and other parameters of the original image unchanged.<br/> For example, if we load a black-white PNG image with 1 bit per pixel and then save it using the<br/> [DataStreamSupporter.save(file_path)](/imaging/python-net/aspose.imaging/datastreamsupporter/) method, the output PNG image with 8-bit per pixel will be produced.<br/> To avoid it and save PNG image with 1-bit per pixel, use this method to get corresponding saving options and pass them<br/> to the [Image.save(file_path, options)](/imaging/python-net/aspose.imaging/image/) method as the second parameter.
765+
Gets the original image options.
766766

767767
**Returns**
768768

769769
| Type | Description |
770770
| :- | :- |
771-
| [ImageOptionsBase](/imaging/python-net/aspose.imaging/imageoptionsbase) | The options based on the original file settings. |
771+
| [ImageOptionsBase](/imaging/python-net/aspose.imaging/imageoptionsbase) | The original image options. |
772772

773773

774774
### Method: get_proportional_height(width, height, new_width) [static] {#get_proportional_height_width_height_new_width_30}
@@ -1358,13 +1358,13 @@ Saves the object's data to the specified file location.
13581358
save(stream)
13591359
```
13601360

1361-
Saves the data.
1361+
Saves the data to specified _stream_.
13621362

13631363
**Parameters:**
13641364

13651365
| Parameter | Type | Description |
13661366
| :- | :- | :- |
1367-
| stream | _io.BufferedRandom | The stream to save data to. |
1367+
| stream | _io.BufferedRandom | The stream. |
13681368

13691369
### Method: save(stream, options_base) {#save_stream_options_base_63}
13701370

english/python-net/aspose.imaging.fileformats.emf/metaimage/_index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ url: /python-net/aspose.imaging.fileformats.emf/metaimage/
105105
| [save(file_path, options)](#save_file_path_options_59) | Saves the object's data to the specified file location in the specified file format according to save options. |
106106
| [save(file_path, options, bounds_rectangle)](#save_file_path_options_bounds_rectangle_60) | Saves the object's data to the specified file location in the specified file format according to save options. |
107107
| [save(file_path, over_write)](#save_file_path_over_write_61) | Saves the object's data to the specified file location. |
108-
| [save(stream)](#save_stream_62) | Saves the object's data to the specified stream. |
108+
| [save(stream)](#save_stream_62) | Saves the data to specified _stream_. |
109109
| [save(stream, options_base)](#save_stream_options_base_63) | Saves the image's data to the specified stream in the specified file format according to save options. |
110110
| [save(stream, options_base, bounds_rectangle)](#save_stream_options_base_bounds_rectangle_64) | Saves the image's data to the specified stream in the specified file format according to save options. |
111111
| [save_to_stream(stream)](#save_to_stream_stream_65) | Saves the object's data to the specified stream. |
@@ -1327,13 +1327,13 @@ Saves the object's data to the specified file location.
13271327
save(stream)
13281328
```
13291329

1330-
Saves the object's data to the specified stream.
1330+
Saves the data to specified _stream_.
13311331

13321332
**Parameters:**
13331333

13341334
| Parameter | Type | Description |
13351335
| :- | :- | :- |
1336-
| stream | _io.BufferedRandom | The stream to save the object's data to. |
1336+
| stream | _io.BufferedRandom | The stream. |
13371337

13381338
### Method: save(stream, options_base) {#save_stream_options_base_63}
13391339

english/python-net/aspose.imaging.fileformats.png/pngfiltertype/_index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ The png filter type.
1414
## **Members**
1515
| **Member name** | **Description** |
1616
| :- | :- |
17-
| ADAPTIVE | Adaptive filtering, means that saving process will choose most sutable filter for each data row. Best compression, slowest execution time. |
17+
| ADAPTIVE | Adaptive filtering, means that saving process will choose most suitable filter for each data row. Best compression, slowest execution time. |
1818
| AVG | The avg filter, means, that average filter will be applied to image data. |
1919
| NONE | The null-filter, means no filtering for image data rows. |
2020
| PAETH | The paeth predictor filter. |
21-
| SUB | The sub filter, means substractive filtering will be applied to image data. |
22-
| UP | The up filter, means row-by-row substraction filter will be applied. |
21+
| SUB | The sub filter, means subtractive filtering will be applied to image data. |
22+
| UP | The up filter, means row-by-row subtraction filter will be applied. |

english/python-net/aspose.imaging.fileformats.svg/svgimage/_index.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ url: /python-net/aspose.imaging.fileformats.svg/svgimage/
1111

1212
**Full Name:** aspose.imaging.fileformats.svg.SvgImage
1313

14-
**Inheritance:** IObjectWithBounds, IObjectWithSizeF, VectorImage
14+
**Inheritance:** IObjectWithBounds, IObjectWithSizeF, IHasXmpData, IHasMetadata, VectorImage
1515

1616
## **Constructors**
1717
| **Name** | **Description** |
@@ -43,6 +43,7 @@ url: /python-net/aspose.imaging.fileformats.svg/svgimage/
4343
| use_palette | bool | r | Gets a value indicating whether the image palette is used. |
4444
| width | int | r | Gets the image width. |
4545
| width_f | float | r | Gets the object width, in inches. |
46+
| xmp_data | [XmpPacketWrapper](/imaging/python-net/aspose.imaging.xmp/xmppacketwrapper/) | r/w | Gets or sets XMP data. |
4647
## **Methods**
4748
| **Name** | **Description** |
4849
| :- | :- |

english/python-net/aspose.imaging.fileformats.wmf/wmfimage/_index.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ url: /python-net/aspose.imaging.fileformats.wmf/wmfimage/
7777
| [get_fitting_rectangle(rectangle, pixels, width, height)](#get_fitting_rectangle_rectangle_pixels_width_height_27) | Gets rectangle which fits the current image. |
7878
| [get_fitting_rectangle(rectangle, width, height)](#get_fitting_rectangle_rectangle_width_height_28) | Gets rectangle which fits the current image. |
7979
| [get_missed_fonts()](#get_missed_fonts__29) | Returns the list of fonts which used inside metafile but not found. |
80-
| [get_original_options()](#get_original_options__30) | Gets the options based on the original file settings.<br/> This can be helpful to keep bit-depth and other parameters of the original image unchanged.<br/> For example, if we load a black-white PNG image with 1 bit per pixel and then save it using the<br/> [DataStreamSupporter.save(file_path)](/imaging/python-net/aspose.imaging/datastreamsupporter/) method, the output PNG image with 8-bit per pixel will be produced.<br/> To avoid it and save PNG image with 1-bit per pixel, use this method to get corresponding saving options and pass them<br/> to the [Image.save(file_path, options)](/imaging/python-net/aspose.imaging/image/) method as the second parameter. |
80+
| [get_original_options()](#get_original_options__30) | Gets the original image options. |
8181
| [get_post_script()](#get_post_script__31) | Access the PostScript data associated with the image, providing detailed <br/> information about its structure or content. Utilize this method to retrieve <br/> PostScript data for further analysis or processing within your application, <br/> enabling advanced functionality related to PostScript rendering or manipulation. |
8282
| [get_proportional_height(width, height, new_width)](#get_proportional_height_width_height_new_width_32) | Gets a proportional height. |
8383
| [get_proportional_width(width, height, new_height)](#get_proportional_width_width_height_new_height_33) | Gets a proportional width. |
@@ -114,7 +114,7 @@ url: /python-net/aspose.imaging.fileformats.wmf/wmfimage/
114114
| [save(file_path, options)](#save_file_path_options_61) | Saves the object's data to the specified file location in the specified file format according to save options. |
115115
| [save(file_path, options, bounds_rectangle)](#save_file_path_options_bounds_rectangle_62) | Saves the object's data to the specified file location in the specified file format according to save options. |
116116
| [save(file_path, over_write)](#save_file_path_over_write_63) | Saves the object's data to the specified file location. |
117-
| [save(stream)](#save_stream_64) | Saves the data. |
117+
| [save(stream)](#save_stream_64) | Saves the data to specified _stream_. |
118118
| [save(stream, options_base)](#save_stream_options_base_65) | Saves the image's data to the specified stream in the specified file format according to save options. |
119119
| [save(stream, options_base, bounds_rectangle)](#save_stream_options_base_bounds_rectangle_66) | Saves the image's data to the specified stream in the specified file format according to save options. |
120120
| [save_to_stream(stream)](#save_to_stream_stream_67) | Saves the object's data to the specified stream. |
@@ -787,13 +787,13 @@ Returns the list of fonts which used inside metafile but not found.
787787
get_original_options()
788788
```
789789

790-
Gets the options based on the original file settings.<br/> This can be helpful to keep bit-depth and other parameters of the original image unchanged.<br/> For example, if we load a black-white PNG image with 1 bit per pixel and then save it using the<br/> [DataStreamSupporter.save(file_path)](/imaging/python-net/aspose.imaging/datastreamsupporter/) method, the output PNG image with 8-bit per pixel will be produced.<br/> To avoid it and save PNG image with 1-bit per pixel, use this method to get corresponding saving options and pass them<br/> to the [Image.save(file_path, options)](/imaging/python-net/aspose.imaging/image/) method as the second parameter.
790+
Gets the original image options.
791791

792792
**Returns**
793793

794794
| Type | Description |
795795
| :- | :- |
796-
| [ImageOptionsBase](/imaging/python-net/aspose.imaging/imageoptionsbase) | The options based on the original file settings. |
796+
| [ImageOptionsBase](/imaging/python-net/aspose.imaging/imageoptionsbase) | The original image options. |
797797

798798

799799
### Method: get_post_script() {#get_post_script__31}
@@ -1399,13 +1399,13 @@ Saves the object's data to the specified file location.
13991399
save(stream)
14001400
```
14011401

1402-
Saves the data.
1402+
Saves the data to specified _stream_.
14031403

14041404
**Parameters:**
14051405

14061406
| Parameter | Type | Description |
14071407
| :- | :- | :- |
1408-
| stream | _io.BufferedRandom | The stream to save data to. |
1408+
| stream | _io.BufferedRandom | The stream. |
14091409

14101410
### Method: save(stream, options_base) {#save_stream_options_base_65}
14111411

english/python-net/aspose.imaging.imageoptions/apngoptions/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ url: /python-net/aspose.imaging.imageoptions/apngoptions/
2121
| **Name** | **Type** | **Access** | **Description** |
2222
| :- | :- | :- | :- |
2323
| DEFAULT_COMPRESSION_LEVEL [static] | int | r | The default compression level. |
24-
| bit_depth | byte | r/w | Gets or sets the bit depth values in range of 1, 2, 4, 8, 16.<br/> <br/><br/> Mind the next limits:<br/> <br/><br/>[PngColorType.GRAYSCALE](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/), [PngColorType.INDEXED_COLOR](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/) support bit depth of 1, 2, 4, 8.<br/> <br/><br/>[PngColorType.GRAYSCALE_WITH_ALPHA](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/) supports bit depth of 8.<br/> <br/><br/>[PngColorType.TRUECOLOR](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/), [PngColorType.TRUECOLOR_WITH_ALPHA](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/) support bit depth of 8, 16.<br/> <br/> |
24+
| bit_depth | byte | r/w | Gets or sets the bit depth values in range of 1, 2, 4, 8, 16.<br/> <br/><br/> Mind the next limits:<br/> <br/><br/>[PngColorType.INDEXED_COLOR](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/) supports bit depth of 1, 2, 4, 8.<br/> <br/><br/>[PngColorType.GRAYSCALE](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/), [PngColorType.GRAYSCALE_WITH_ALPHA](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/) support bit depth of 8.<br/> <br/><br/>[PngColorType.TRUECOLOR](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/), [PngColorType.TRUECOLOR_WITH_ALPHA](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/) support bit depth of 8, 16.<br/> <br/> |
2525
| buffer_size_hint | int | r/w | Gets or sets the buffer size hint which is defined max allowed size for all internal buffers. |
2626
| color_type | [PngColorType](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/) | r/w | Gets or sets the type of the color. |
2727
| compression_level | int | r/w | Gets or sets the [PngImage](/imaging/python-net/aspose.imaging.fileformats.png/pngimage/) compression level in the range of 0-9. The higher the value - the more efficient the compression. |

english/python-net/aspose.imaging.imageoptions/emfrasterizationoptions/_index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ url: /python-net/aspose.imaging.imageoptions/emfrasterizationoptions/
4646
| **Name** | **Description** |
4747
| :- | :- |
4848
| [clone()](#clone__1) | Creates a memberwise clone of this instance. |
49-
| [copy_to(vector_rasterization_options)](#copy_to_vector_rasterization_options_2) | Copies to. |
49+
| [copy_to(vector_rasterization_options)](#copy_to_vector_rasterization_options_2) | Copies this to _vectorRasterizationOptions_. |
5050

5151

5252
### Constructor: EmfRasterizationOptions() {#EmfRasterizationOptions__1}
@@ -81,11 +81,11 @@ Creates a memberwise clone of this instance.
8181
copy_to(vector_rasterization_options)
8282
```
8383

84-
Copies to.
84+
Copies this to _vectorRasterizationOptions_.
8585

8686
**Parameters:**
8787

8888
| Parameter | Type | Description |
8989
| :- | :- | :- |
90-
| vector_rasterization_options | [VectorRasterizationOptions](/imaging/python-net/aspose.imaging.imageoptions/vectorrasterizationoptions) | The vector rasterization options. |
90+
| vector_rasterization_options | [VectorRasterizationOptions](/imaging/python-net/aspose.imaging.imageoptions/vectorrasterizationoptions) | vectorRasterizationOptions |
9191

english/python-net/aspose.imaging.imageoptions/pngoptions/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ url: /python-net/aspose.imaging.imageoptions/pngoptions/
2222
| **Name** | **Type** | **Access** | **Description** |
2323
| :- | :- | :- | :- |
2424
| DEFAULT_COMPRESSION_LEVEL [static] | int | r | The default compression level. |
25-
| bit_depth | byte | r/w | Gets or sets the bit depth values in range of 1, 2, 4, 8, 16.<br/> <br/><br/> Mind the next limits:<br/> <br/><br/>[PngColorType.GRAYSCALE](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/), [PngColorType.INDEXED_COLOR](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/) support bit depth of 1, 2, 4, 8.<br/> <br/><br/>[PngColorType.GRAYSCALE_WITH_ALPHA](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/) supports bit depth of 8.<br/> <br/><br/>[PngColorType.TRUECOLOR](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/), [PngColorType.TRUECOLOR_WITH_ALPHA](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/) support bit depth of 8, 16.<br/> <br/> |
25+
| bit_depth | byte | r/w | Gets or sets the bit depth values in range of 1, 2, 4, 8, 16.<br/> <br/><br/> Mind the next limits:<br/> <br/><br/>[PngColorType.INDEXED_COLOR](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/) supports bit depth of 1, 2, 4, 8.<br/> <br/><br/>[PngColorType.GRAYSCALE](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/), [PngColorType.GRAYSCALE_WITH_ALPHA](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/) support bit depth of 8.<br/> <br/><br/>[PngColorType.TRUECOLOR](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/), [PngColorType.TRUECOLOR_WITH_ALPHA](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/) support bit depth of 8, 16.<br/> <br/> |
2626
| buffer_size_hint | int | r/w | Gets or sets the buffer size hint which is defined max allowed size for all internal buffers. |
2727
| [color_type](#color_type1) | [PngColorType](/imaging/python-net/aspose.imaging.fileformats.png/pngcolortype/) | r/w | Gets or sets the type of the color. |
2828
| [compression_level](#compression_level2) | int | r/w | Gets or sets the [PngImage](/imaging/python-net/aspose.imaging.fileformats.png/pngimage/) compression level in the range of 0-9. The higher the value - the more efficient the compression. |

0 commit comments

Comments
 (0)