Skip to content

Commit ad6d422

Browse files
author
Evgeniy Sidenko
committed
Release Aspose.Imaging for Python via .NET 25.6
1 parent fe576ca commit ad6d422

File tree

21 files changed

+52
-22
lines changed

21 files changed

+52
-22
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ The module contains classes suitable for export, save or creation of different f
5454
| :- | :- |
5555
| [MultiPageMode](/imaging/python-net/aspose.imaging.imageoptions/multipagemode/) | Represents multipage mode |
5656
| [PdfImageCompressionOptions](/imaging/python-net/aspose.imaging.imageoptions/pdfimagecompressionoptions/) | Pdf image compression options |
57+
| [PngCompressionLevel](/imaging/python-net/aspose.imaging.imageoptions/pngcompressionlevel/) | The png compression level enum. |
5758
| [PositioningTypes](/imaging/python-net/aspose.imaging.imageoptions/positioningtypes/) | Positioning and size types for graphics scene. |
5859
| [RenderErrorCode](/imaging/python-net/aspose.imaging.imageoptions/rendererrorcode/) | Represents possible missing sections in CAD file |
5960
| [TiffOptionsError](/imaging/python-net/aspose.imaging.imageoptions/tiffoptionserror/) | The tiff options error codes. |

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ url: /python-net/aspose.imaging.imageoptions/apngoptions/
2020
## **Properties**
2121
| **Name** | **Type** | **Access** | **Description** |
2222
| :- | :- | :- | :- |
23-
| DEFAULT_COMPRESSION_LEVEL [static] | int | r | The default compression level. |
23+
| DEFAULT_COMPRESSION_LEVEL [static] | [PngCompressionLevel](/imaging/python-net/aspose.imaging.imageoptions/pngcompressionlevel) | r | The default compression level. |
2424
| 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. |
27-
| 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. |
27+
| compression_level | int | r/w | Gets or sets the [PngImage](/imaging/python-net/aspose.imaging.fileformats.png/pngimage/) compression level. |
2828
| [default_frame_time](#default_frame_time1) | uint | r/w | Gets or sets the default frame duration. |
2929
| disposed | bool | r | Gets a value indicating whether this instance is disposed. |
3030
| filter_type | [PngFilterType](/imaging/python-net/aspose.imaging.fileformats.png/pngfiltertype/) | r/w | Gets or sets the filter type used during png file save process. |
@@ -33,6 +33,7 @@ url: /python-net/aspose.imaging.imageoptions/apngoptions/
3333
| multi_page_options | [MultiPageOptions](/imaging/python-net/aspose.imaging.imageoptions/multipageoptions) | r/w | The multipage options |
3434
| [num_plays](#num_plays2) | int | r/w | Gets or sets the number of times to loop animation.<br/> 0 indicates infinite looping. |
3535
| palette | [IColorPalette](/imaging/python-net/aspose.imaging/icolorpalette) | r/w | Gets or sets the color palette. |
36+
| png_compression_level | [PngCompressionLevel](/imaging/python-net/aspose.imaging.imageoptions/pngcompressionlevel) | r/w | Gets or sets the [PngImage](/imaging/python-net/aspose.imaging.fileformats.png/pngimage/) compression level. |
3637
| progressive | bool | r/w | Gets or sets a value indicating whether a [PngImage](/imaging/python-net/aspose.imaging.fileformats.png/pngimage/) is progressive. |
3738
| resolution_settings | [ResolutionSetting](/imaging/python-net/aspose.imaging/resolutionsetting) | r/w | Gets or sets the resolution settings. |
3839
| source | [Source](/imaging/python-net/aspose.imaging/source) | r/w | Gets or sets the source to create image in. |
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: PngCompressionLevel Enumeration
3+
type: docs
4+
weight: 410
5+
url: /python-net/aspose.imaging.imageoptions/pngcompressionlevel/
6+
---
7+
8+
The png compression level enum.
9+
10+
**Module:** [aspose.imaging.imageoptions](/imaging/python-net/aspose.imaging.imageoptions/)
11+
12+
**Full Name:** aspose.imaging.imageoptions.PngCompressionLevel
13+
14+
## **Members**
15+
| **Member name** | **Description** |
16+
| :- | :- |
17+
| DEFLATE_RECOMENDED | The most optimised compression, with a good balance of speed and compression efficiency.<br/> Uses a faster deflate implementation with no compression scale. |
18+
| ZIP_LEVEL0 | The data will be simply stored, with no change at all.<br/> Uses a slower deflate implementation with a compression scale. |
19+
| ZIP_LEVEL1 | The fastest but least effective compression.<br/> Uses a slower deflate implementation with a compression scale. |
20+
| ZIP_LEVEL2 | A little slower, but better, than level 1.<br/> Uses a slower deflate implementation with a compression scale. |
21+
| ZIP_LEVEL3 | A little slower, but better, than level 2.<br/> Uses a slower deflate implementation with a compression scale. |
22+
| ZIP_LEVEL4 | A little slower, but better, than level 3.<br/> Uses a slower deflate implementation with a compression scale. |
23+
| ZIP_LEVEL5 | A little slower than level 4, but with better compression.<br/> Uses a slower deflate implementation with a compression scale. |
24+
| ZIP_LEVEL6 | A little slower than level 5, but with better compression.<br/> Uses a slower deflate implementation with a compression scale. |
25+
| ZIP_LEVEL7 | Better compression than level 6, but even slower.<br/> Uses a slower deflate implementation with a compression scale. |
26+
| ZIP_LEVEL8 | Better compression than level 7, but even slower.<br/> Uses a slower deflate implementation with a compression scale. |
27+
| ZIP_LEVEL9 | The "best" compression, where best means greatest reduction in size of the input data stream. <br/> This is also the slowest compression.<br/> Uses a slower deflate implementation with a compression scale. |

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,18 @@ url: /python-net/aspose.imaging.imageoptions/pngoptions/
2121
## **Properties**
2222
| **Name** | **Type** | **Access** | **Description** |
2323
| :- | :- | :- | :- |
24-
| DEFAULT_COMPRESSION_LEVEL [static] | int | r | The default compression level. |
24+
| DEFAULT_COMPRESSION_LEVEL [static] | [PngCompressionLevel](/imaging/python-net/aspose.imaging.imageoptions/pngcompressionlevel) | r | The default compression level. |
2525
| 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. |
28-
| [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. |
28+
| [compression_level](#compression_level2) | int | r/w | Gets or sets the [PngImage](/imaging/python-net/aspose.imaging.fileformats.png/pngimage/) compression level. |
2929
| disposed | bool | r | Gets a value indicating whether this instance is disposed. |
3030
| filter_type | [PngFilterType](/imaging/python-net/aspose.imaging.fileformats.png/pngfiltertype/) | r/w | Gets or sets the filter type used during png file save process. |
3131
| full_frame | bool | r/w | Gets or sets a value indicating whether [full frame]. |
3232
| keep_metadata | bool | r/w | Gets a value whether to keep original image metadata on export. |
3333
| multi_page_options | [MultiPageOptions](/imaging/python-net/aspose.imaging.imageoptions/multipageoptions) | r/w | The multipage options |
3434
| palette | [IColorPalette](/imaging/python-net/aspose.imaging/icolorpalette) | r/w | Gets or sets the color palette. |
35+
| png_compression_level | [PngCompressionLevel](/imaging/python-net/aspose.imaging.imageoptions/pngcompressionlevel) | r/w | Gets or sets the [PngImage](/imaging/python-net/aspose.imaging.fileformats.png/pngimage/) compression level. |
3536
| [progressive](#progressive3) | bool | r/w | Gets or sets a value indicating whether a [PngImage](/imaging/python-net/aspose.imaging.fileformats.png/pngimage/) is progressive. |
3637
| resolution_settings | [ResolutionSetting](/imaging/python-net/aspose.imaging/resolutionsetting) | r/w | Gets or sets the resolution settings. |
3738
| source | [Source](/imaging/python-net/aspose.imaging/source) | r/w | Gets or sets the source to create image in. |
@@ -78,7 +79,7 @@ Gets or sets the type of the color.
7879

7980
### Property: compression_level {#compression_level2}
8081

81-
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.
82+
Gets or sets the [PngImage](/imaging/python-net/aspose.imaging.fileformats.png/pngimage/) compression level.
8283

8384
**See also:**
8485

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: PositioningTypes Enumeration
33
type: docs
4-
weight: 410
4+
weight: 420
55
url: /python-net/aspose.imaging.imageoptions/positioningtypes/
66
---
77

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: RenderErrorCode Enumeration
33
type: docs
4-
weight: 420
4+
weight: 430
55
url: /python-net/aspose.imaging.imageoptions/rendererrorcode/
66
---
77

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: TiffOptionsError Enumeration
33
type: docs
4-
weight: 430
4+
weight: 440
55
url: /python-net/aspose.imaging.imageoptions/tiffoptionserror/
66
---
77

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: TypeOfEntities Enumeration
33
type: docs
4-
weight: 440
4+
weight: 450
55
url: /python-net/aspose.imaging.imageoptions/typeofentities/
66
---
77

english/python-net/aspose.imaging/processingtype/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: ProcessingType Enumeration
33
type: docs
4-
weight: 10930
4+
weight: 10940
55
url: /python-net/aspose.imaging/processingtype/
66
---
77

english/python-net/aspose.imaging/resizetype/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: ResizeType Enumeration
33
type: docs
4-
weight: 10970
4+
weight: 10980
55
url: /python-net/aspose.imaging/resizetype/
66
---
77

0 commit comments

Comments
 (0)