diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging.fileformats.djvu/djvuimage/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging.fileformats.djvu/djvuimage/_index.md index 620e46bae681..5f1a3ccb93d5 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging.fileformats.djvu/djvuimage/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging.fileformats.djvu/djvuimage/_index.md @@ -29,6 +29,8 @@ DjvuDocument class | Method | Description | | --- | --- | +| [loadDocument(InputStream stream)](#loadDocument-java.io.InputStream-) | Loads the document. | +| [loadDocument(InputStream stream, LoadOptions loadOptions)](#loadDocument-java.io.InputStream-com.aspose.imaging.LoadOptions-) | Loads the document. | | [getIdentifier()](#getIdentifier--) | Gets the unique identifier for the document | | [getPageCount()](#getPageCount--) | Gets the page count. | | [getPages()](#getPages--) | Gets the pages. | @@ -41,8 +43,6 @@ DjvuDocument class | [getPreviousPage()](#getPreviousPage--) | Gets the previous page of the document | | [getFileFormat()](#getFileFormat--) | Gets a value of file format | | [hasAlpha()](#hasAlpha--) | Gets the Has alpha channel. | -| [loadDocument(InputStream stream)](#loadDocument-java.io.InputStream-) | Loads the document. | -| [loadDocument(InputStream stream, LoadOptions loadOptions)](#loadDocument-java.io.InputStream-com.aspose.imaging.LoadOptions-) | Loads the document. | | [rotate(float angle, boolean resizeProportionally, Color backgroundColor)](#rotate-float-boolean-com.aspose.imaging.Color-) | `!:RasterCahcedMultipageImage.Rotate` image around the center. | | [resize(int newWidth, int newHeight, int resizeType)](#resize-int-int-int-) | Resizes the image. | | [resizeWidthProportionally(int newWidth, int resizeType)](#resizeWidthProportionally-int-int-) | Resizes the width proportionally. | @@ -133,6 +133,37 @@ public final StdEvent PropertyCh Occurs when a property value changes. +### loadDocument(InputStream stream) {#loadDocument-java.io.InputStream-} +``` +public static DjvuImage loadDocument(InputStream stream) +``` + + +Loads the document. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| stream | java.io.InputStream | The stream. | + +**Returns:** +[DjvuImage](../../com.aspose.imaging.fileformats.djvu/djvuimage) - Loaded djvu document +### loadDocument(InputStream stream, LoadOptions loadOptions) {#loadDocument-java.io.InputStream-com.aspose.imaging.LoadOptions-} +``` +public static DjvuImage loadDocument(InputStream stream, LoadOptions loadOptions) +``` + + +Loads the document. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| stream | java.io.InputStream | The stream. | +| loadOptions | [LoadOptions](../../com.aspose.imaging/loadoptions) | The load options. | + +**Returns:** +[DjvuImage](../../com.aspose.imaging.fileformats.djvu/djvuimage) - Loaded djvu document ### getIdentifier() {#getIdentifier--} ``` public int getIdentifier() @@ -418,37 +449,6 @@ Value: The Has alpha channel. **Returns:** boolean - the Has alpha channel. -### loadDocument(InputStream stream) {#loadDocument-java.io.InputStream-} -``` -public static DjvuImage loadDocument(InputStream stream) -``` - - -Loads the document. - -**Parameters:** -| Parameter | Type | Description | -| --- | --- | --- | -| stream | java.io.InputStream | The stream. | - -**Returns:** -[DjvuImage](../../com.aspose.imaging.fileformats.djvu/djvuimage) - Loaded djvu document -### loadDocument(InputStream stream, LoadOptions loadOptions) {#loadDocument-java.io.InputStream-com.aspose.imaging.LoadOptions-} -``` -public static DjvuImage loadDocument(InputStream stream, LoadOptions loadOptions) -``` - - -Loads the document. - -**Parameters:** -| Parameter | Type | Description | -| --- | --- | --- | -| stream | java.io.InputStream | The stream. | -| loadOptions | [LoadOptions](../../com.aspose.imaging/loadoptions) | The load options. | - -**Returns:** -[DjvuImage](../../com.aspose.imaging.fileformats.djvu/djvuimage) - Loaded djvu document ### rotate(float angle, boolean resizeProportionally, Color backgroundColor) {#rotate-float-boolean-com.aspose.imaging.Color-} ``` public void rotate(float angle, boolean resizeProportionally, Color backgroundColor) diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging.imageoptions/pngoptions/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging.imageoptions/pngoptions/_index.md index 9511b85cd897..692b8a470914 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging.imageoptions/pngoptions/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging.imageoptions/pngoptions/_index.md @@ -28,18 +28,18 @@ The png file format create options. | Method | Description | | --- | --- | -| [getXmpData()](#getXmpData--) | Gets or sets the XMP metadata container. | -| [setXmpData(XmpPacketWrapper value)](#setXmpData-com.aspose.imaging.xmp.XmpPacketWrapper-) | Gets or sets the XMP metadata container. | -| [getColorType()](#getColorType--) | Gets or sets the type of the color. | -| [setColorType(int value)](#setColorType-int-) | Gets or sets the type of the color. | -| [getProgressive()](#getProgressive--) | Gets or sets a value indicating whether this `PngOptions` is progressive. | -| [setProgressive(boolean value)](#setProgressive-boolean-) | Gets or sets a value indicating whether this `PngOptions` is progressive. | -| [getFilterType()](#getFilterType--) | Gets or sets the filter type used during png file save process. | -| [setFilterType(int value)](#setFilterType-int-) | Gets or sets the filter type used during png file save process. | -| [getCompressionLevel()](#getCompressionLevel--) | The png image compression level in the 0-9 range, where 9 is maximum compression and 0 is store mode. | -| [setCompressionLevel(int value)](#setCompressionLevel-int-) | The png image compression level in the 0-9 range, where 9 is maximum compression and 0 is store mode. | -| [getBitDepth()](#getBitDepth--) | Gets the bit depth. | -| [setBitDepth(byte value)](#setBitDepth-byte-) | Sets the bit depth. | +| [getXmpData()](#getXmpData--) | Gets the XMP metadata container. | +| [setXmpData(XmpPacketWrapper value)](#setXmpData-com.aspose.imaging.xmp.XmpPacketWrapper-) | Sets the XMP metadata container. | +| [getColorType()](#getColorType--) | Gets the type of the color. | +| [setColorType(int value)](#setColorType-int-) | Sets the type of the color. | +| [getProgressive()](#getProgressive--) | Gets a value indicating whether a [PngImage](../../com.aspose.imaging.fileformats.png/pngimage) is progressive. | +| [setProgressive(boolean value)](#setProgressive-boolean-) | Sets a value indicating whether a [PngImage](../../com.aspose.imaging.fileformats.png/pngimage) is progressive. | +| [getFilterType()](#getFilterType--) | Gets the filter type used during png file save process. | +| [setFilterType(int value)](#setFilterType-int-) | Sets the filter type used during png file save process. | +| [getCompressionLevel()](#getCompressionLevel--) | Gets the [PngImage](../../com.aspose.imaging.fileformats.png/pngimage) compression level in the range of 0-9. | +| [setCompressionLevel(int value)](#setCompressionLevel-int-) | Sets the [PngImage](../../com.aspose.imaging.fileformats.png/pngimage) compression level in the range of 0-9. | +| [getBitDepth()](#getBitDepth--) | Gets the bit depth values in range of 1, 2, 4, 8, 16. | +| [setBitDepth(byte value)](#setBitDepth-byte-) | Sets the bit depth values in range of 1, 2, 4, 8, 16. | ## Example: This example demonstrates the use of different classes from SaveOptions Namespace for export purposes. This example demonstrates the use of different classes from SaveOptions Namespace for export purposes. An image of type Gif is loaded into an instance of Image and then exported out to several formats. @@ -133,49 +133,53 @@ public XmpPacketWrapper getXmpData() ``` -Gets or sets the XMP metadata container. +Gets the XMP metadata container. Value: The XMP data container. **Returns:** -[XmpPacketWrapper](../../com.aspose.imaging.xmp/xmppacketwrapper) +[XmpPacketWrapper](../../com.aspose.imaging.xmp/xmppacketwrapper) - the XMP metadata container. ### setXmpData(XmpPacketWrapper value) {#setXmpData-com.aspose.imaging.xmp.XmpPacketWrapper-} ``` public void setXmpData(XmpPacketWrapper value) ``` -Gets or sets the XMP metadata container. +Sets the XMP metadata container. Value: The XMP data container. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [XmpPacketWrapper](../../com.aspose.imaging.xmp/xmppacketwrapper) | | +| value | [XmpPacketWrapper](../../com.aspose.imaging.xmp/xmppacketwrapper) | the XMP metadata container. | ### getColorType() {#getColorType--} ``` -public int getColorType() +public final int getColorType() ``` -Gets or sets the type of the color. +Gets the type of the color. + +Value: The type of the color. **Returns:** -int - The type of the color. +int - the type of the color. ### setColorType(int value) {#setColorType-int-} ``` -public void setColorType(int value) +public final void setColorType(int value) ``` -Gets or sets the type of the color. +Sets the type of the color. + +Value: The type of the color. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | int | The type of the color. | +| value | int | the type of the color. | **Example: The following example shows how to compress a PNG image, using indexed color with best fit palette** @@ -254,26 +258,30 @@ try { ### getProgressive() {#getProgressive--} ``` -public boolean getProgressive() +public final boolean getProgressive() ``` -Gets or sets a value indicating whether this `PngOptions` is progressive. +Gets a value indicating whether a [PngImage](../../com.aspose.imaging.fileformats.png/pngimage) is progressive. + +Value: `` if progressive; otherwise, ``. **Returns:** -boolean - `true` if progressive; otherwise, `false`. +boolean - a value indicating whether a [PngImage](../../com.aspose.imaging.fileformats.png/pngimage) is progressive. ### setProgressive(boolean value) {#setProgressive-boolean-} ``` -public void setProgressive(boolean value) +public final void setProgressive(boolean value) ``` -Gets or sets a value indicating whether this `PngOptions` is progressive. +Sets a value indicating whether a [PngImage](../../com.aspose.imaging.fileformats.png/pngimage) is progressive. + +Value: `` if progressive; otherwise, ``. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | boolean | `true` if progressive; otherwise, `false`. | +| value | boolean | a value indicating whether a [PngImage](../../com.aspose.imaging.fileformats.png/pngimage) is progressive. | **Example: The following example shows how to compress a PNG image, using indexed color with best fit palette** @@ -347,21 +355,21 @@ try { ### getFilterType() {#getFilterType--} ``` -public int getFilterType() +public final int getFilterType() ``` -Gets or sets the filter type used during png file save process. +Gets the filter type used during png file save process. **Returns:** int - the filter type used during png file save process. ### setFilterType(int value) {#setFilterType-int-} ``` -public void setFilterType(int value) +public final void setFilterType(int value) ``` -Gets or sets the filter type used during png file save process. +Sets the filter type used during png file save process. **Parameters:** | Parameter | Type | Description | @@ -444,26 +452,26 @@ for (int filterType : filterTypes) { ### getCompressionLevel() {#getCompressionLevel--} ``` -public int getCompressionLevel() +public final int getCompressionLevel() ``` -The png image compression level in the 0-9 range, where 9 is maximum compression and 0 is store mode. +Gets the [PngImage](../../com.aspose.imaging.fileformats.png/pngimage) compression level in the range of 0-9. The higher the value - the more efficient the compression. **Returns:** -int - the compression level in the 0-9 range, where 9 is maximum compression and 0 is store mode. +int - the [PngImage](../../com.aspose.imaging.fileformats.png/pngimage) compression level in the range of 0-9. ### setCompressionLevel(int value) {#setCompressionLevel-int-} ``` -public void setCompressionLevel(int value) +public final void setCompressionLevel(int value) ``` -The png image compression level in the 0-9 range, where 9 is maximum compression and 0 is store mode. +Sets the [PngImage](../../com.aspose.imaging.fileformats.png/pngimage) compression level in the range of 0-9. The higher the value - the more efficient the compression. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | int | the compression level in the 0-9 range, where 9 is maximum compression and 0 is store mode. | +| value | int | the [PngImage](../../com.aspose.imaging.fileformats.png/pngimage) compression level in the range of 0-9. | **Example: The following example shows how to compress a PNG image, using indexed color with best fit palette** @@ -542,26 +550,42 @@ try { ### getBitDepth() {#getBitDepth--} ``` -public byte getBitDepth() +public final byte getBitDepth() ``` -Gets the bit depth. +Gets the bit depth values in range of 1, 2, 4, 8, 16. + +Mind the next limits: + +[PngColorType.Grayscale](../../com.aspose.imaging.fileformats.png/pngcolortype\#Grayscale), [PngColorType.IndexedColor](../../com.aspose.imaging.fileformats.png/pngcolortype\#IndexedColor) support bit depth of 1, 2, 4, 8. + +[PngColorType.GrayscaleWithAlpha](../../com.aspose.imaging.fileformats.png/pngcolortype\#GrayscaleWithAlpha) supports bit depth of 8. + +[PngColorType.Truecolor](../../com.aspose.imaging.fileformats.png/pngcolortype\#Truecolor), [PngColorType.TruecolorWithAlpha](../../com.aspose.imaging.fileformats.png/pngcolortype\#TruecolorWithAlpha) support bit depth of 8, 16. **Returns:** -byte - The bit depth. +byte - the bit depth values in range of 1, 2, 4, 8, 16. ### setBitDepth(byte value) {#setBitDepth-byte-} ``` -public void setBitDepth(byte value) +public final void setBitDepth(byte value) ``` -Sets the bit depth. +Sets the bit depth values in range of 1, 2, 4, 8, 16. + +Mind the next limits: + +[PngColorType.Grayscale](../../com.aspose.imaging.fileformats.png/pngcolortype\#Grayscale), [PngColorType.IndexedColor](../../com.aspose.imaging.fileformats.png/pngcolortype\#IndexedColor) support bit depth of 1, 2, 4, 8. + +[PngColorType.GrayscaleWithAlpha](../../com.aspose.imaging.fileformats.png/pngcolortype\#GrayscaleWithAlpha) supports bit depth of 8. + +[PngColorType.Truecolor](../../com.aspose.imaging.fileformats.png/pngcolortype\#Truecolor), [PngColorType.TruecolorWithAlpha](../../com.aspose.imaging.fileformats.png/pngcolortype\#TruecolorWithAlpha) support bit depth of 8, 16. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | byte | The bit depth. | +| value | byte | the bit depth values in range of 1, 2, 4, 8, 16. | **Example: The following example shows how to save an image to PNG format using various options.** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.schemas.xmpdm/projectlink/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.schemas.xmpdm/projectlink/_index.md index 555c3bdc1423..f454ae0e42fc 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.schemas.xmpdm/projectlink/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.schemas.xmpdm/projectlink/_index.md @@ -96,4 +96,4 @@ public String getXmpRepresentation() Returns string contained value in XMP format. **Returns:** -java.lang.String - Returns string contained value in XMP format. +java.lang.String - Returns string containing xmp representation. diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.schemas.xmpdm/timecode/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.schemas.xmpdm/timecode/_index.md index b7acf8828a4e..f708c0d761cb 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.schemas.xmpdm/timecode/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.schemas.xmpdm/timecode/_index.md @@ -110,7 +110,7 @@ public String getXmpRepresentation() Returns the string contained value in XMP format. **Returns:** -java.lang.String - Returns the string contained value in XMP format. +java.lang.String - Returns the string containing xmp representation. ### isEquals(Timecode other) {#isEquals-com.aspose.imaging.xmp.schemas.xmpdm.Timecode-} ``` public boolean isEquals(Timecode other) diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.types.basic/xmpboolean/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.types.basic/xmpboolean/_index.md index 39006fb84420..f0da70aa8f01 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.types.basic/xmpboolean/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.types.basic/xmpboolean/_index.md @@ -97,4 +97,4 @@ public String getXmpRepresentation() Returns string contained value in XMP format. **Returns:** -java.lang.String - Returns string contained value in XMP format. +java.lang.String - Returns string containing xmp representation. diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.types.basic/xmpdate/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.types.basic/xmpdate/_index.md index 8c63712ae579..016af20f9fe6 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.types.basic/xmpdate/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.types.basic/xmpdate/_index.md @@ -121,4 +121,4 @@ public String getXmpRepresentation() Returns string contained value in XMP format. **Returns:** -java.lang.String - Returns string contained value in XMP format. +java.lang.String - Returns string containing xmp representation diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.types/xmptypebase/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.types/xmptypebase/_index.md index 4b8721974f50..17ccafa41c21 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.types/xmptypebase/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging.xmp.types/xmptypebase/_index.md @@ -41,4 +41,4 @@ public abstract String getXmpRepresentation() Gets the string contained value in XMP format. **Returns:** -java.lang.String - Returns the string contained value in XMP format. +java.lang.String - Returns the string containing xmp representation. diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/_index.md index 62914c8fb98f..41911c21538f 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/_index.md @@ -101,6 +101,7 @@ The package is the core for nested packages and the most basic objects used for | [Rectangle](../com.aspose.imaging/rectangle) | Stores a set of four integers that represent the location and size of a rectangle. | | [RectangleF](../com.aspose.imaging/rectanglef) | Stores a set of four floating-point numbers that represent the location and size of a rectangle. | | [Region](../com.aspose.imaging/region) | Describes the interior of a graphics shape composed of rectangles and paths. | +| [RemoveBackgroundSettings](../com.aspose.imaging/removebackgroundsettings) | The remove background settings | | [ResizeType](../com.aspose.imaging/resizetype) | Specifies the resize type. | | [ResolutionSetting](../com.aspose.imaging/resolutionsetting) | The resolution setting for image save options. | | [ResolutionUnit](../com.aspose.imaging/resolutionunit) | Resolution unit enum. | diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/customfontsource/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/customfontsource/_index.md index 67f392673d96..f0b25bd83e1d 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/customfontsource/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/customfontsource/_index.md @@ -3,7 +3,7 @@ title: CustomFontSource second_title: Aspose.Imaging for Java API Reference description: Custom font source provider interface type: docs -weight: 121 +weight: 122 url: /java/com.aspose.imaging/customfontsource/ ---``` public interface CustomFontSource diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iadvancedbufferprocessor/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iadvancedbufferprocessor/_index.md index c712c06b76cf..cafabd5bf52f 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iadvancedbufferprocessor/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iadvancedbufferprocessor/_index.md @@ -3,7 +3,7 @@ title: IAdvancedBufferProcessor second_title: Aspose.Imaging for Java API Reference description: The advanced buffer processor. type: docs -weight: 122 +weight: 123 url: /java/com.aspose.imaging/iadvancedbufferprocessor/ --- **All Implemented Interfaces:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/ianimationframe/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/ianimationframe/_index.md index 2dc0bb9b048f..d376186607fb 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/ianimationframe/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/ianimationframe/_index.md @@ -3,7 +3,7 @@ title: IAnimationFrame second_title: Aspose.Imaging for Java API Reference description: The Animation frame type: docs -weight: 123 +weight: 124 url: /java/com.aspose.imaging/ianimationframe/ ---``` public interface IAnimationFrame diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/ibufferprocessor/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/ibufferprocessor/_index.md index cd863a1b4f12..3af6690d157b 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/ibufferprocessor/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/ibufferprocessor/_index.md @@ -3,7 +3,7 @@ title: IBufferProcessor second_title: Aspose.Imaging for Java API Reference description: The buffer processor. type: docs -weight: 124 +weight: 125 url: /java/com.aspose.imaging/ibufferprocessor/ ---``` public interface IBufferProcessor diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/icolorconverter/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/icolorconverter/_index.md index 46d193825d05..a56af7d6966d 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/icolorconverter/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/icolorconverter/_index.md @@ -3,7 +3,7 @@ title: IColorConverter second_title: Aspose.Imaging for Java API Reference description: The color converter. type: docs -weight: 125 +weight: 126 url: /java/com.aspose.imaging/icolorconverter/ ---``` public interface IColorConverter diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/icolorpalette/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/icolorpalette/_index.md index 4178c1aab93f..37b2fc5c70d4 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/icolorpalette/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/icolorpalette/_index.md @@ -3,7 +3,7 @@ title: IColorPalette second_title: Aspose.Imaging for Java API Reference description: The color palette interface. type: docs -weight: 126 +weight: 127 url: /java/com.aspose.imaging/icolorpalette/ ---``` public interface IColorPalette diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimagecreator/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimagecreator/_index.md index cf81f426024d..28a93c798daa 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimagecreator/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimagecreator/_index.md @@ -3,7 +3,7 @@ title: IImageCreator second_title: Aspose.Imaging for Java API Reference description: The image creator. type: docs -weight: 127 +weight: 128 url: /java/com.aspose.imaging/iimagecreator/ ---``` public interface IImageCreator diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimagecreatordescriptor/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimagecreatordescriptor/_index.md index 8ad90ecbddd8..a19f18b34a13 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimagecreatordescriptor/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimagecreatordescriptor/_index.md @@ -3,7 +3,7 @@ title: IImageCreatorDescriptor second_title: Aspose.Imaging for Java API Reference description: The image creator descriptor specifying the creator properties. type: docs -weight: 128 +weight: 129 url: /java/com.aspose.imaging/iimagecreatordescriptor/ --- **All Implemented Interfaces:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimagedescriptor/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimagedescriptor/_index.md index e34a3960089c..5c9bb1afecdf 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimagedescriptor/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimagedescriptor/_index.md @@ -3,7 +3,7 @@ title: IImageDescriptor second_title: Aspose.Imaging for Java API Reference description: The image descriptor. type: docs -weight: 129 +weight: 130 url: /java/com.aspose.imaging/iimagedescriptor/ ---``` public interface IImageDescriptor diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimageexporter/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimageexporter/_index.md index 5462425c38bf..10d17ddaa6ee 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimageexporter/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimageexporter/_index.md @@ -3,7 +3,7 @@ title: IImageExporter second_title: Aspose.Imaging for Java API Reference description: The image exporter. type: docs -weight: 130 +weight: 131 url: /java/com.aspose.imaging/iimageexporter/ ---``` public interface IImageExporter diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimageexporterdescriptor/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimageexporterdescriptor/_index.md index bf971a78ec48..d9d0c2a46681 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimageexporterdescriptor/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimageexporterdescriptor/_index.md @@ -3,7 +3,7 @@ title: IImageExporterDescriptor second_title: Aspose.Imaging for Java API Reference description: Represents the image exporter descriptor. type: docs -weight: 131 +weight: 132 url: /java/com.aspose.imaging/iimageexporterdescriptor/ --- **All Implemented Interfaces:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimageloader/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimageloader/_index.md index e386b4fae0f0..15a5477d8323 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimageloader/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimageloader/_index.md @@ -3,7 +3,7 @@ title: IImageLoader second_title: Aspose.Imaging for Java API Reference description: The image loader. type: docs -weight: 132 +weight: 133 url: /java/com.aspose.imaging/iimageloader/ ---``` public interface IImageLoader diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimageloaderdescriptor/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimageloaderdescriptor/_index.md index 1a34edbf445a..1d6c22104452 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimageloaderdescriptor/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iimageloaderdescriptor/_index.md @@ -3,7 +3,7 @@ title: IImageLoaderDescriptor second_title: Aspose.Imaging for Java API Reference description: The image loader descriptor specifying the loader properties. type: docs -weight: 133 +weight: 134 url: /java/com.aspose.imaging/iimageloaderdescriptor/ --- **All Implemented Interfaces:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iindexedcolorconverter/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iindexedcolorconverter/_index.md index 76e4d7bb1afc..7c437e417a36 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iindexedcolorconverter/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iindexedcolorconverter/_index.md @@ -3,7 +3,7 @@ title: IIndexedColorConverter second_title: Aspose.Imaging for Java API Reference description: The color converter for indexed image formats. type: docs -weight: 134 +weight: 135 url: /java/com.aspose.imaging/iindexedcolorconverter/ ---``` public interface IIndexedColorConverter diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/ikeyedobject/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/ikeyedobject/_index.md index c6381153ecc7..7eaa1b74170b 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/ikeyedobject/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/ikeyedobject/_index.md @@ -3,7 +3,7 @@ title: IKeyedObject second_title: Aspose.Imaging for Java API Reference description: Represents interface for objects with keys. type: docs -weight: 135 +weight: 136 url: /java/com.aspose.imaging/ikeyedobject/ ---``` public interface IKeyedObject diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/imultipageimage/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/imultipageimage/_index.md index 8ac76b9b1fd1..1e123cac57f0 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/imultipageimage/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/imultipageimage/_index.md @@ -3,7 +3,7 @@ title: IMultipageImage second_title: Aspose.Imaging for Java API Reference description: The multipage image interface type: docs -weight: 136 +weight: 137 url: /java/com.aspose.imaging/imultipageimage/ ---``` public interface IMultipageImage diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/imultipageimageext/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/imultipageimageext/_index.md index 8aed7ce3df72..e319cc50203d 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/imultipageimageext/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/imultipageimageext/_index.md @@ -3,7 +3,7 @@ title: IMultipageImageExt second_title: Aspose.Imaging for Java API Reference description: The extended multipage image interface type: docs -weight: 137 +weight: 138 url: /java/com.aspose.imaging/imultipageimageext/ --- **All Implemented Interfaces:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iobjectwithbounds/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iobjectwithbounds/_index.md index cdbae43bb026..9abafdf55c44 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iobjectwithbounds/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iobjectwithbounds/_index.md @@ -3,7 +3,7 @@ title: IObjectWithBounds second_title: Aspose.Imaging for Java API Reference description: Represents an object with bounds. type: docs -weight: 138 +weight: 139 url: /java/com.aspose.imaging/iobjectwithbounds/ ---``` public interface IObjectWithBounds diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iorderedshape/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iorderedshape/_index.md index 53a61aa0764c..600f4a3151e8 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/iorderedshape/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/iorderedshape/_index.md @@ -3,7 +3,7 @@ title: IOrderedShape second_title: Aspose.Imaging for Java API Reference description: Represents an ordered shape. type: docs -weight: 139 +weight: 140 url: /java/com.aspose.imaging/iorderedshape/ ---``` public interface IOrderedShape diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/ipartialargb32pixelloader/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/ipartialargb32pixelloader/_index.md index c2173f7aefde..3e6393af7ef6 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/ipartialargb32pixelloader/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/ipartialargb32pixelloader/_index.md @@ -3,7 +3,7 @@ title: IPartialArgb32PixelLoader second_title: Aspose.Imaging for Java API Reference description: Conforms to the 32-bit ARGB pixels loaded partially. type: docs -weight: 140 +weight: 141 url: /java/com.aspose.imaging/ipartialargb32pixelloader/ ---``` public interface IPartialArgb32PixelLoader diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/ipartialargb64pixelloader/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/ipartialargb64pixelloader/_index.md index 859862778373..6203cb5ed4b8 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/ipartialargb64pixelloader/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/ipartialargb64pixelloader/_index.md @@ -3,7 +3,7 @@ title: IPartialArgb64PixelLoader second_title: Aspose.Imaging for Java API Reference description: The 64-bit ARGB pixels loader. type: docs -weight: 141 +weight: 142 url: /java/com.aspose.imaging/ipartialargb64pixelloader/ --- **All Implemented Interfaces:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/ipartialpixelloader/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/ipartialpixelloader/_index.md index 01cd4f9e24d5..4b06fe004a48 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/ipartialpixelloader/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/ipartialpixelloader/_index.md @@ -3,7 +3,7 @@ title: IPartialPixelLoader second_title: Aspose.Imaging for Java API Reference description: Conforms to the pixels loaded partially. type: docs -weight: 142 +weight: 143 url: /java/com.aspose.imaging/ipartialpixelloader/ ---``` public interface IPartialPixelLoader diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/ipartialrawdataloader/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/ipartialrawdataloader/_index.md index b87ee46732bc..71a8c0378582 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/ipartialrawdataloader/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/ipartialrawdataloader/_index.md @@ -3,7 +3,7 @@ title: IPartialRawDataLoader second_title: Aspose.Imaging for Java API Reference description: The partial data loader. type: docs -weight: 143 +weight: 144 url: /java/com.aspose.imaging/ipartialrawdataloader/ ---``` public interface IPartialRawDataLoader diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/irasterimageargb32pixelloader/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/irasterimageargb32pixelloader/_index.md index 2bc20876d4db..e400c04342a7 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/irasterimageargb32pixelloader/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/irasterimageargb32pixelloader/_index.md @@ -3,7 +3,7 @@ title: IRasterImageArgb32PixelLoader second_title: Aspose.Imaging for Java API Reference description: The raster image 32-bit ARGB pixel loader. type: docs -weight: 144 +weight: 145 url: /java/com.aspose.imaging/irasterimageargb32pixelloader/ --- **All Implemented Interfaces:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/irasterimageargb64pixelloader/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/irasterimageargb64pixelloader/_index.md index 02af2cc4d8a4..4d017a46de10 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/irasterimageargb64pixelloader/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/irasterimageargb64pixelloader/_index.md @@ -3,7 +3,7 @@ title: IRasterImageArgb64PixelLoader second_title: Aspose.Imaging for Java API Reference description: The raster image 64-bit ARGB pixel loader. type: docs -weight: 145 +weight: 146 url: /java/com.aspose.imaging/irasterimageargb64pixelloader/ --- **All Implemented Interfaces:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/irasterimagepixelloader/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/irasterimagepixelloader/_index.md index 3077ae2fa2e5..e194aacd3628 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/irasterimagepixelloader/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/irasterimagepixelloader/_index.md @@ -3,7 +3,7 @@ title: IRasterImagePixelLoader second_title: Aspose.Imaging for Java API Reference description: The raster image pixel loader. type: docs -weight: 146 +weight: 147 url: /java/com.aspose.imaging/irasterimagepixelloader/ --- **All Implemented Interfaces:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/irasterimagerawdataloader/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/irasterimagerawdataloader/_index.md index c3e4cc5de732..251d4c8ef92b 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/irasterimagerawdataloader/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/irasterimagerawdataloader/_index.md @@ -3,7 +3,7 @@ title: IRasterImageRawDataLoader second_title: Aspose.Imaging for Java API Reference description: The raster image raw data loader. type: docs -weight: 147 +weight: 148 url: /java/com.aspose.imaging/irasterimagerawdataloader/ ---``` public interface IRasterImageRawDataLoader diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/metered/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/metered/_index.md index d78359da0024..0ffb36b7b111 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/metered/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/metered/_index.md @@ -26,23 +26,45 @@ In this example, an attempt will be made to set metered public and private key | Method | Description | | --- | --- | -| [setMeteredKey(String publicKey, String privateKey)](#setMeteredKey-java.lang.String-java.lang.String-) | Sets metered public and private key If you purchase metered license, when start application, this API should be called, normally, this is enough. | -| [equals(Object obj)](#equals-java.lang.Object-) | Determines whether the specified Object, is equal to this instance. | | [getConsumptionQuantity()](#getConsumptionQuantity--) | Gets consumption file size | | [getConsumptionCredit()](#getConsumptionCredit--) | Gets consumption credit | +| [setMeteredKey(String publicKey, String privateKey)](#setMeteredKey-java.lang.String-java.lang.String-) | Sets metered public and private key. | +| [equals(Object obj)](#equals-java.lang.Object-) | Determines whether the specified Object, is equal to this instance. | ### Metered() {#Metered--} ``` public Metered() ``` +### getConsumptionQuantity() {#getConsumptionQuantity--} +``` +public static BigDecimal getConsumptionQuantity() +``` + + +Gets consumption file size + +**Returns:** +java.math.BigDecimal - consumption file size +### getConsumptionCredit() {#getConsumptionCredit--} +``` +public static BigDecimal getConsumptionCredit() +``` + + +Gets consumption credit + +**Returns:** +java.math.BigDecimal - consumption quantity ### setMeteredKey(String publicKey, String privateKey) {#setMeteredKey-java.lang.String-java.lang.String-} ``` public void setMeteredKey(String publicKey, String privateKey) ``` -Sets metered public and private key If you purchase metered license, when start application, this API should be called, normally, this is enough. However, if always fail to upload consumption data and exceed 24 hours, the license will be set to evaluation status, to avoid such case, you should regularly check the license status, if it is evaluation status, call this API again. +Sets metered public and private key. + +If you purchase metered license, when start application, this API should be called, normally, this is enough. However, if always fail to upload consumption data and exceed 24 hours, the license will be set to evaluation status, to avoid such case, you should regularly check the license status, if it is evaluation status, call this API again. **Parameters:** | Parameter | Type | Description | @@ -65,23 +87,3 @@ Determines whether the specified Object, is equal to this instance. **Returns:** boolean - `true` if the specified Object is equal to this instance; otherwise, `false`. -### getConsumptionQuantity() {#getConsumptionQuantity--} -``` -public static BigDecimal getConsumptionQuantity() -``` - - -Gets consumption file size - -**Returns:** -java.math.BigDecimal - consumption file size -### getConsumptionCredit() {#getConsumptionCredit--} -``` -public static BigDecimal getConsumptionCredit() -``` - - -Gets consumption credit - -**Returns:** -java.math.BigDecimal - consumption quantity diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/pageexportingaction/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/pageexportingaction/_index.md index 55ce14ce24c2..a2a210923858 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/pageexportingaction/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/pageexportingaction/_index.md @@ -3,7 +3,7 @@ title: PageExportingAction second_title: Aspose.Imaging for Java API Reference description: Delegate for firing before page is exported type: docs -weight: 148 +weight: 149 url: /java/com.aspose.imaging/pageexportingaction/ ---``` public interface PageExportingAction diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/removebackgroundsettings/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/removebackgroundsettings/_index.md new file mode 100644 index 000000000000..adb1ac9e2cc2 --- /dev/null +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/removebackgroundsettings/_index.md @@ -0,0 +1,146 @@ +--- +title: RemoveBackgroundSettings +second_title: Aspose.Imaging for Java API Reference +description: The remove background settings +type: docs +weight: 97 +url: /java/com.aspose.imaging/removebackgroundsettings/ +--- +**Inheritance:** +java.lang.Object +``` +public class RemoveBackgroundSettings +``` + +The remove background settings +## Constructors + +| Constructor | Description | +| --- | --- | +| [RemoveBackgroundSettings()](#RemoveBackgroundSettings--) | | +## Methods + +| Method | Description | +| --- | --- | +| [getDetectionLevel()](#getDetectionLevel--) | Gets the detection level. | +| [setDetectionLevel(Integer value)](#setDetectionLevel-java.lang.Integer-) | Sets the detection level. | +| [getBounds()](#getBounds--) | Gets the bounds. | +| [setBounds(RectangleF value)](#setBounds-com.aspose.imaging.RectangleF-) | Sets the bounds. | +| [getColor1()](#getColor1--) | Gets the color. | +| [setColor1(Color value)](#setColor1-com.aspose.imaging.Color-) | Sets the color. | +| [getColor2()](#getColor2--) | Gets the color2. | +| [setColor2(Color value)](#setColor2-com.aspose.imaging.Color-) | Sets the color2. | +### RemoveBackgroundSettings() {#RemoveBackgroundSettings--} +``` +public RemoveBackgroundSettings() +``` + + +### getDetectionLevel() {#getDetectionLevel--} +``` +public final Integer getDetectionLevel() +``` + + +Gets the detection level. + +Value: The detection level. + +**Returns:** +java.lang.Integer - the detection level. +### setDetectionLevel(Integer value) {#setDetectionLevel-java.lang.Integer-} +``` +public final void setDetectionLevel(Integer value) +``` + + +Sets the detection level. + +Value: The detection level. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | java.lang.Integer | the detection level. | + +### getBounds() {#getBounds--} +``` +public final RectangleF getBounds() +``` + + +Gets the bounds. + +Value: The bounds. + +**Returns:** +[RectangleF](../../com.aspose.imaging/rectanglef) - the bounds. +### setBounds(RectangleF value) {#setBounds-com.aspose.imaging.RectangleF-} +``` +public final void setBounds(RectangleF value) +``` + + +Sets the bounds. + +Value: The bounds. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [RectangleF](../../com.aspose.imaging/rectanglef) | the bounds. | + +### getColor1() {#getColor1--} +``` +public final Color getColor1() +``` + + +Gets the color. + +Value: The color. + +**Returns:** +[Color](../../com.aspose.imaging/color) - the color. +### setColor1(Color value) {#setColor1-com.aspose.imaging.Color-} +``` +public final void setColor1(Color value) +``` + + +Sets the color. + +Value: The color. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [Color](../../com.aspose.imaging/color) | the color. | + +### getColor2() {#getColor2--} +``` +public final Color getColor2() +``` + + +Gets the color2. + +Value: The color2. + +**Returns:** +[Color](../../com.aspose.imaging/color) - the color2. +### setColor2(Color value) {#setColor2-com.aspose.imaging.Color-} +``` +public final void setColor2(Color value) +``` + + +Sets the color2. + +Value: The color2. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [Color](../../com.aspose.imaging/color) | the color2. | + diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/resizetype/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/resizetype/_index.md index d34ff82b7ea3..155cecf44418 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/resizetype/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/resizetype/_index.md @@ -3,7 +3,7 @@ title: ResizeType second_title: Aspose.Imaging for Java API Reference description: Specifies the resize type. type: docs -weight: 97 +weight: 98 url: /java/com.aspose.imaging/resizetype/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/resolutionsetting/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/resolutionsetting/_index.md index ea345e6ade8c..10b9a7be7c34 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/resolutionsetting/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/resolutionsetting/_index.md @@ -3,7 +3,7 @@ title: ResolutionSetting second_title: Aspose.Imaging for Java API Reference description: The resolution setting for image save options. type: docs -weight: 98 +weight: 99 url: /java/com.aspose.imaging/resolutionsetting/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/resolutionunit/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/resolutionunit/_index.md index 78445d7fb337..ae492c599a1f 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/resolutionunit/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/resolutionunit/_index.md @@ -3,7 +3,7 @@ title: ResolutionUnit second_title: Aspose.Imaging for Java API Reference description: Resolution unit enum. type: docs -weight: 99 +weight: 100 url: /java/com.aspose.imaging/resolutionunit/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/rotatefliptype/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/rotatefliptype/_index.md index 9f95d9e7f300..bce63acd65be 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/rotatefliptype/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/rotatefliptype/_index.md @@ -3,7 +3,7 @@ title: RotateFlipType second_title: Aspose.Imaging for Java API Reference description: Specifies how much an image is rotated and the axis used to flip the image. type: docs -weight: 100 +weight: 101 url: /java/com.aspose.imaging/rotatefliptype/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/seekorigin/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/seekorigin/_index.md index ae0d9873654d..9131f897f90b 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/seekorigin/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/seekorigin/_index.md @@ -3,7 +3,7 @@ title: SeekOrigin second_title: Aspose.Imaging for Java API Reference description: Provides the fields that represent reference points in StreamContainer for seeking. type: docs -weight: 101 +weight: 102 url: /java/com.aspose.imaging/seekorigin/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/shape/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/shape/_index.md index 9f0b843aec18..01cb4ebe8a74 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/shape/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/shape/_index.md @@ -3,7 +3,7 @@ title: Shape second_title: Aspose.Imaging for Java API Reference description: The shape. type: docs -weight: 102 +weight: 103 url: /java/com.aspose.imaging/shape/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/shapesegment/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/shapesegment/_index.md index 06dc4aebfc52..468b0f8ebcdd 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/shapesegment/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/shapesegment/_index.md @@ -3,7 +3,7 @@ title: ShapeSegment second_title: Aspose.Imaging for Java API Reference description: Represents a shape segment. type: docs -weight: 103 +weight: 104 url: /java/com.aspose.imaging/shapesegment/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/size/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/size/_index.md index caebbb413285..37f736dddefb 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/size/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/size/_index.md @@ -3,7 +3,7 @@ title: Size second_title: Aspose.Imaging for Java API Reference description: Represents size. type: docs -weight: 104 +weight: 105 url: /java/com.aspose.imaging/size/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/sizef/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/sizef/_index.md index 354afd79ef60..733f59c5e621 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/sizef/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/sizef/_index.md @@ -3,7 +3,7 @@ title: SizeF second_title: Aspose.Imaging for Java API Reference description: Stores an ordered pair of floating-point numbers typically the width and height of a rectangle. type: docs -weight: 105 +weight: 106 url: /java/com.aspose.imaging/sizef/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/smoothingmode/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/smoothingmode/_index.md index cf506f6f6f32..8d10a52f6afb 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/smoothingmode/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/smoothingmode/_index.md @@ -3,7 +3,7 @@ title: SmoothingMode second_title: Aspose.Imaging for Java API Reference description: Specifies whether smoothing antialiasing is applied to lines and curves and the edges of filled areas. type: docs -weight: 106 +weight: 107 url: /java/com.aspose.imaging/smoothingmode/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/source/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/source/_index.md index b1a516f88570..1b131684e5ab 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/source/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/source/_index.md @@ -3,7 +3,7 @@ title: Source second_title: Aspose.Imaging for Java API Reference description: The source is used to contain all relevant information for an object pipe. type: docs -weight: 107 +weight: 108 url: /java/com.aspose.imaging/source/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/splitstreamcontainer/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/splitstreamcontainer/_index.md index b390a6546110..bece8198b11f 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/splitstreamcontainer/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/splitstreamcontainer/_index.md @@ -3,7 +3,7 @@ title: SplitStreamContainer second_title: Aspose.Imaging for Java API Reference description: Represents split stream container which contains the stream and provides stream processing routines. type: docs -weight: 108 +weight: 109 url: /java/com.aspose.imaging/splitstreamcontainer/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/streamcontainer/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/streamcontainer/_index.md index 958f1b5d7605..d5c4be4db56d 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/streamcontainer/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/streamcontainer/_index.md @@ -3,7 +3,7 @@ title: StreamContainer second_title: Aspose.Imaging for Java API Reference description: Represents stream container which contains the stream and provides stream processing routines. type: docs -weight: 109 +weight: 110 url: /java/com.aspose.imaging/streamcontainer/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringalignment/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringalignment/_index.md index fbe5141e2db4..0ac4ddd13a8d 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringalignment/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringalignment/_index.md @@ -3,7 +3,7 @@ title: StringAlignment second_title: Aspose.Imaging for Java API Reference description: Specifies the alignment of a text string relative to its layout rectangle. type: docs -weight: 110 +weight: 111 url: /java/com.aspose.imaging/stringalignment/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringdigitsubstitute/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringdigitsubstitute/_index.md index 90aaa8c49d24..8245aba8572c 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringdigitsubstitute/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringdigitsubstitute/_index.md @@ -3,7 +3,7 @@ title: StringDigitSubstitute second_title: Aspose.Imaging for Java API Reference description: The enumeration specifies how to substitute digits in a string according to a users locale or language. type: docs -weight: 111 +weight: 112 url: /java/com.aspose.imaging/stringdigitsubstitute/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringformat/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringformat/_index.md index 01e21d8de7e2..4e2e2b078b57 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringformat/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringformat/_index.md @@ -3,7 +3,7 @@ title: StringFormat second_title: Aspose.Imaging for Java API Reference description: Encapsulates text layout information such as alignment orientation and tab stops display manipulations such as ellipsis insertion and national digit substitution and OpenType features. type: docs -weight: 112 +weight: 113 url: /java/com.aspose.imaging/stringformat/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringformatflags/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringformatflags/_index.md index 2fd0b631c1f6..ed6cda8c8902 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringformatflags/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringformatflags/_index.md @@ -3,7 +3,7 @@ title: StringFormatFlags second_title: Aspose.Imaging for Java API Reference description: Specifies the display and layout information for text strings. type: docs -weight: 113 +weight: 114 url: /java/com.aspose.imaging/stringformatflags/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringtrimming/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringtrimming/_index.md index 299be78746d4..29c8d4accfca 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringtrimming/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/stringtrimming/_index.md @@ -3,7 +3,7 @@ title: StringTrimming second_title: Aspose.Imaging for Java API Reference description: Specifies how to trim characters from a string that does not completely fit into a layout shape. type: docs -weight: 114 +weight: 115 url: /java/com.aspose.imaging/stringtrimming/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/textrenderinghint/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/textrenderinghint/_index.md index 1e9b3925ac1a..f9eeb1b2c28e 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/textrenderinghint/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/textrenderinghint/_index.md @@ -3,7 +3,7 @@ title: TextRenderingHint second_title: Aspose.Imaging for Java API Reference description: Specifies the quality of text rendering. type: docs -weight: 115 +weight: 116 url: /java/com.aspose.imaging/textrenderinghint/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/transparencysupporter/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/transparencysupporter/_index.md index f162e047b0e0..0c3a3716fdcb 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/transparencysupporter/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/transparencysupporter/_index.md @@ -3,7 +3,7 @@ title: TransparencySupporter second_title: Aspose.Imaging for Java API Reference description: The object supporting transparency. type: docs -weight: 116 +weight: 117 url: /java/com.aspose.imaging/transparencysupporter/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/vectorimage/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/vectorimage/_index.md index b3e77b1cd233..9bc6dceb6fad 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/vectorimage/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/vectorimage/_index.md @@ -3,7 +3,7 @@ title: VectorImage second_title: Aspose.Imaging for Java API Reference description: The vector image is the base class for all type of vector images. type: docs -weight: 117 +weight: 118 url: /java/com.aspose.imaging/vectorimage/ --- **Inheritance:** @@ -31,6 +31,8 @@ The vector image is the base class for all type of vector images. | [getWidth()](#getWidth--) | Gets the image width. | | [getHeight()](#getHeight--) | Gets the image height. | | [getEmbeddedImages()](#getEmbeddedImages--) | Gets the embedded images. | +| [removeBackground()](#removeBackground--) | Removes the background. | +| [removeBackground(RemoveBackgroundSettings settings)](#removeBackground-com.aspose.imaging.RemoveBackgroundSettings-) | Removes the background. | ## Example: The following example shows how to export a multipage vector image to another format in general way without referencing to a particular image type. @@ -154,3 +156,24 @@ try (Image image = com.aspose.imaging.Image.load(inputFileName)) } ``` +### removeBackground() {#removeBackground--} +``` +public final void removeBackground() +``` + + +Removes the background. + +### removeBackground(RemoveBackgroundSettings settings) {#removeBackground-com.aspose.imaging.RemoveBackgroundSettings-} +``` +public final void removeBackground(RemoveBackgroundSettings settings) +``` + + +Removes the background. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| settings | [RemoveBackgroundSettings](../../com.aspose.imaging/removebackgroundsettings) | The settings. | + diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/vectormultipageimage/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/vectormultipageimage/_index.md index 0925e6245cec..537bcef42d55 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/vectormultipageimage/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/vectormultipageimage/_index.md @@ -3,7 +3,7 @@ title: VectorMultipageImage second_title: Aspose.Imaging for Java API Reference description: The Vector multipage image type: docs -weight: 118 +weight: 119 url: /java/com.aspose.imaging/vectormultipageimage/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/warpmode/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/warpmode/_index.md index 02fdd59396a7..c43508e317ec 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/warpmode/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/warpmode/_index.md @@ -3,7 +3,7 @@ title: WarpMode second_title: Aspose.Imaging for Java API Reference description: Specifies the type of warp transformation applied. type: docs -weight: 119 +weight: 120 url: /java/com.aspose.imaging/warpmode/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/java/com.aspose.imaging/wrapmode/_index.md b/content/sites/aspose/imaging/english/java/com.aspose.imaging/wrapmode/_index.md index 0a6145ad1fe9..a15c62045869 100644 --- a/content/sites/aspose/imaging/english/java/com.aspose.imaging/wrapmode/_index.md +++ b/content/sites/aspose/imaging/english/java/com.aspose.imaging/wrapmode/_index.md @@ -3,7 +3,7 @@ title: WrapMode second_title: Aspose.Imaging for Java API Reference description: Specifies how a texture or gradient is tiled when it is smaller than the area being filled. type: docs -weight: 120 +weight: 121 url: /java/com.aspose.imaging/wrapmode/ --- **Inheritance:** diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cdr.objects/cdrtransforms/transforms/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cdr.objects/cdrtransforms/transforms/_index.md index 1de85a261d8e..e9c102bfc275 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cdr.objects/cdrtransforms/transforms/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cdr.objects/cdrtransforms/transforms/_index.md @@ -11,7 +11,7 @@ url: /net/aspose.imaging.fileformats.cdr.objects/cdrtransforms/transforms/ Gets or sets the transforms. ```csharp -public List<#=zj2qPjOlOEhQ3SXK9v$7dVpQ=> Transforms { get; set; } +public List<#=z07Zo5gRq9oz8GMjJEpVxad0=> Transforms { get; set; } ``` ### Property Value diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cdr/cdrimage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cdr/cdrimage/_index.md index 759c43dc93cb..6c088a715115 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cdr/cdrimage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cdr/cdrimage/_index.md @@ -59,6 +59,8 @@ public class CdrImage : VectorMultipageImage, ICdrImage | override [GetDefaultOptions](../../aspose.imaging.fileformats.cdr/cdrimage/getdefaultoptions)(object[]) | Gets the default options. | | override [GetEmbeddedImages](../../aspose.imaging/vectormultipageimage/getembeddedimages)() | Gets the embedded images. | | virtual [GetOriginalOptions](../../aspose.imaging/image/getoriginaloptions)() | Gets the options based on the original file settings. This can be helpful to keep bit-depth and other parameters of the original image unchanged. For example, if we load a black-white PNG image with 1 bit per pixel and then save it using the [`Save`](../../aspose.imaging/datastreamsupporter/save) method, the output PNG image with 8-bit per pixel will be produced. To avoid it and save PNG image with 1-bit per pixel, use this method to get corresponding saving options and pass them to the [`Save`](../../aspose.imaging/image/save) method as the second parameter. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)() | Removes the background. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)(RemoveBackgroundSettings) | Removes the background. | | [Resize](../../aspose.imaging/image/resize)(int, int) | Resizes the image. The default NearestNeighbourResample is used. | | override [Resize](../../aspose.imaging.fileformats.cdr/cdrimage/resize)(int, int, ImageResizeSettings) | Resizes the image. | | override [Resize](../../aspose.imaging.fileformats.cdr/cdrimage/resize)(int, int, ResizeType) | Resizes the image. | diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cdr/cdrimagepage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cdr/cdrimagepage/_index.md index 8349b82e99b9..19e8eb2fa01c 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cdr/cdrimagepage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cdr/cdrimagepage/_index.md @@ -52,6 +52,8 @@ public class CdrImagePage : VectorImage, ICdrImage | override [GetDefaultOptions](../../aspose.imaging.fileformats.cdr/cdrimagepage/getdefaultoptions)(object[]) | Gets the default options. | | virtual [GetEmbeddedImages](../../aspose.imaging/vectorimage/getembeddedimages)() | Gets the embedded images. | | virtual [GetOriginalOptions](../../aspose.imaging/image/getoriginaloptions)() | Gets the options based on the original file settings. This can be helpful to keep bit-depth and other parameters of the original image unchanged. For example, if we load a black-white PNG image with 1 bit per pixel and then save it using the [`Save`](../../aspose.imaging/datastreamsupporter/save) method, the output PNG image with 8-bit per pixel will be produced. To avoid it and save PNG image with 1-bit per pixel, use this method to get corresponding saving options and pass them to the [`Save`](../../aspose.imaging/image/save) method as the second parameter. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)() | Removes the background. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)(RemoveBackgroundSettings) | Removes the background. | | [Resize](../../aspose.imaging/image/resize)(int, int) | Resizes the image. The default NearestNeighbourResample is used. | | override [Resize](../../aspose.imaging.fileformats.cdr/cdrimagepage/resize)(int, int, ImageResizeSettings) | Resizes the image. | | override [Resize](../../aspose.imaging.fileformats.cdr/cdrimagepage/resize)(int, int, ResizeType) | Resizes the image. | diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cmx/cmximage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cmx/cmximage/_index.md index bde4ea0bc253..95d988234a15 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cmx/cmximage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cmx/cmximage/_index.md @@ -60,6 +60,8 @@ public class CmxImage : VectorMultipageImage, ICmxImage | override [GetDefaultOptions](../../aspose.imaging.fileformats.cmx/cmximage/getdefaultoptions)(object[]) | Gets the default options. | | override [GetEmbeddedImages](../../aspose.imaging/vectormultipageimage/getembeddedimages)() | Gets the embedded images. | | virtual [GetOriginalOptions](../../aspose.imaging/image/getoriginaloptions)() | Gets the options based on the original file settings. This can be helpful to keep bit-depth and other parameters of the original image unchanged. For example, if we load a black-white PNG image with 1 bit per pixel and then save it using the [`Save`](../../aspose.imaging/datastreamsupporter/save) method, the output PNG image with 8-bit per pixel will be produced. To avoid it and save PNG image with 1-bit per pixel, use this method to get corresponding saving options and pass them to the [`Save`](../../aspose.imaging/image/save) method as the second parameter. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)() | Removes the background. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)(RemoveBackgroundSettings) | Removes the background. | | [Resize](../../aspose.imaging/image/resize)(int, int) | Resizes the image. The default NearestNeighbourResample is used. | | override [Resize](../../aspose.imaging.fileformats.cmx/cmximage/resize)(int, int, ImageResizeSettings) | Resizes the image. | | override [Resize](../../aspose.imaging.fileformats.cmx/cmximage/resize)(int, int, ResizeType) | Resizes the image. | diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cmx/cmximagepage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cmx/cmximagepage/_index.md index bdf7e03748f2..76ada98c4d67 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cmx/cmximagepage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.cmx/cmximagepage/_index.md @@ -56,6 +56,8 @@ public class CmxImagePage : VectorImage, ICmxImage | override [GetDefaultOptions](../../aspose.imaging.fileformats.cmx/cmximagepage/getdefaultoptions)(object[]) | Gets the default options. | | virtual [GetEmbeddedImages](../../aspose.imaging/vectorimage/getembeddedimages)() | Gets the embedded images. | | virtual [GetOriginalOptions](../../aspose.imaging/image/getoriginaloptions)() | Gets the options based on the original file settings. This can be helpful to keep bit-depth and other parameters of the original image unchanged. For example, if we load a black-white PNG image with 1 bit per pixel and then save it using the [`Save`](../../aspose.imaging/datastreamsupporter/save) method, the output PNG image with 8-bit per pixel will be produced. To avoid it and save PNG image with 1-bit per pixel, use this method to get corresponding saving options and pass them to the [`Save`](../../aspose.imaging/image/save) method as the second parameter. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)() | Removes the background. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)(RemoveBackgroundSettings) | Removes the background. | | [Resize](../../aspose.imaging/image/resize)(int, int) | Resizes the image. The default NearestNeighbourResample is used. | | override [Resize](../../aspose.imaging.fileformats.cmx/cmximagepage/resize)(int, int, ImageResizeSettings) | Resizes the image. | | override [Resize](../../aspose.imaging.fileformats.cmx/cmximagepage/resize)(int, int, ResizeType) | Resizes the image. | diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.emf/emfimage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.emf/emfimage/_index.md index ca892f33961d..f26a45911e86 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.emf/emfimage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.emf/emfimage/_index.md @@ -62,6 +62,8 @@ public sealed class EmfImage : MetaImage | [GetMissedFonts](../../aspose.imaging.fileformats.emf/metaimage/getmissedfonts)() | Returns the list of fonts which used inside metafile but not found. | | virtual [GetOriginalOptions](../../aspose.imaging/image/getoriginaloptions)() | Gets the options based on the original file settings. This can be helpful to keep bit-depth and other parameters of the original image unchanged. For example, if we load a black-white PNG image with 1 bit per pixel and then save it using the [`Save`](../../aspose.imaging/datastreamsupporter/save) method, the output PNG image with 8-bit per pixel will be produced. To avoid it and save PNG image with 1-bit per pixel, use this method to get corresponding saving options and pass them to the [`Save`](../../aspose.imaging/image/save) method as the second parameter. | | override [GetUsedFonts](../../aspose.imaging.fileformats.emf/emfimage/getusedfonts)() | Returns the list of font which used inside metafile. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)() | Removes the background. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)(RemoveBackgroundSettings) | Removes the background. | | [Resize](../../aspose.imaging/image/resize)(int, int) | Resizes the image. The default NearestNeighbourResample is used. | | override [Resize](../../aspose.imaging.fileformats.emf/emfimage/resize)(int, int, ImageResizeSettings) | Resizes the image. | | override [Resize](../../aspose.imaging.fileformats.emf/emfimage/resize)(int, int, ResizeType) | Resizes the image. | diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.emf/metaimage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.emf/metaimage/_index.md index df0e712d3811..513216370ce2 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.emf/metaimage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.emf/metaimage/_index.md @@ -60,6 +60,8 @@ public abstract class MetaImage : VectorImage | [GetMissedFonts](../../aspose.imaging.fileformats.emf/metaimage/getmissedfonts)() | Returns the list of fonts which used inside metafile but not found. | | virtual [GetOriginalOptions](../../aspose.imaging/image/getoriginaloptions)() | Gets the options based on the original file settings. This can be helpful to keep bit-depth and other parameters of the original image unchanged. For example, if we load a black-white PNG image with 1 bit per pixel and then save it using the [`Save`](../../aspose.imaging/datastreamsupporter/save) method, the output PNG image with 8-bit per pixel will be produced. To avoid it and save PNG image with 1-bit per pixel, use this method to get corresponding saving options and pass them to the [`Save`](../../aspose.imaging/image/save) method as the second parameter. | | abstract [GetUsedFonts](../../aspose.imaging.fileformats.emf/metaimage/getusedfonts)() | Returns the list of font which used inside metafile. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)() | Removes the background. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)(RemoveBackgroundSettings) | Removes the background. | | [Resize](../../aspose.imaging/image/resize)(int, int) | Resizes the image. The default NearestNeighbourResample is used. | | abstract [Resize](../../aspose.imaging/image/resize)(int, int, ImageResizeSettings) | Resizes the image. | | abstract [Resize](../../aspose.imaging/image/resize)(int, int, ResizeType) | Resizes the image. | diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.eps/epsimage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.eps/epsimage/_index.md index 0aa06018cf69..be6726906ade 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.eps/epsimage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.eps/epsimage/_index.md @@ -61,6 +61,8 @@ public sealed class EpsImage : VectorImage | virtual [GetOriginalOptions](../../aspose.imaging/image/getoriginaloptions)() | Gets the options based on the original file settings. This can be helpful to keep bit-depth and other parameters of the original image unchanged. For example, if we load a black-white PNG image with 1 bit per pixel and then save it using the [`Save`](../../aspose.imaging/datastreamsupporter/save) method, the output PNG image with 8-bit per pixel will be produced. To avoid it and save PNG image with 1-bit per pixel, use this method to get corresponding saving options and pass them to the [`Save`](../../aspose.imaging/image/save) method as the second parameter. | | [GetPreviewImage](../../aspose.imaging.fileformats.eps/epsimage/getpreviewimage)(EpsPreviewFormat) | Gets the exisiting preview image of specified *format* or returns `null`. | | [GetPreviewImages](../../aspose.imaging.fileformats.eps/epsimage/getpreviewimages)() | Gets the preview images. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)() | Removes the background. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)(RemoveBackgroundSettings) | Removes the background. | | [Resize](../../aspose.imaging/image/resize)(int, int) | Resizes the image. The default NearestNeighbourResample is used. | | override [Resize](../../aspose.imaging.fileformats.eps/epsimage/resize)(int, int, ImageResizeSettings) | Resizes the image. | | override [Resize](../../aspose.imaging.fileformats.eps/epsimage/resize)(int, int, ResizeType) | Resizes the image. | diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.opendocument/odgimage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.opendocument/odgimage/_index.md index 4f7781db0031..a98ebac4b5c9 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.opendocument/odgimage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.opendocument/odgimage/_index.md @@ -61,6 +61,8 @@ public class OdgImage : OdImage | override [GetDefaultOptions](../../aspose.imaging.fileformats.opendocument/odgimage/getdefaultoptions)(object[]) | Gets the default options. | | override [GetEmbeddedImages](../../aspose.imaging/vectormultipageimage/getembeddedimages)() | Gets the embedded images. | | virtual [GetOriginalOptions](../../aspose.imaging/image/getoriginaloptions)() | Gets the options based on the original file settings. This can be helpful to keep bit-depth and other parameters of the original image unchanged. For example, if we load a black-white PNG image with 1 bit per pixel and then save it using the [`Save`](../../aspose.imaging/datastreamsupporter/save) method, the output PNG image with 8-bit per pixel will be produced. To avoid it and save PNG image with 1-bit per pixel, use this method to get corresponding saving options and pass them to the [`Save`](../../aspose.imaging/image/save) method as the second parameter. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)() | Removes the background. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)(RemoveBackgroundSettings) | Removes the background. | | [Resize](../../aspose.imaging/image/resize)(int, int) | Resizes the image. The default NearestNeighbourResample is used. | | override [Resize](../../aspose.imaging.fileformats.opendocument/odgimage/resize)(int, int, ImageResizeSettings) | Resizes the image. | | override [Resize](../../aspose.imaging.fileformats.opendocument/odgimage/resize)(int, int, ResizeType) | Resizes the image. | diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.opendocument/odimage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.opendocument/odimage/_index.md index cd92c747c30a..4ff5583ac145 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.opendocument/odimage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.opendocument/odimage/_index.md @@ -61,6 +61,8 @@ public abstract class OdImage : VectorMultipageImage | virtual [GetDefaultOptions](../../aspose.imaging/image/getdefaultoptions)(object[]) | Gets the default options. | | override [GetEmbeddedImages](../../aspose.imaging/vectormultipageimage/getembeddedimages)() | Gets the embedded images. | | virtual [GetOriginalOptions](../../aspose.imaging/image/getoriginaloptions)() | Gets the options based on the original file settings. This can be helpful to keep bit-depth and other parameters of the original image unchanged. For example, if we load a black-white PNG image with 1 bit per pixel and then save it using the [`Save`](../../aspose.imaging/datastreamsupporter/save) method, the output PNG image with 8-bit per pixel will be produced. To avoid it and save PNG image with 1-bit per pixel, use this method to get corresponding saving options and pass them to the [`Save`](../../aspose.imaging/image/save) method as the second parameter. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)() | Removes the background. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)(RemoveBackgroundSettings) | Removes the background. | | [Resize](../../aspose.imaging/image/resize)(int, int) | Resizes the image. The default NearestNeighbourResample is used. | | override [Resize](../../aspose.imaging.fileformats.opendocument/odimage/resize)(int, int, ImageResizeSettings) | Resizes the image. | | override [Resize](../../aspose.imaging.fileformats.opendocument/odimage/resize)(int, int, ResizeType) | Resizes the image. | diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.opendocument/otgimage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.opendocument/otgimage/_index.md index 114f79352f1b..716afb58415d 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.opendocument/otgimage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.opendocument/otgimage/_index.md @@ -61,6 +61,8 @@ public class OtgImage : OdImage | override [GetDefaultOptions](../../aspose.imaging.fileformats.opendocument/otgimage/getdefaultoptions)(object[]) | Gets the default options. | | override [GetEmbeddedImages](../../aspose.imaging/vectormultipageimage/getembeddedimages)() | Gets the embedded images. | | virtual [GetOriginalOptions](../../aspose.imaging/image/getoriginaloptions)() | Gets the options based on the original file settings. This can be helpful to keep bit-depth and other parameters of the original image unchanged. For example, if we load a black-white PNG image with 1 bit per pixel and then save it using the [`Save`](../../aspose.imaging/datastreamsupporter/save) method, the output PNG image with 8-bit per pixel will be produced. To avoid it and save PNG image with 1-bit per pixel, use this method to get corresponding saving options and pass them to the [`Save`](../../aspose.imaging/image/save) method as the second parameter. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)() | Removes the background. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)(RemoveBackgroundSettings) | Removes the background. | | [Resize](../../aspose.imaging/image/resize)(int, int) | Resizes the image. The default NearestNeighbourResample is used. | | override [Resize](../../aspose.imaging.fileformats.opendocument/odimage/resize)(int, int, ImageResizeSettings) | Resizes the image. | | override [Resize](../../aspose.imaging.fileformats.opendocument/odimage/resize)(int, int, ResizeType) | Resizes the image. | diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.svg/svgimage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.svg/svgimage/_index.md index 8b2bee8f099b..96b2e6837cde 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.svg/svgimage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.svg/svgimage/_index.md @@ -58,6 +58,8 @@ public sealed class SvgImage : VectorImage | override [GetDefaultOptions](../../aspose.imaging.fileformats.svg/svgimage/getdefaultoptions)(object[]) | Gets the default options. | | virtual [GetEmbeddedImages](../../aspose.imaging/vectorimage/getembeddedimages)() | Gets the embedded images. | | virtual [GetOriginalOptions](../../aspose.imaging/image/getoriginaloptions)() | Gets the options based on the original file settings. This can be helpful to keep bit-depth and other parameters of the original image unchanged. For example, if we load a black-white PNG image with 1 bit per pixel and then save it using the [`Save`](../../aspose.imaging/datastreamsupporter/save) method, the output PNG image with 8-bit per pixel will be produced. To avoid it and save PNG image with 1-bit per pixel, use this method to get corresponding saving options and pass them to the [`Save`](../../aspose.imaging/image/save) method as the second parameter. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)() | Removes the background. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)(RemoveBackgroundSettings) | Removes the background. | | [Resize](../../aspose.imaging/image/resize)(int, int) | Resizes the image. The default NearestNeighbourResample is used. | | override [Resize](../../aspose.imaging.fileformats.svg/svgimage/resize)(int, int, ImageResizeSettings) | Resizes the image. | | override [Resize](../../aspose.imaging.fileformats.svg/svgimage/resize)(int, int, ResizeType) | Resizes the image. | diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/_index.md index 817788a4e5b4..143a809631b9 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/_index.md @@ -11,7 +11,7 @@ url: /net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/ The tiff stream for handling little endian tiff file format. ```csharp -public class TiffStreamReader : #=zqWkIG42Q2hkg3$pvATdWFgb2XbwOIlMDBi3hoOYUHpN4JF18j5RVjGQ= +public class TiffStreamReader : #=z_8CVEQPdz5nfEL3zFec_GKvLqiLv4vpXmQwz9SP8czySDns7tOU4t8k= ``` ## Constructors diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamwriter/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamwriter/_index.md index 39743ff7dfe9..9c0260ce25d8 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamwriter/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamwriter/_index.md @@ -11,7 +11,7 @@ url: /net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamwriter/ The Tiff stream writer. ```csharp -public class TiffStreamWriter : #=zqWkIG42Q2hkg3$pvATdWFgb2XbwOIlMDBi3hoOYUHpN4JF18j5RVjGQ= +public class TiffStreamWriter : #=z_8CVEQPdz5nfEL3zFec_GKvLqiLv4vpXmQwz9SP8czySDns7tOU4t8k= ``` ## Constructors diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.wmf/wmfimage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.wmf/wmfimage/_index.md index 40d16401973e..4c492d131aca 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.wmf/wmfimage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.fileformats.wmf/wmfimage/_index.md @@ -65,6 +65,8 @@ public class WmfImage : MetaImage | virtual [GetOriginalOptions](../../aspose.imaging/image/getoriginaloptions)() | Gets the options based on the original file settings. This can be helpful to keep bit-depth and other parameters of the original image unchanged. For example, if we load a black-white PNG image with 1 bit per pixel and then save it using the [`Save`](../../aspose.imaging/datastreamsupporter/save) method, the output PNG image with 8-bit per pixel will be produced. To avoid it and save PNG image with 1-bit per pixel, use this method to get corresponding saving options and pass them to the [`Save`](../../aspose.imaging/image/save) method as the second parameter. | | [GetPostScript](../../aspose.imaging.fileformats.wmf/wmfimage/getpostscript)() | Gets the post script. | | override [GetUsedFonts](../../aspose.imaging.fileformats.wmf/wmfimage/getusedfonts)() | Returns the list of font which used inside metafile. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)() | Removes the background. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)(RemoveBackgroundSettings) | Removes the background. | | [Resize](../../aspose.imaging/image/resize)(int, int) | Resizes the image. The default NearestNeighbourResample is used. | | override [Resize](../../aspose.imaging.fileformats.wmf/wmfimage/resize)(int, int, ImageResizeSettings) | Resizes the image. | | override [Resize](../../aspose.imaging.fileformats.wmf/wmfimage/resize)(int, int, ResizeType) | Resizes the image. | diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/apngoptions/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/apngoptions/_index.md index 10a910a33392..b28961ce1b2b 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/apngoptions/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/apngoptions/_index.md @@ -18,16 +18,16 @@ public class ApngOptions : PngOptions | Name | Description | | --- | --- | -| [ApngOptions](apngoptions)() | The default constructor. | +| [ApngOptions](apngoptions)() | Initializes a new instance of the [`ApngOptions`](../apngoptions) class. | ## Properties | Name | Description | | --- | --- | -| [BitDepth](../../aspose.imaging.imageoptions/pngoptions/bitdepth) { get; set; } | The bit depth. | +| [BitDepth](../../aspose.imaging.imageoptions/pngoptions/bitdepth) { get; set; } | Gets or sets the bit depth values in range of 1, 2, 4, 8, 16. | | [BufferSizeHint](../../aspose.imaging/imageoptionsbase/buffersizehint) { get; set; } | Gets or sets the buffer size hint which is defined max allowed size for all internal buffers. | | [ColorType](../../aspose.imaging.imageoptions/pngoptions/colortype) { get; set; } | Gets or sets the type of the color. | -| [CompressionLevel](../../aspose.imaging.imageoptions/pngoptions/compressionlevel) { get; set; } | The png image compression level in the 0-9 range, where 9 is maximum compression and 0 is store mode. | +| [CompressionLevel](../../aspose.imaging.imageoptions/pngoptions/compressionlevel) { get; set; } | Gets or sets the [`PngImage`](../../aspose.imaging.fileformats.png/pngimage) compression level in the range of 0-9. The higher the value - the more efficient the compression. | | [DefaultFrameTime](../../aspose.imaging.imageoptions/apngoptions/defaultframetime) { get; set; } | Gets or sets the default frame duration. | | [Disposed](../../aspose.imaging/disposableobject/disposed) { get; } | Gets a value indicating whether this instance is disposed. | | [FilterType](../../aspose.imaging.imageoptions/pngoptions/filtertype) { get; set; } | Gets or sets the filter type used during png file save process. | @@ -36,7 +36,7 @@ public class ApngOptions : PngOptions | [NumPlays](../../aspose.imaging.imageoptions/apngoptions/numplays) { get; set; } | Gets or sets the number of times to loop animation. 0 indicates infinite looping. | | virtual [Palette](../../aspose.imaging/imageoptionsbase/palette) { get; set; } | Gets or sets the color palette. | | [ProgressEventHandler](../../aspose.imaging/imageoptionsbase/progresseventhandler) { get; set; } | Gets or sets the progress event handler. | -| [Progressive](../../aspose.imaging.imageoptions/pngoptions/progressive) { get; set; } | Gets or sets a value indicating whether this [`PngOptions`](../pngoptions) is progressive. | +| [Progressive](../../aspose.imaging.imageoptions/pngoptions/progressive) { get; set; } | Gets or sets a value indicating whether a [`PngImage`](../../aspose.imaging.fileformats.png/pngimage) is progressive. | | virtual [ResolutionSettings](../../aspose.imaging/imageoptionsbase/resolutionsettings) { get; set; } | Gets or sets the resolution settings. | | [Source](../../aspose.imaging/imageoptionsbase/source) { get; set; } | Gets or sets the source to create image in. | | [VectorRasterizationOptions](../../aspose.imaging/imageoptionsbase/vectorrasterizationoptions) { get; set; } | Gets or sets the vector rasterization options. | diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/apngoptions/apngoptions/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/apngoptions/apngoptions/_index.md index d4dc90e91677..2e30aae20c18 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/apngoptions/apngoptions/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/apngoptions/apngoptions/_index.md @@ -8,7 +8,7 @@ url: /net/aspose.imaging.imageoptions/apngoptions/apngoptions/ --- ## ApngOptions constructor -The default constructor. +Initializes a new instance of the [`ApngOptions`](../../apngoptions) class. ```csharp public ApngOptions() diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/pngoptions/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/pngoptions/_index.md index 9b0839a17a6c..8e69655c6761 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/pngoptions/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/pngoptions/_index.md @@ -25,17 +25,17 @@ public class PngOptions : ImageOptionsBase | Name | Description | | --- | --- | -| [BitDepth](../../aspose.imaging.imageoptions/pngoptions/bitdepth) { get; set; } | The bit depth. | +| [BitDepth](../../aspose.imaging.imageoptions/pngoptions/bitdepth) { get; set; } | Gets or sets the bit depth values in range of 1, 2, 4, 8, 16. | | [BufferSizeHint](../../aspose.imaging/imageoptionsbase/buffersizehint) { get; set; } | Gets or sets the buffer size hint which is defined max allowed size for all internal buffers. | | [ColorType](../../aspose.imaging.imageoptions/pngoptions/colortype) { get; set; } | Gets or sets the type of the color. | -| [CompressionLevel](../../aspose.imaging.imageoptions/pngoptions/compressionlevel) { get; set; } | The png image compression level in the 0-9 range, where 9 is maximum compression and 0 is store mode. | +| [CompressionLevel](../../aspose.imaging.imageoptions/pngoptions/compressionlevel) { get; set; } | Gets or sets the [`PngImage`](../../aspose.imaging.fileformats.png/pngimage) compression level in the range of 0-9. The higher the value - the more efficient the compression. | | [Disposed](../../aspose.imaging/disposableobject/disposed) { get; } | Gets a value indicating whether this instance is disposed. | | [FilterType](../../aspose.imaging.imageoptions/pngoptions/filtertype) { get; set; } | Gets or sets the filter type used during png file save process. | | [FullFrame](../../aspose.imaging/imageoptionsbase/fullframe) { get; set; } | Gets or sets a value indicating whether [full frame]. | | [MultiPageOptions](../../aspose.imaging/imageoptionsbase/multipageoptions) { get; set; } | The multipage options | | virtual [Palette](../../aspose.imaging/imageoptionsbase/palette) { get; set; } | Gets or sets the color palette. | | [ProgressEventHandler](../../aspose.imaging/imageoptionsbase/progresseventhandler) { get; set; } | Gets or sets the progress event handler. | -| [Progressive](../../aspose.imaging.imageoptions/pngoptions/progressive) { get; set; } | Gets or sets a value indicating whether this [`PngOptions`](../pngoptions) is progressive. | +| [Progressive](../../aspose.imaging.imageoptions/pngoptions/progressive) { get; set; } | Gets or sets a value indicating whether a [`PngImage`](../../aspose.imaging.fileformats.png/pngimage) is progressive. | | virtual [ResolutionSettings](../../aspose.imaging/imageoptionsbase/resolutionsettings) { get; set; } | Gets or sets the resolution settings. | | [Source](../../aspose.imaging/imageoptionsbase/source) { get; set; } | Gets or sets the source to create image in. | | [VectorRasterizationOptions](../../aspose.imaging/imageoptionsbase/vectorrasterizationoptions) { get; set; } | Gets or sets the vector rasterization options. | diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/pngoptions/bitdepth/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/pngoptions/bitdepth/_index.md index b5af17a02d22..a7d34b8137e0 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/pngoptions/bitdepth/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/pngoptions/bitdepth/_index.md @@ -8,7 +8,15 @@ url: /net/aspose.imaging.imageoptions/pngoptions/bitdepth/ --- ## PngOptions.BitDepth property -The bit depth. +Gets or sets the bit depth values in range of 1, 2, 4, 8, 16. + +Mind the next limits: + +Grayscale, IndexedColor support bit depth of 1, 2, 4, 8. + +GrayscaleWithAlpha supports bit depth of 8. + +Truecolor, TruecolorWithAlpha support bit depth of 8, 16. ```csharp public byte BitDepth { get; set; } diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/pngoptions/compressionlevel/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/pngoptions/compressionlevel/_index.md index 3807a4f81b87..964b57d33a98 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/pngoptions/compressionlevel/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/pngoptions/compressionlevel/_index.md @@ -8,7 +8,7 @@ url: /net/aspose.imaging.imageoptions/pngoptions/compressionlevel/ --- ## PngOptions.CompressionLevel property -The png image compression level in the 0-9 range, where 9 is maximum compression and 0 is store mode. +Gets or sets the [`PngImage`](../../../aspose.imaging.fileformats.png/pngimage) compression level in the range of 0-9. The higher the value - the more efficient the compression. ```csharp public int CompressionLevel { get; set; } diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/pngoptions/progressive/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/pngoptions/progressive/_index.md index 02a09b6581e2..d02096dbdcbd 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/pngoptions/progressive/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.imageoptions/pngoptions/progressive/_index.md @@ -8,7 +8,7 @@ url: /net/aspose.imaging.imageoptions/pngoptions/progressive/ --- ## PngOptions.Progressive property -Gets or sets a value indicating whether this [`PngOptions`](../../pngoptions) is progressive. +Gets or sets a value indicating whether a [`PngImage`](../../../aspose.imaging.fileformats.png/pngimage) is progressive. ```csharp public bool Progressive { get; set; } diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/arcshape/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/arcshape/_index.md index 67909944ac38..7cdce81c26bf 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/arcshape/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/arcshape/_index.md @@ -3,7 +3,7 @@ title: ArcShape second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11220 +weight: 11230 url: /net/aspose.imaging.shapes/arcshape/ --- ## ArcShape class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/beziershape/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/beziershape/_index.md index f9e95c4d8052..aaa62c780dcd 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/beziershape/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/beziershape/_index.md @@ -3,7 +3,7 @@ title: BezierShape second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11230 +weight: 11240 url: /net/aspose.imaging.shapes/beziershape/ --- ## BezierShape class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/curveshape/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/curveshape/_index.md index 7e216b326486..89ee65cc7b1a 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/curveshape/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/curveshape/_index.md @@ -3,7 +3,7 @@ title: CurveShape second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11240 +weight: 11250 url: /net/aspose.imaging.shapes/curveshape/ --- ## CurveShape class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/ellipseshape/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/ellipseshape/_index.md index af346504aa0a..6d301e3b4ba7 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/ellipseshape/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/ellipseshape/_index.md @@ -3,7 +3,7 @@ title: EllipseShape second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11250 +weight: 11260 url: /net/aspose.imaging.shapes/ellipseshape/ --- ## EllipseShape class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/pieshape/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/pieshape/_index.md index 958f3552ba4c..1c3fdcb69f0d 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/pieshape/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/pieshape/_index.md @@ -3,7 +3,7 @@ title: PieShape second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11260 +weight: 11270 url: /net/aspose.imaging.shapes/pieshape/ --- ## PieShape class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/polygonshape/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/polygonshape/_index.md index 489c8f627065..3f2d0f8d5233 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/polygonshape/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/polygonshape/_index.md @@ -3,7 +3,7 @@ title: PolygonShape second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11270 +weight: 11280 url: /net/aspose.imaging.shapes/polygonshape/ --- ## PolygonShape class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/rectangleprojectedshape/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/rectangleprojectedshape/_index.md index c223af70fb13..71869e97f588 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/rectangleprojectedshape/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/rectangleprojectedshape/_index.md @@ -3,7 +3,7 @@ title: RectangleProjectedShape second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11280 +weight: 11290 url: /net/aspose.imaging.shapes/rectangleprojectedshape/ --- ## RectangleProjectedShape class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/rectangleshape/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/rectangleshape/_index.md index 25cce25b9ff2..a56fd6336863 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/rectangleshape/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/rectangleshape/_index.md @@ -3,7 +3,7 @@ title: RectangleShape second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11290 +weight: 11300 url: /net/aspose.imaging.shapes/rectangleshape/ --- ## RectangleShape class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/textshape/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/textshape/_index.md index 60d0783a76c7..97b47310d16a 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/textshape/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.shapes/textshape/_index.md @@ -3,7 +3,7 @@ title: TextShape second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11300 +weight: 11310 url: /net/aspose.imaging.shapes/textshape/ --- ## TextShape class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.shapesegments/beziersegment/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.shapesegments/beziersegment/_index.md index ba6c4ed6bf82..3b5f6754bcae 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.shapesegments/beziersegment/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.shapesegments/beziersegment/_index.md @@ -3,7 +3,7 @@ title: BezierSegment second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11200 +weight: 11210 url: /net/aspose.imaging.shapesegments/beziersegment/ --- ## BezierSegment class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.shapesegments/linesegment/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.shapesegments/linesegment/_index.md index 12dbe1b089f4..f2d816860b38 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.shapesegments/linesegment/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.shapesegments/linesegment/_index.md @@ -3,7 +3,7 @@ title: LineSegment second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11210 +weight: 11220 url: /net/aspose.imaging.shapesegments/linesegment/ --- ## LineSegment class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.sources/filecreatesource/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.sources/filecreatesource/_index.md index ae867606cbf5..1c0ad559cbe0 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.sources/filecreatesource/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.sources/filecreatesource/_index.md @@ -3,7 +3,7 @@ title: FileCreateSource second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11350 +weight: 11360 url: /net/aspose.imaging.sources/filecreatesource/ --- ## FileCreateSource class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.sources/fileopensource/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.sources/fileopensource/_index.md index 938dd3d5725c..42c544a21c1c 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.sources/fileopensource/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.sources/fileopensource/_index.md @@ -3,7 +3,7 @@ title: FileOpenSource second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11360 +weight: 11370 url: /net/aspose.imaging.sources/fileopensource/ --- ## FileOpenSource class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.sources/filesource/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.sources/filesource/_index.md index 65b3608f41f6..230601b3a3c9 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.sources/filesource/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.sources/filesource/_index.md @@ -3,7 +3,7 @@ title: FileSource second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11370 +weight: 11380 url: /net/aspose.imaging.sources/filesource/ --- ## FileSource class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.sources/streamsource/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.sources/streamsource/_index.md index cef3565a1f16..a0ac72bbbfcf 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.sources/streamsource/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.sources/streamsource/_index.md @@ -3,7 +3,7 @@ title: StreamSource second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11380 +weight: 11390 url: /net/aspose.imaging.sources/streamsource/ --- ## StreamSource class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.watermark.options/contentawarefillwatermarkoptions/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.watermark.options/contentawarefillwatermarkoptions/_index.md index bcdc113711e7..477e3c88abd4 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.watermark.options/contentawarefillwatermarkoptions/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.watermark.options/contentawarefillwatermarkoptions/_index.md @@ -3,7 +3,7 @@ title: ContentAwareFillWatermarkOptions second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11510 +weight: 11520 url: /net/aspose.imaging.watermark.options/contentawarefillwatermarkoptions/ --- ## ContentAwareFillWatermarkOptions class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.watermark.options/teleawatermarkoptions/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.watermark.options/teleawatermarkoptions/_index.md index 760aee8c887a..31c92e135742 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.watermark.options/teleawatermarkoptions/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.watermark.options/teleawatermarkoptions/_index.md @@ -3,7 +3,7 @@ title: TeleaWatermarkOptions second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11520 +weight: 11530 url: /net/aspose.imaging.watermark.options/teleawatermarkoptions/ --- ## TeleaWatermarkOptions class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.watermark.options/watermarkoptions/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.watermark.options/watermarkoptions/_index.md index 78a53777cb45..6f8f062e1ecb 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.watermark.options/watermarkoptions/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.watermark.options/watermarkoptions/_index.md @@ -3,7 +3,7 @@ title: WatermarkOptions second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11530 +weight: 11540 url: /net/aspose.imaging.watermark.options/watermarkoptions/ --- ## WatermarkOptions class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.watermark/watermarkremover/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.watermark/watermarkremover/_index.md index bac356ce27d0..1c38ae7dd27f 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.watermark/watermarkremover/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.watermark/watermarkremover/_index.md @@ -3,7 +3,7 @@ title: WatermarkRemover second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11540 +weight: 11550 url: /net/aspose.imaging.watermark/watermarkremover/ --- ## WatermarkRemover class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.dicom/dicompackage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.dicom/dicompackage/_index.md index 3b62226aa766..5305f36f6c69 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.dicom/dicompackage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.dicom/dicompackage/_index.md @@ -3,7 +3,7 @@ title: DicomPackage second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11590 +weight: 11600 url: /net/aspose.imaging.xmp.schemas.dicom/dicompackage/ --- ## DicomPackage class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.dublincore/dublincorepackage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.dublincore/dublincorepackage/_index.md index f8e7981bb6f3..06051ac1b9f2 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.dublincore/dublincorepackage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.dublincore/dublincorepackage/_index.md @@ -3,7 +3,7 @@ title: DublinCorePackage second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11600 +weight: 11610 url: /net/aspose.imaging.xmp.schemas.dublincore/dublincorepackage/ --- ## DublinCorePackage class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.pdf/pdfpackage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.pdf/pdfpackage/_index.md index c5b1c1fa3945..26daa26cf32f 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.pdf/pdfpackage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.pdf/pdfpackage/_index.md @@ -3,7 +3,7 @@ title: PdfPackage second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11610 +weight: 11620 url: /net/aspose.imaging.xmp.schemas.pdf/pdfpackage/ --- ## PdfPackage class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.photoshop/colormode/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.photoshop/colormode/_index.md index cc585bb37c6e..cd3e08641245 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.photoshop/colormode/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.photoshop/colormode/_index.md @@ -3,7 +3,7 @@ title: ColorMode second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11620 +weight: 11630 url: /net/aspose.imaging.xmp.schemas.photoshop/colormode/ --- ## ColorMode enumeration diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.photoshop/layer/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.photoshop/layer/_index.md index a89816629916..46612002c0e8 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.photoshop/layer/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.photoshop/layer/_index.md @@ -3,7 +3,7 @@ title: Layer second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11630 +weight: 11640 url: /net/aspose.imaging.xmp.schemas.photoshop/layer/ --- ## Layer class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.photoshop/layer/getxmprepresentation/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.photoshop/layer/getxmprepresentation/_index.md index 149984a36bda..606fa3ca4beb 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.photoshop/layer/getxmprepresentation/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.photoshop/layer/getxmprepresentation/_index.md @@ -16,7 +16,7 @@ public override string GetXmpRepresentation() ### Return Value -Returns string contained value in XMP format. +Returns string containing xmp representation. ### See Also diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.photoshop/photoshoppackage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.photoshop/photoshoppackage/_index.md index 186d7cc66b90..c9a256db871d 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.photoshop/photoshoppackage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.photoshop/photoshoppackage/_index.md @@ -3,7 +3,7 @@ title: PhotoshopPackage second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11640 +weight: 11650 url: /net/aspose.imaging.xmp.schemas.photoshop/photoshoppackage/ --- ## PhotoshopPackage class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpbaseschema/xmpbasicpackage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpbaseschema/xmpbasicpackage/_index.md index f7b9f3403d67..bf9a03135e8c 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpbaseschema/xmpbasicpackage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpbaseschema/xmpbasicpackage/_index.md @@ -3,7 +3,7 @@ title: XmpBasicPackage second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11650 +weight: 11660 url: /net/aspose.imaging.xmp.schemas.xmpbaseschema/xmpbasicpackage/ --- ## XmpBasicPackage class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/audiochanneltype/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/audiochanneltype/_index.md index 6fc7baae5f63..b68603d1c0ef 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/audiochanneltype/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/audiochanneltype/_index.md @@ -3,7 +3,7 @@ title: AudioChannelType second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11660 +weight: 11670 url: /net/aspose.imaging.xmp.schemas.xmpdm/audiochanneltype/ --- ## AudioChannelType class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/audiosampletype/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/audiosampletype/_index.md index 1a22ff36f584..687a0410ad56 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/audiosampletype/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/audiosampletype/_index.md @@ -3,7 +3,7 @@ title: AudioSampleType second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11670 +weight: 11680 url: /net/aspose.imaging.xmp.schemas.xmpdm/audiosampletype/ --- ## AudioSampleType class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/projectlink/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/projectlink/_index.md index d139f01beaca..77d7617eaca1 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/projectlink/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/projectlink/_index.md @@ -3,7 +3,7 @@ title: ProjectLink second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11680 +weight: 11690 url: /net/aspose.imaging.xmp.schemas.xmpdm/projectlink/ --- ## ProjectLink class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/projectlink/getxmprepresentation/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/projectlink/getxmprepresentation/_index.md index 0813231a828c..8653894d86ba 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/projectlink/getxmprepresentation/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/projectlink/getxmprepresentation/_index.md @@ -16,13 +16,13 @@ public override string GetXmpRepresentation() ### Return Value -Returns string contained value in XMP format. +Returns string containing xmp representation. ### Exceptions | exception | condition | | --- | --- | -| NotImplementedException | | +| NotImplementedException | Not implemented | ### See Also diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/projecttype/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/projecttype/_index.md index f272ab5a1b23..f70f0435e841 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/projecttype/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/projecttype/_index.md @@ -3,7 +3,7 @@ title: ProjectType second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11690 +weight: 11700 url: /net/aspose.imaging.xmp.schemas.xmpdm/projecttype/ --- ## ProjectType enumeration diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/time/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/time/_index.md index 8ef32881e47d..cd6691f12910 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/time/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/time/_index.md @@ -3,7 +3,7 @@ title: Time second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11700 +weight: 11710 url: /net/aspose.imaging.xmp.schemas.xmpdm/time/ --- ## Time class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/timecode/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/timecode/_index.md index dbbe89c4045a..d5c32e454031 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/timecode/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/timecode/_index.md @@ -3,7 +3,7 @@ title: Timecode second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11720 +weight: 11730 url: /net/aspose.imaging.xmp.schemas.xmpdm/timecode/ --- ## Timecode class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/timecode/getxmprepresentation/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/timecode/getxmprepresentation/_index.md index 46ebb5d2835c..fa666727106f 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/timecode/getxmprepresentation/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/timecode/getxmprepresentation/_index.md @@ -16,7 +16,7 @@ public override string GetXmpRepresentation() ### Return Value -Returns the string contained value in XMP format. +Returns the string containing xmp representation. ### See Also diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/timeformat/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/timeformat/_index.md index d54f39f7e49d..c06e042ad30d 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/timeformat/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/timeformat/_index.md @@ -3,7 +3,7 @@ title: TimeFormat second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11710 +weight: 11720 url: /net/aspose.imaging.xmp.schemas.xmpdm/timeformat/ --- ## TimeFormat class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/xmpdynamicmediapackage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/xmpdynamicmediapackage/_index.md index 61c5798f1e17..1d5107b733c8 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/xmpdynamicmediapackage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpdm/xmpdynamicmediapackage/_index.md @@ -3,7 +3,7 @@ title: XmpDynamicMediaPackage second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11730 +weight: 11740 url: /net/aspose.imaging.xmp.schemas.xmpdm/xmpdynamicmediapackage/ --- ## XmpDynamicMediaPackage class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpmm/xmpmediamanagementpackage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpmm/xmpmediamanagementpackage/_index.md index c7c500c6ac61..135e6325998c 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpmm/xmpmediamanagementpackage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmpmm/xmpmediamanagementpackage/_index.md @@ -3,7 +3,7 @@ title: XmpMediaManagementPackage second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11740 +weight: 11750 url: /net/aspose.imaging.xmp.schemas.xmpmm/xmpmediamanagementpackage/ --- ## XmpMediaManagementPackage class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmprm/xmprightsmanagementpackage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmprm/xmprightsmanagementpackage/_index.md index 8de43c71f95e..3e5291e52e93 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmprm/xmprightsmanagementpackage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.schemas.xmprm/xmprightsmanagementpackage/_index.md @@ -3,7 +3,7 @@ title: XmpRightsManagementPackage second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11750 +weight: 11760 url: /net/aspose.imaging.xmp.schemas.xmprm/xmprightsmanagementpackage/ --- ## XmpRightsManagementPackage class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpboolean/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpboolean/_index.md index 2ecca6891887..9b0498bb4fb1 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpboolean/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpboolean/_index.md @@ -3,7 +3,7 @@ title: XmpBoolean second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11760 +weight: 11770 url: /net/aspose.imaging.xmp.types.basic/xmpboolean/ --- ## XmpBoolean class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpboolean/getxmprepresentation/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpboolean/getxmprepresentation/_index.md index 175a6a0c5c98..415e7c66c80f 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpboolean/getxmprepresentation/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpboolean/getxmprepresentation/_index.md @@ -16,7 +16,7 @@ public override string GetXmpRepresentation() ### Return Value -Returns string contained value in XMP format. +Returns string containing xmp representation. ### See Also diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpdate/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpdate/_index.md index b6770d752c10..ce0f07a0574d 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpdate/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpdate/_index.md @@ -3,7 +3,7 @@ title: XmpDate second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11770 +weight: 11780 url: /net/aspose.imaging.xmp.types.basic/xmpdate/ --- ## XmpDate class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpdate/getxmprepresentation/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpdate/getxmprepresentation/_index.md index 3d02b2c6084f..7e82b81f8835 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpdate/getxmprepresentation/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpdate/getxmprepresentation/_index.md @@ -16,7 +16,7 @@ public override string GetXmpRepresentation() ### Return Value -Returns string contained value in XMP format. +Returns string containing xmp representation ### See Also diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpinteger/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpinteger/_index.md index b13d031f47d5..e76e22a536f7 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpinteger/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpinteger/_index.md @@ -3,7 +3,7 @@ title: XmpInteger second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11780 +weight: 11790 url: /net/aspose.imaging.xmp.types.basic/xmpinteger/ --- ## XmpInteger class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpreal/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpreal/_index.md index 78ea1998f730..b821835cb4f5 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpreal/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmpreal/_index.md @@ -3,7 +3,7 @@ title: XmpReal second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11790 +weight: 11800 url: /net/aspose.imaging.xmp.types.basic/xmpreal/ --- ## XmpReal class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmptext/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmptext/_index.md index 899f2b55079b..f6a6b6b6582b 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmptext/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.basic/xmptext/_index.md @@ -3,7 +3,7 @@ title: XmpText second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11800 +weight: 11810 url: /net/aspose.imaging.xmp.types.basic/xmptext/ --- ## XmpText class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colorantbase/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colorantbase/_index.md index 85963a500549..d7de9a74e675 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colorantbase/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colorantbase/_index.md @@ -3,7 +3,7 @@ title: ColorantBase second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11830 +weight: 11840 url: /net/aspose.imaging.xmp.types.complex.colorant/colorantbase/ --- ## ColorantBase class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colorantcmyk/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colorantcmyk/_index.md index 19cb5556205d..5f28e6dc50bf 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colorantcmyk/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colorantcmyk/_index.md @@ -3,7 +3,7 @@ title: ColorantCmyk second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11840 +weight: 11850 url: /net/aspose.imaging.xmp.types.complex.colorant/colorantcmyk/ --- ## ColorantCmyk class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colorantlab/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colorantlab/_index.md index 8d9c1a3b2fb0..78d1402f4d25 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colorantlab/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colorantlab/_index.md @@ -3,7 +3,7 @@ title: ColorantLab second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11850 +weight: 11860 url: /net/aspose.imaging.xmp.types.complex.colorant/colorantlab/ --- ## ColorantLab class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colorantrgb/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colorantrgb/_index.md index 06724eb0b917..b8f534b5cd21 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colorantrgb/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colorantrgb/_index.md @@ -3,7 +3,7 @@ title: ColorantRgb second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11860 +weight: 11870 url: /net/aspose.imaging.xmp.types.complex.colorant/colorantrgb/ --- ## ColorantRgb class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colormode/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colormode/_index.md index 5ce062d99357..f7503fc1c66b 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colormode/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colormode/_index.md @@ -3,7 +3,7 @@ title: ColorMode second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11810 +weight: 11820 url: /net/aspose.imaging.xmp.types.complex.colorant/colormode/ --- ## ColorMode enumeration diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colortype/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colortype/_index.md index a791983e449b..2f9fda110e85 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colortype/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.colorant/colortype/_index.md @@ -3,7 +3,7 @@ title: ColorType second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11820 +weight: 11830 url: /net/aspose.imaging.xmp.types.complex.colorant/colortype/ --- ## ColorType enumeration diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.dimensions/dimensions/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.dimensions/dimensions/_index.md index ff76da358328..ce073b3812ad 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.dimensions/dimensions/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.dimensions/dimensions/_index.md @@ -3,7 +3,7 @@ title: Dimensions second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11880 +weight: 11890 url: /net/aspose.imaging.xmp.types.complex.dimensions/dimensions/ --- ## Dimensions class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.font/font/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.font/font/_index.md index 464e162d6bf2..b8c75860e266 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.font/font/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.font/font/_index.md @@ -3,7 +3,7 @@ title: Font second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11890 +weight: 11900 url: /net/aspose.imaging.xmp.types.complex.font/font/ --- ## Font class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.resourceevent/resourceevent/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.resourceevent/resourceevent/_index.md index 101b1972433e..fdd996d2e2b8 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.resourceevent/resourceevent/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.resourceevent/resourceevent/_index.md @@ -3,7 +3,7 @@ title: ResourceEvent second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11900 +weight: 11910 url: /net/aspose.imaging.xmp.types.complex.resourceevent/resourceevent/ --- ## ResourceEvent class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.resourceref/resourceref/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.resourceref/resourceref/_index.md index f69cc3eeaaac..5f1e39209fd4 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.resourceref/resourceref/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.resourceref/resourceref/_index.md @@ -3,7 +3,7 @@ title: ResourceRef second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11910 +weight: 11920 url: /net/aspose.imaging.xmp.types.complex.resourceref/resourceref/ --- ## ResourceRef class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.thumbnail/thumbnail/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.thumbnail/thumbnail/_index.md index 8eb1fbbec8a9..e04a5878835a 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.thumbnail/thumbnail/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.thumbnail/thumbnail/_index.md @@ -3,7 +3,7 @@ title: Thumbnail second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11920 +weight: 11930 url: /net/aspose.imaging.xmp.types.complex.thumbnail/thumbnail/ --- ## Thumbnail class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.version/version/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.version/version/_index.md index bf04b0719713..d49067111b71 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.version/version/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex.version/version/_index.md @@ -3,7 +3,7 @@ title: Version second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11930 +weight: 11940 url: /net/aspose.imaging.xmp.types.complex.version/version/ --- ## Version class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex/complextypebase/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex/complextypebase/_index.md index 9ec485cb086a..51aa43fcfe60 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex/complextypebase/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.complex/complextypebase/_index.md @@ -3,7 +3,7 @@ title: ComplexTypeBase second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11870 +weight: 11880 url: /net/aspose.imaging.xmp.types.complex/complextypebase/ --- ## ComplexTypeBase class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/rational/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/rational/_index.md index 834aa9b02739..348fbc8189bf 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/rational/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/rational/_index.md @@ -3,7 +3,7 @@ title: Rational second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11940 +weight: 11950 url: /net/aspose.imaging.xmp.types.derived/rational/ --- ## Rational class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/renditionclass/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/renditionclass/_index.md index 6d527fc4c692..4ffdb2425b8f 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/renditionclass/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/renditionclass/_index.md @@ -3,7 +3,7 @@ title: RenditionClass second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11950 +weight: 11960 url: /net/aspose.imaging.xmp.types.derived/renditionclass/ --- ## RenditionClass class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpagentname/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpagentname/_index.md index b7a97e64755e..2e36781183a7 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpagentname/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpagentname/_index.md @@ -3,7 +3,7 @@ title: XmpAgentName second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11960 +weight: 11970 url: /net/aspose.imaging.xmp.types.derived/xmpagentname/ --- ## XmpAgentName class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpchoise-1/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpchoise-1/_index.md index 97975ef15d37..8fc2c34d2c00 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpchoise-1/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpchoise-1/_index.md @@ -3,7 +3,7 @@ title: XmpChoiseT second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11970 +weight: 11980 url: /net/aspose.imaging.xmp.types.derived/xmpchoise-1/ --- ## XmpChoise<T> class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpchoise-1/getxmprepresentation/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpchoise-1/getxmprepresentation/_index.md index 36457a4aace2..a7b7e579c403 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpchoise-1/getxmprepresentation/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpchoise-1/getxmprepresentation/_index.md @@ -22,7 +22,7 @@ Returns the string contained value in XMP format. | exception | condition | | --- | --- | -| NotImplementedException | | +| NotImplementedException | Exception | ### See Also diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpguid/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpguid/_index.md index c6ed1ce5f352..72752ed9abe2 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpguid/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpguid/_index.md @@ -3,7 +3,7 @@ title: XmpGuid second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11980 +weight: 11990 url: /net/aspose.imaging.xmp.types.derived/xmpguid/ --- ## XmpGuid class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmplocale/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmplocale/_index.md index 63380b42da49..849d9d890667 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmplocale/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmplocale/_index.md @@ -3,7 +3,7 @@ title: XmpLocale second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11990 +weight: 12000 url: /net/aspose.imaging.xmp.types.derived/xmplocale/ --- ## XmpLocale class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpmimetype/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpmimetype/_index.md index b6c2ac58d297..c9128642d7f1 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpmimetype/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types.derived/xmpmimetype/_index.md @@ -3,7 +3,7 @@ title: XmpMimeType second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 12000 +weight: 12010 url: /net/aspose.imaging.xmp.types.derived/xmpmimetype/ --- ## XmpMimeType class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types/ixmptype/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types/ixmptype/_index.md index 58db04524223..73675e58707e 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types/ixmptype/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types/ixmptype/_index.md @@ -3,7 +3,7 @@ title: IXmpType second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 12010 +weight: 12020 url: /net/aspose.imaging.xmp.types/ixmptype/ --- ## IXmpType interface diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types/xmptypebase/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types/xmptypebase/_index.md index 982e289c473c..0906a7e4c362 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types/xmptypebase/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp.types/xmptypebase/_index.md @@ -3,7 +3,7 @@ title: XmpTypeBase second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 12020 +weight: 12030 url: /net/aspose.imaging.xmp.types/xmptypebase/ --- ## XmpTypeBase class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/ixmlvalue/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/ixmlvalue/_index.md index 8956c18b2385..b75034e3f936 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/ixmlvalue/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/ixmlvalue/_index.md @@ -3,7 +3,7 @@ title: IXmlValue second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11560 +weight: 11570 url: /net/aspose.imaging.xmp/ixmlvalue/ --- ## IXmlValue interface diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/langalt/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/langalt/_index.md index 2defa617374f..73f5c182f986 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/langalt/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/langalt/_index.md @@ -3,7 +3,7 @@ title: LangAlt second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11570 +weight: 11580 url: /net/aspose.imaging.xmp/langalt/ --- ## LangAlt class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/namespaces/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/namespaces/_index.md index 2fa7d1e2c68c..719664cb9358 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/namespaces/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/namespaces/_index.md @@ -3,7 +3,7 @@ title: Namespaces second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11580 +weight: 11590 url: /net/aspose.imaging.xmp/namespaces/ --- ## Namespaces class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmparray/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmparray/_index.md index 18129ceb9812..b2f6461d6cff 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmparray/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmparray/_index.md @@ -3,7 +3,7 @@ title: XmpArray second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 12030 +weight: 12040 url: /net/aspose.imaging.xmp/xmparray/ --- ## XmpArray class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmparrayhelper/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmparrayhelper/_index.md index 3d287f7188c7..1eb16d838371 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmparrayhelper/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmparrayhelper/_index.md @@ -3,7 +3,7 @@ title: XmpArrayHelper second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 12040 +weight: 12050 url: /net/aspose.imaging.xmp/xmparrayhelper/ --- ## XmpArrayHelper class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmparraytype/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmparraytype/_index.md index 01a009ebd81a..498e729643cc 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmparraytype/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmparraytype/_index.md @@ -3,7 +3,7 @@ title: XmpArrayType second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 12050 +weight: 12060 url: /net/aspose.imaging.xmp/xmparraytype/ --- ## XmpArrayType enumeration diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmpelementbase/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmpelementbase/_index.md index 0f0581f0739b..1233ef781d7d 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmpelementbase/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmpelementbase/_index.md @@ -3,7 +3,7 @@ title: XmpElementBase second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 12060 +weight: 12070 url: /net/aspose.imaging.xmp/xmpelementbase/ --- ## XmpElementBase class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmpheaderpi/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmpheaderpi/_index.md index e88b0c6ee336..a37c53d7a547 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmpheaderpi/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmpheaderpi/_index.md @@ -3,7 +3,7 @@ title: XmpHeaderPi second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 12070 +weight: 12080 url: /net/aspose.imaging.xmp/xmpheaderpi/ --- ## XmpHeaderPi class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmpmeta/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmpmeta/_index.md index 38c0ceeb06d3..8eb5e51c9455 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmpmeta/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmpmeta/_index.md @@ -3,7 +3,7 @@ title: XmpMeta second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 12080 +weight: 12090 url: /net/aspose.imaging.xmp/xmpmeta/ --- ## XmpMeta class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmppackage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmppackage/_index.md index f42decadff8a..8913a195e282 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmppackage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmppackage/_index.md @@ -3,7 +3,7 @@ title: XmpPackage second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 12090 +weight: 12100 url: /net/aspose.imaging.xmp/xmppackage/ --- ## XmpPackage class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmppackagebasecollection/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmppackagebasecollection/_index.md index e7cb8419bc2c..7fe11c2e8152 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmppackagebasecollection/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmppackagebasecollection/_index.md @@ -3,7 +3,7 @@ title: XmpPackageBaseCollection second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 12100 +weight: 12110 url: /net/aspose.imaging.xmp/xmppackagebasecollection/ --- ## XmpPackageBaseCollection class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmppacketwrapper/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmppacketwrapper/_index.md index cc29d5b01bf3..e12ac5a6fda8 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmppacketwrapper/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmppacketwrapper/_index.md @@ -3,7 +3,7 @@ title: XmpPacketWrapper second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 12110 +weight: 12120 url: /net/aspose.imaging.xmp/xmppacketwrapper/ --- ## XmpPacketWrapper class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmprdfroot/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmprdfroot/_index.md index dec1828c6ae9..95d90383313d 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmprdfroot/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmprdfroot/_index.md @@ -3,7 +3,7 @@ title: XmpRdfRoot second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 12120 +weight: 12130 url: /net/aspose.imaging.xmp/xmprdfroot/ --- ## XmpRdfRoot class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmptrailerpi/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmptrailerpi/_index.md index 03f8d5b3a3fe..2c5f09847917 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmptrailerpi/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging.xmp/xmptrailerpi/_index.md @@ -3,7 +3,7 @@ title: XmpTrailerPi second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 12130 +weight: 12140 url: /net/aspose.imaging.xmp/xmptrailerpi/ --- ## XmpTrailerPi class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/_index.md index f24e699ad9a8..f60dc69a60a7 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/_index.md @@ -47,7 +47,7 @@ The namespace is the core for nested namespaces and the most basic objects used | [License](./license) | Provides methods to license the component. | | [LoadOptions](./loadoptions) | Represents the loading options. | | [Matrix](./matrix) | Replaces the GDI+ Matrix. | -| [Metered](./metered) | Provides methods to set metered key. | +| [Metered](./metered) | Provides metered methods for integration | | [NonGenericDictionary](./nongenericdictionary) | Represents a non generic dictionary. | | [NonGenericList](./nongenericlist) | Non generic list of objects | | [ObjectWithBounds](./objectwithbounds) | The object having bounds. | @@ -61,6 +61,7 @@ The namespace is the core for nested namespaces and the most basic objects used | [RasterImage](./rasterimage) | Represents a raster image supporting raster graphics operations. | | [RawDataSettings](./rawdatasettings) | The raw data settings | | [Region](./region) | Describes the interior of a graphics shape composed of rectangles and paths. This class cannot be inherited. | +| [RemoveBackgroundSettings](./removebackgroundsettings) | The remve background settings | | [ResolutionSetting](./resolutionsetting) | The resolution setting for image save options. | | [Shape](./shape) | The shape. A continuous set of points connected using a specific rule. | | [ShapeSegment](./shapesegment) | Represents a shape segment. A segment is a line or curve connecting two points. | diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/metered/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/metered/_index.md index 4cbf48fd64d7..939dc973465f 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/metered/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/metered/_index.md @@ -8,10 +8,10 @@ url: /net/aspose.imaging/metered/ --- ## Metered class -Provides methods to set metered key. - Provides metered methods for integration +Provides methods to set metered key. + ```csharp public class Metered ``` @@ -20,14 +20,14 @@ public class Metered | Name | Description | | --- | --- | -| [Metered](metered)() | The default constructor. | +| [Metered](metered)() | Initializes a new instance of this class. | ## Methods | Name | Description | | --- | --- | | override [Equals](../../aspose.imaging/metered/equals)(object) | Determines whether the specified Object, is equal to this instance. | -| [SetMeteredKey](../../aspose.imaging/metered/setmeteredkey)(string, string) | Sets metered public and private key If you purchase metered license, when start application, this API should be called, normally, this is enough. However, if always fail to upload consumption data and exceed 24 hours, the license will be set to evaluation status, to avoid such case, you should regularly check the license status, if it is evaluation status, call this API again. | +| [SetMeteredKey](../../aspose.imaging/metered/setmeteredkey)(string, string) | Sets metered public and private key. If you purchase metered license, when start application, this API should be called, normally, this is enough. However, if always fail to upload consumption data and exceed 24 hours, the license will be set to evaluation status, to avoid such case, you should regularly check the license status, if it is evaluation status, call this API again. | | static [GetConsumptionCredit](../../aspose.imaging/metered/getconsumptioncredit)() | Gets consumption credit | | static [GetConsumptionQuantity](../../aspose.imaging/metered/getconsumptionquantity)() | Gets consumption file size | diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/metered/metered/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/metered/metered/_index.md index 110a08658c91..d2c6ac62eb02 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/metered/metered/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/metered/metered/_index.md @@ -8,7 +8,7 @@ url: /net/aspose.imaging/metered/metered/ --- ## Metered constructor -The default constructor. +Initializes a new instance of this class. ```csharp public Metered() diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/metered/setmeteredkey/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/metered/setmeteredkey/_index.md index 261cb1182c19..ba9678b45a95 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/metered/setmeteredkey/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/metered/setmeteredkey/_index.md @@ -8,7 +8,7 @@ url: /net/aspose.imaging/metered/setmeteredkey/ --- ## Metered.SetMeteredKey method -Sets metered public and private key If you purchase metered license, when start application, this API should be called, normally, this is enough. However, if always fail to upload consumption data and exceed 24 hours, the license will be set to evaluation status, to avoid such case, you should regularly check the license status, if it is evaluation status, call this API again. +Sets metered public and private key. If you purchase metered license, when start application, this API should be called, normally, this is enough. However, if always fail to upload consumption data and exceed 24 hours, the license will be set to evaluation status, to avoid such case, you should regularly check the license status, if it is evaluation status, call this API again. ```csharp public void SetMeteredKey(string publicKey, string privateKey) diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/removebackgroundsettings/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/removebackgroundsettings/_index.md new file mode 100644 index 000000000000..c1a8c2689e2f --- /dev/null +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/removebackgroundsettings/_index.md @@ -0,0 +1,37 @@ +--- +title: RemoveBackgroundSettings +second_title: Aspose.Imaging for .NET API Reference +description: +type: docs +weight: 11130 +url: /net/aspose.imaging/removebackgroundsettings/ +--- +## RemoveBackgroundSettings class + +The remve background settings + +```csharp +public class RemoveBackgroundSettings +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [RemoveBackgroundSettings](removebackgroundsettings)() | The default constructor. | + +## Properties + +| Name | Description | +| --- | --- | +| [Bounds](../../aspose.imaging/removebackgroundsettings/bounds) { get; set; } | Gets or sets the bounds. | +| [Color1](../../aspose.imaging/removebackgroundsettings/color1) { get; set; } | Gets or sets the color. | +| [Color2](../../aspose.imaging/removebackgroundsettings/color2) { get; set; } | Gets or sets the color2. | +| [DetectionLevel](../../aspose.imaging/removebackgroundsettings/detectionlevel) { get; set; } | Gets or sets the detection level. | + +### See Also + +* namespace [Aspose.Imaging](../../aspose.imaging) +* assembly [Aspose.Imaging](../../) + + diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/removebackgroundsettings/bounds/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/removebackgroundsettings/bounds/_index.md new file mode 100644 index 000000000000..6f2e71032b42 --- /dev/null +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/removebackgroundsettings/bounds/_index.md @@ -0,0 +1,28 @@ +--- +title: Bounds +second_title: Aspose.Imaging for .NET API Reference +description: +type: docs +weight: 20 +url: /net/aspose.imaging/removebackgroundsettings/bounds/ +--- +## RemoveBackgroundSettings.Bounds property + +Gets or sets the bounds. + +```csharp +public RectangleF? Bounds { get; set; } +``` + +### Property Value + +The bounds. + +### See Also + +* struct [RectangleF](../../rectanglef) +* class [RemoveBackgroundSettings](../../removebackgroundsettings) +* namespace [Aspose.Imaging](../../removebackgroundsettings) +* assembly [Aspose.Imaging](../../../) + + diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/removebackgroundsettings/color1/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/removebackgroundsettings/color1/_index.md new file mode 100644 index 000000000000..7cef674d6e9d --- /dev/null +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/removebackgroundsettings/color1/_index.md @@ -0,0 +1,28 @@ +--- +title: Color1 +second_title: Aspose.Imaging for .NET API Reference +description: +type: docs +weight: 30 +url: /net/aspose.imaging/removebackgroundsettings/color1/ +--- +## RemoveBackgroundSettings.Color1 property + +Gets or sets the color. + +```csharp +public Color? Color1 { get; set; } +``` + +### Property Value + +The color. + +### See Also + +* struct [Color](../../color) +* class [RemoveBackgroundSettings](../../removebackgroundsettings) +* namespace [Aspose.Imaging](../../removebackgroundsettings) +* assembly [Aspose.Imaging](../../../) + + diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/removebackgroundsettings/color2/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/removebackgroundsettings/color2/_index.md new file mode 100644 index 000000000000..7c71572bd2e8 --- /dev/null +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/removebackgroundsettings/color2/_index.md @@ -0,0 +1,28 @@ +--- +title: Color2 +second_title: Aspose.Imaging for .NET API Reference +description: +type: docs +weight: 40 +url: /net/aspose.imaging/removebackgroundsettings/color2/ +--- +## RemoveBackgroundSettings.Color2 property + +Gets or sets the color2. + +```csharp +public Color? Color2 { get; set; } +``` + +### Property Value + +The color2. + +### See Also + +* struct [Color](../../color) +* class [RemoveBackgroundSettings](../../removebackgroundsettings) +* namespace [Aspose.Imaging](../../removebackgroundsettings) +* assembly [Aspose.Imaging](../../../) + + diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/removebackgroundsettings/detectionlevel/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/removebackgroundsettings/detectionlevel/_index.md new file mode 100644 index 000000000000..d14cf82804d2 --- /dev/null +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/removebackgroundsettings/detectionlevel/_index.md @@ -0,0 +1,27 @@ +--- +title: DetectionLevel +second_title: Aspose.Imaging for .NET API Reference +description: +type: docs +weight: 50 +url: /net/aspose.imaging/removebackgroundsettings/detectionlevel/ +--- +## RemoveBackgroundSettings.DetectionLevel property + +Gets or sets the detection level. + +```csharp +public int? DetectionLevel { get; set; } +``` + +### Property Value + +The detection level. + +### See Also + +* class [RemoveBackgroundSettings](../../removebackgroundsettings) +* namespace [Aspose.Imaging](../../removebackgroundsettings) +* assembly [Aspose.Imaging](../../../) + + diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/removebackgroundsettings/removebackgroundsettings/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/removebackgroundsettings/removebackgroundsettings/_index.md new file mode 100644 index 000000000000..331d70eafe3f --- /dev/null +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/removebackgroundsettings/removebackgroundsettings/_index.md @@ -0,0 +1,23 @@ +--- +title: RemoveBackgroundSettings +second_title: Aspose.Imaging for .NET API Reference +description: +type: docs +weight: 10 +url: /net/aspose.imaging/removebackgroundsettings/removebackgroundsettings/ +--- +## RemoveBackgroundSettings constructor + +The default constructor. + +```csharp +public RemoveBackgroundSettings() +``` + +### See Also + +* class [RemoveBackgroundSettings](../../removebackgroundsettings) +* namespace [Aspose.Imaging](../../removebackgroundsettings) +* assembly [Aspose.Imaging](../../../) + + diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/resizetype/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/resizetype/_index.md index cad5dc2c81f7..39af8a303f07 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/resizetype/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/resizetype/_index.md @@ -3,7 +3,7 @@ title: ResizeType second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11130 +weight: 11140 url: /net/aspose.imaging/resizetype/ --- ## ResizeType enumeration diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/resolutionsetting/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/resolutionsetting/_index.md index 84dad7a8b8ff..c19a5acc0579 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/resolutionsetting/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/resolutionsetting/_index.md @@ -3,7 +3,7 @@ title: ResolutionSetting second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11140 +weight: 11150 url: /net/aspose.imaging/resolutionsetting/ --- ## ResolutionSetting class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/resolutionunit/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/resolutionunit/_index.md index cbe58af7ea7d..9afdb15efcef 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/resolutionunit/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/resolutionunit/_index.md @@ -3,7 +3,7 @@ title: ResolutionUnit second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11150 +weight: 11160 url: /net/aspose.imaging/resolutionunit/ --- ## ResolutionUnit enumeration diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/rotatefliptype/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/rotatefliptype/_index.md index 158be86dd93f..5baf6804eeb4 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/rotatefliptype/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/rotatefliptype/_index.md @@ -3,7 +3,7 @@ title: RotateFlipType second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11160 +weight: 11170 url: /net/aspose.imaging/rotatefliptype/ --- ## RotateFlipType enumeration diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/seekorigin/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/seekorigin/_index.md index 4649c809d537..e6cb26f59689 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/seekorigin/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/seekorigin/_index.md @@ -3,7 +3,7 @@ title: SeekOrigin second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11170 +weight: 11180 url: /net/aspose.imaging/seekorigin/ --- ## SeekOrigin enumeration diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/shape/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/shape/_index.md index 777b9a904981..52e9ee696fc0 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/shape/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/shape/_index.md @@ -3,7 +3,7 @@ title: Shape second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11180 +weight: 11190 url: /net/aspose.imaging/shape/ --- ## Shape class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/shapesegment/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/shapesegment/_index.md index c624def5e2b6..56a789f0824e 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/shapesegment/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/shapesegment/_index.md @@ -3,7 +3,7 @@ title: ShapeSegment second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11190 +weight: 11200 url: /net/aspose.imaging/shapesegment/ --- ## ShapeSegment class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/size/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/size/_index.md index 81629ab85ac7..c7823590ff28 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/size/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/size/_index.md @@ -3,7 +3,7 @@ title: Size second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11310 +weight: 11320 url: /net/aspose.imaging/size/ --- ## Size structure diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/sizef/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/sizef/_index.md index 966eb0cb5182..7e4162efbaa5 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/sizef/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/sizef/_index.md @@ -3,7 +3,7 @@ title: SizeF second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11320 +weight: 11330 url: /net/aspose.imaging/sizef/ --- ## SizeF structure diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/smoothingmode/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/smoothingmode/_index.md index ac042b53c952..c0f3573e0cce 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/smoothingmode/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/smoothingmode/_index.md @@ -3,7 +3,7 @@ title: SmoothingMode second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11330 +weight: 11340 url: /net/aspose.imaging/smoothingmode/ --- ## SmoothingMode enumeration diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/source/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/source/_index.md index b676c3ba4aa9..141cf129fd0a 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/source/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/source/_index.md @@ -3,7 +3,7 @@ title: Source second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11340 +weight: 11350 url: /net/aspose.imaging/source/ --- ## Source class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/splitstreamcontainer/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/splitstreamcontainer/_index.md index eb018bad7fac..7fe7995432e2 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/splitstreamcontainer/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/splitstreamcontainer/_index.md @@ -3,7 +3,7 @@ title: SplitStreamContainer second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11390 +weight: 11400 url: /net/aspose.imaging/splitstreamcontainer/ --- ## SplitStreamContainer class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/streamcontainer/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/streamcontainer/_index.md index bfec75f25d24..ee9ce5bce8c0 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/streamcontainer/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/streamcontainer/_index.md @@ -3,7 +3,7 @@ title: StreamContainer second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11400 +weight: 11410 url: /net/aspose.imaging/streamcontainer/ --- ## StreamContainer class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/stringalignment/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/stringalignment/_index.md index ebf6fce36cb1..362502b08e93 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/stringalignment/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/stringalignment/_index.md @@ -3,7 +3,7 @@ title: StringAlignment second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11410 +weight: 11420 url: /net/aspose.imaging/stringalignment/ --- ## StringAlignment enumeration diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/stringdigitsubstitute/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/stringdigitsubstitute/_index.md index 4948429d72c8..7b3520ba8a67 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/stringdigitsubstitute/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/stringdigitsubstitute/_index.md @@ -3,7 +3,7 @@ title: StringDigitSubstitute second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11420 +weight: 11430 url: /net/aspose.imaging/stringdigitsubstitute/ --- ## StringDigitSubstitute enumeration diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/stringformat/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/stringformat/_index.md index ccc8923e093b..8da48e433ce7 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/stringformat/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/stringformat/_index.md @@ -3,7 +3,7 @@ title: StringFormat second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11430 +weight: 11440 url: /net/aspose.imaging/stringformat/ --- ## StringFormat class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/stringformatflags/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/stringformatflags/_index.md index 260ef6f0a0f1..80e0dd78d6ba 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/stringformatflags/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/stringformatflags/_index.md @@ -3,7 +3,7 @@ title: StringFormatFlags second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11440 +weight: 11450 url: /net/aspose.imaging/stringformatflags/ --- ## StringFormatFlags enumeration diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/stringtrimming/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/stringtrimming/_index.md index d7f9eb01584f..630c961ef707 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/stringtrimming/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/stringtrimming/_index.md @@ -3,7 +3,7 @@ title: StringTrimming second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11450 +weight: 11460 url: /net/aspose.imaging/stringtrimming/ --- ## StringTrimming enumeration diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/textrenderinghint/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/textrenderinghint/_index.md index 2f2a3a1778c9..385c329f8e1f 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/textrenderinghint/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/textrenderinghint/_index.md @@ -3,7 +3,7 @@ title: TextRenderingHint second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11460 +weight: 11470 url: /net/aspose.imaging/textrenderinghint/ --- ## TextRenderingHint enumeration diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/transparencysupporter/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/transparencysupporter/_index.md index 979085667733..8382d0835e11 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/transparencysupporter/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/transparencysupporter/_index.md @@ -3,7 +3,7 @@ title: TransparencySupporter second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11470 +weight: 11480 url: /net/aspose.imaging/transparencysupporter/ --- ## TransparencySupporter class diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/vectorimage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/vectorimage/_index.md index bfe01c384ecb..75fa7584171b 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/vectorimage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/vectorimage/_index.md @@ -3,7 +3,7 @@ title: VectorImage second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11480 +weight: 11490 url: /net/aspose.imaging/vectorimage/ --- ## VectorImage class @@ -49,6 +49,8 @@ public abstract class VectorImage : Image, IObjectWithSizeF | virtual [GetDefaultOptions](../../aspose.imaging/image/getdefaultoptions)(object[]) | Gets the default options. | | virtual [GetEmbeddedImages](../../aspose.imaging/vectorimage/getembeddedimages)() | Gets the embedded images. | | virtual [GetOriginalOptions](../../aspose.imaging/image/getoriginaloptions)() | Gets the options based on the original file settings. This can be helpful to keep bit-depth and other parameters of the original image unchanged. For example, if we load a black-white PNG image with 1 bit per pixel and then save it using the [`Save`](../datastreamsupporter/save) method, the output PNG image with 8-bit per pixel will be produced. To avoid it and save PNG image with 1-bit per pixel, use this method to get corresponding saving options and pass them to the [`Save`](../image/save) method as the second parameter. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)() | Removes the background. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)(RemoveBackgroundSettings) | Removes the background. | | [Resize](../../aspose.imaging/image/resize)(int, int) | Resizes the image. The default NearestNeighbourResample is used. | | abstract [Resize](../../aspose.imaging/image/resize)(int, int, ImageResizeSettings) | Resizes the image. | | abstract [Resize](../../aspose.imaging/image/resize)(int, int, ResizeType) | Resizes the image. | diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/vectorimage/removebackground/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/vectorimage/removebackground/_index.md new file mode 100644 index 000000000000..4402fbb974b9 --- /dev/null +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/vectorimage/removebackground/_index.md @@ -0,0 +1,44 @@ +--- +title: RemoveBackground +second_title: Aspose.Imaging for .NET API Reference +description: +type: docs +weight: 70 +url: /net/aspose.imaging/vectorimage/removebackground/ +--- +## VectorImage.RemoveBackground method (1 of 2) + +Removes the background. + +```csharp +public void RemoveBackground() +``` + +### See Also + +* class [VectorImage](../../vectorimage) +* namespace [Aspose.Imaging](../../vectorimage) +* assembly [Aspose.Imaging](../../../) + +--- + +## VectorImage.RemoveBackground method (2 of 2) + +Removes the background. + +```csharp +public void RemoveBackground(RemoveBackgroundSettings settings) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| settings | RemoveBackgroundSettings | The settings. | + +### See Also + +* class [RemoveBackgroundSettings](../../removebackgroundsettings) +* class [VectorImage](../../vectorimage) +* namespace [Aspose.Imaging](../../vectorimage) +* assembly [Aspose.Imaging](../../../) + + diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/vectormultipageimage/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/vectormultipageimage/_index.md index 5ff4fca62c30..2c10164e36a4 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/vectormultipageimage/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/vectormultipageimage/_index.md @@ -3,7 +3,7 @@ title: VectorMultipageImage second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11490 +weight: 11500 url: /net/aspose.imaging/vectormultipageimage/ --- ## VectorMultipageImage class @@ -52,6 +52,8 @@ public abstract class VectorMultipageImage : VectorImage, IMultipageImage | virtual [GetDefaultOptions](../../aspose.imaging/image/getdefaultoptions)(object[]) | Gets the default options. | | override [GetEmbeddedImages](../../aspose.imaging/vectormultipageimage/getembeddedimages)() | Gets the embedded images. | | virtual [GetOriginalOptions](../../aspose.imaging/image/getoriginaloptions)() | Gets the options based on the original file settings. This can be helpful to keep bit-depth and other parameters of the original image unchanged. For example, if we load a black-white PNG image with 1 bit per pixel and then save it using the [`Save`](../datastreamsupporter/save) method, the output PNG image with 8-bit per pixel will be produced. To avoid it and save PNG image with 1-bit per pixel, use this method to get corresponding saving options and pass them to the [`Save`](../image/save) method as the second parameter. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)() | Removes the background. | +| [RemoveBackground](../../aspose.imaging/vectorimage/removebackground)(RemoveBackgroundSettings) | Removes the background. | | [Resize](../../aspose.imaging/image/resize)(int, int) | Resizes the image. The default NearestNeighbourResample is used. | | override [Resize](../../aspose.imaging/vectormultipageimage/resize)(int, int, ImageResizeSettings) | Resizes the image. | | override [Resize](../../aspose.imaging/vectormultipageimage/resize)(int, int, ResizeType) | Resizes the image. | diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/warpmode/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/warpmode/_index.md index 1db815756e3b..52c5d2de57d7 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/warpmode/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/warpmode/_index.md @@ -3,7 +3,7 @@ title: WarpMode second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11500 +weight: 11510 url: /net/aspose.imaging/warpmode/ --- ## WarpMode enumeration diff --git a/content/sites/aspose/imaging/english/net/aspose.imaging/wrapmode/_index.md b/content/sites/aspose/imaging/english/net/aspose.imaging/wrapmode/_index.md index d4f6f8bf8ea3..b0ad357a9935 100644 --- a/content/sites/aspose/imaging/english/net/aspose.imaging/wrapmode/_index.md +++ b/content/sites/aspose/imaging/english/net/aspose.imaging/wrapmode/_index.md @@ -3,7 +3,7 @@ title: WrapMode second_title: Aspose.Imaging for .NET API Reference description: type: docs -weight: 11550 +weight: 11560 url: /net/aspose.imaging/wrapmode/ --- ## WrapMode enumeration