diff --git a/english/net/aspose.imaging.brushes/lineargradientbrush/_index.md b/english/net/aspose.imaging.brushes/lineargradientbrush/_index.md index 3911db99fc..a58676e4c6 100644 --- a/english/net/aspose.imaging.brushes/lineargradientbrush/_index.md +++ b/english/net/aspose.imaging.brushes/lineargradientbrush/_index.md @@ -19,12 +19,12 @@ public sealed class LinearGradientBrush : LinearGradientBrushBase | Name | Description | | --- | --- | | [LinearGradientBrush](lineargradientbrush)() | Initializes a new instance of the [`LinearGradientBrush`](../lineargradientbrush) class with default parameters. The starting color is black, the ending color is white, the angle is 45 degrees and the rectangle is located in (0,0) with size (1,1). | -| [LinearGradientBrush](lineargradientbrush)(Point, Point, Color, Color) | Initializes a new instance of the [`LinearGradientBrush`](../lineargradientbrush) class with the specified points and colors. | -| [LinearGradientBrush](lineargradientbrush)(PointF, PointF, Color, Color) | Initializes a new instance of the [`LinearGradientBrush`](../lineargradientbrush) class with the specified points and colors. | -| [LinearGradientBrush](lineargradientbrush)(Rectangle, Color, Color, float) | Initializes a new instance of the [`LinearGradientBrush`](../lineargradientbrush) class based on a rectangle, starting and ending colors, and an orientation angle. | -| [LinearGradientBrush](lineargradientbrush)(RectangleF, Color, Color, float) | Initializes a new instance of the [`LinearGradientBrush`](../lineargradientbrush) class based on a rectangle, starting and ending colors, and an orientation angle. | -| [LinearGradientBrush](lineargradientbrush)(Rectangle, Color, Color, float, bool) | Initializes a new instance of the [`LinearGradientBrush`](../lineargradientbrush) class based on a rectangle, starting and ending colors, and an orientation angle. | -| [LinearGradientBrush](lineargradientbrush)(RectangleF, Color, Color, float, bool) | Initializes a new instance of the [`LinearGradientBrush`](../lineargradientbrush) class based on a rectangle, starting and ending colors, and an orientation angle. | +| [LinearGradientBrush](lineargradientbrush)(Point, Point, Color, Color) | Initializes a new instance of the [`LinearGradientBrush`](../lineargradientbrush) class. | +| [LinearGradientBrush](lineargradientbrush)(PointF, PointF, Color, Color) | Initializes a new instance of the [`LinearGradientBrush`](../lineargradientbrush) class. | +| [LinearGradientBrush](lineargradientbrush)(Rectangle, Color, Color, float) | Initializes a new instance of the [`LinearGradientBrush`](../lineargradientbrush) class. | +| [LinearGradientBrush](lineargradientbrush)(RectangleF, Color, Color, float) | Initializes a new instance of the [`LinearGradientBrush`](../lineargradientbrush) class. | +| [LinearGradientBrush](lineargradientbrush)(Rectangle, Color, Color, float, bool) | Initializes a new instance of the [`LinearGradientBrush`](../lineargradientbrush) class. | +| [LinearGradientBrush](lineargradientbrush)(RectangleF, Color, Color, float, bool) | Initializes a new instance of the [`LinearGradientBrush`](../lineargradientbrush) class. | ## Properties diff --git a/english/net/aspose.imaging.brushes/lineargradientbrush/lineargradientbrush/_index.md b/english/net/aspose.imaging.brushes/lineargradientbrush/lineargradientbrush/_index.md index 14e091792b..d21533ad47 100644 --- a/english/net/aspose.imaging.brushes/lineargradientbrush/lineargradientbrush/_index.md +++ b/english/net/aspose.imaging.brushes/lineargradientbrush/lineargradientbrush/_index.md @@ -8,14 +8,25 @@ url: /net/aspose.imaging.brushes/lineargradientbrush/lineargradientbrush/ --- ## LinearGradientBrush constructor (1 of 7) -Initializes a new instance of the [`LinearGradientBrush`](../../lineargradientbrush) class with default parameters. The starting color is black, the ending color is white, the angle is 45 degrees and the rectangle is located in (0,0) with size (1,1). +Initializes a new instance of the [`LinearGradientBrush`](../../lineargradientbrush) class. ```csharp -public LinearGradientBrush() +public LinearGradientBrush(RectangleF rect, Color color1, Color color2, float angle, + bool isAngleScalable) ``` +| Parameter | Type | Description | +| --- | --- | --- | +| rect | RectangleF | The rectangle. | +| color1 | Color | The color1. | +| color2 | Color | The color2. | +| angle | Single | The angle. | +| isAngleScalable | Boolean | if set to `true` [is angle scalable]. | + ### See Also +* struct [RectangleF](../../../aspose.imaging/rectanglef) +* struct [Color](../../../aspose.imaging/color) * class [LinearGradientBrush](../../lineargradientbrush) * namespace [Aspose.Imaging.Brushes](../../lineargradientbrush) * assembly [Aspose.Imaging](../../../) @@ -24,69 +35,24 @@ public LinearGradientBrush() ## LinearGradientBrush constructor (2 of 7) -Initializes a new instance of the [`LinearGradientBrush`](../../lineargradientbrush) class with the specified points and colors. +Initializes a new instance of the [`LinearGradientBrush`](../../lineargradientbrush) class. ```csharp -public LinearGradientBrush(Point point1, Point point2, Color color1, Color color2) +public LinearGradientBrush(Rectangle rect, Color color1, Color color2, float angle, + bool isAngleScalable) ``` | Parameter | Type | Description | | --- | --- | --- | -| point1 | Point | A [`Point`](../../../aspose.imaging/point) structure that represents the starting point of the linear gradient. | -| point2 | Point | A [`Point`](../../../aspose.imaging/point) structure that represents the endpoint of the linear gradient. | -| color1 | Color | A [`Color`](../../../aspose.imaging/color) structure that represents the starting color of the linear gradient. | -| color2 | Color | A [`Color`](../../../aspose.imaging/color) structure that represents the ending color of the linear gradient. | - -### Examples - -The following example shows how to create a grayscale copy of an existing frame and add it to a TIFF image. - -```csharp -[C#] - -string dir = "c:\\temp\\"; - -Aspose.Imaging.ImageOptions.TiffOptions createTiffOptions = new Aspose.Imaging.ImageOptions.TiffOptions(Aspose.Imaging.FileFormats.Tiff.Enums.TiffExpectedFormat.Default); - -// Create a permanent, not temporary file source. -createTiffOptions.Source = new Aspose.Imaging.Sources.FileCreateSource(dir + "multipage.tif", false); -createTiffOptions.Photometric = Aspose.Imaging.FileFormats.Tiff.Enums.TiffPhotometrics.Rgb; -createTiffOptions.BitsPerSample = new ushort[] { 8, 8, 8 }; - -using (Aspose.Imaging.FileFormats.Tiff.TiffImage tiffImage = (Aspose.Imaging.FileFormats.Tiff.TiffImage)Image.Create(createTiffOptions, 100, 100)) -{ - // The linear gradient from the left-top to the right-bottom corner of the image. - Aspose.Imaging.Brushes.LinearGradientBrush brush = - new Aspose.Imaging.Brushes.LinearGradientBrush( - new Aspose.Imaging.Point(0, 0), - new Aspose.Imaging.Point(tiffImage.Width, tiffImage.Height), - Aspose.Imaging.Color.Red, - Aspose.Imaging.Color.Green); - - // Fill the active frame with a linear gradient brush. - Aspose.Imaging.Graphics gr = new Aspose.Imaging.Graphics(tiffImage.ActiveFrame); - gr.FillRectangle(brush, tiffImage.Bounds); - - // Grayscale options - Aspose.Imaging.ImageOptions.TiffOptions createTiffFrameOptions = new Aspose.Imaging.ImageOptions.TiffOptions(Aspose.Imaging.FileFormats.Tiff.Enums.TiffExpectedFormat.Default); - createTiffFrameOptions.Source = new Aspose.Imaging.Sources.StreamSource(new System.IO.MemoryStream()); - createTiffFrameOptions.Photometric = Imaging.FileFormats.Tiff.Enums.TiffPhotometrics.MinIsBlack; - createTiffFrameOptions.BitsPerSample = new ushort[] { 8 }; - - // Create a grayscale copy of the active frame. - // The pixel data is preserved but converted to the desired format. - Aspose.Imaging.FileFormats.Tiff.TiffFrame grayscaleFrame = Aspose.Imaging.FileFormats.Tiff.TiffFrame.CreateFrameFrom(tiffImage.ActiveFrame, createTiffFrameOptions); - - // Add the newly created frame to the TIFF image. - tiffImage.AddFrame(grayscaleFrame); - - tiffImage.Save(); -} -``` +| rect | Rectangle | The rectangle. | +| color1 | Color | The color1. | +| color2 | Color | The color2. | +| angle | Single | The angle. | +| isAngleScalable | Boolean | if set to `true` [is angle scalable]. | ### See Also -* struct [Point](../../../aspose.imaging/point) +* struct [Rectangle](../../../aspose.imaging/rectangle) * struct [Color](../../../aspose.imaging/color) * class [LinearGradientBrush](../../lineargradientbrush) * namespace [Aspose.Imaging.Brushes](../../lineargradientbrush) @@ -96,22 +62,22 @@ using (Aspose.Imaging.FileFormats.Tiff.TiffImage tiffImage = (Aspose.Imaging.Fil ## LinearGradientBrush constructor (3 of 7) -Initializes a new instance of the [`LinearGradientBrush`](../../lineargradientbrush) class with the specified points and colors. +Initializes a new instance of the [`LinearGradientBrush`](../../lineargradientbrush) class. ```csharp -public LinearGradientBrush(PointF point1, PointF point2, Color color1, Color color2) +public LinearGradientBrush(RectangleF rect, Color color1, Color color2, float angle) ``` | Parameter | Type | Description | | --- | --- | --- | -| point1 | PointF | A [`PointF`](../../../aspose.imaging/pointf) structure that represents the starting point of the linear gradient. | -| point2 | PointF | A [`PointF`](../../../aspose.imaging/pointf) structure that represents the endpoint of the linear gradient. | -| color1 | Color | A [`Color`](../../../aspose.imaging/color) structure that represents the starting color of the linear gradient. | -| color2 | Color | A [`Color`](../../../aspose.imaging/color) structure that represents the ending color of the linear gradient. | +| rect | RectangleF | The rectangle. | +| color1 | Color | The color1. | +| color2 | Color | The color2. | +| angle | Single | The angle. | ### See Also -* struct [PointF](../../../aspose.imaging/pointf) +* struct [RectangleF](../../../aspose.imaging/rectanglef) * struct [Color](../../../aspose.imaging/color) * class [LinearGradientBrush](../../lineargradientbrush) * namespace [Aspose.Imaging.Brushes](../../lineargradientbrush) @@ -121,7 +87,7 @@ public LinearGradientBrush(PointF point1, PointF point2, Color color1, Color col ## LinearGradientBrush constructor (4 of 7) -Initializes a new instance of the [`LinearGradientBrush`](../../lineargradientbrush) class based on a rectangle, starting and ending colors, and an orientation angle. +Initializes a new instance of the [`LinearGradientBrush`](../../lineargradientbrush) class. ```csharp public LinearGradientBrush(Rectangle rect, Color color1, Color color2, float angle) @@ -129,10 +95,10 @@ public LinearGradientBrush(Rectangle rect, Color color1, Color color2, float ang | Parameter | Type | Description | | --- | --- | --- | -| rect | Rectangle | A [`RectangleF`](../../../aspose.imaging/rectanglef) structure that specifies the bounds of the linear gradient. | -| color1 | Color | A [`Color`](../../../aspose.imaging/color) structure that represents the starting color for the gradient. | -| color2 | Color | A [`Color`](../../../aspose.imaging/color) structure that represents the ending color for the gradient. | -| angle | Single | The angle, measured in degrees clockwise from the x-axis, of the gradient's orientation line. | +| rect | Rectangle | The rectangle. | +| color1 | Color | The color1. | +| color2 | Color | The color2. | +| angle | Single | The angle. | ### See Also @@ -146,22 +112,22 @@ public LinearGradientBrush(Rectangle rect, Color color1, Color color2, float ang ## LinearGradientBrush constructor (5 of 7) -Initializes a new instance of the [`LinearGradientBrush`](../../lineargradientbrush) class based on a rectangle, starting and ending colors, and an orientation angle. +Initializes a new instance of the [`LinearGradientBrush`](../../lineargradientbrush) class. ```csharp -public LinearGradientBrush(RectangleF rect, Color color1, Color color2, float angle) +public LinearGradientBrush(PointF point1, PointF point2, Color color1, Color color2) ``` | Parameter | Type | Description | | --- | --- | --- | -| rect | RectangleF | A [`RectangleF`](../../../aspose.imaging/rectanglef) structure that specifies the bounds of the linear gradient. | -| color1 | Color | A [`Color`](../../../aspose.imaging/color) structure that represents the starting color for the gradient. | -| color2 | Color | A [`Color`](../../../aspose.imaging/color) structure that represents the ending color for the gradient. | -| angle | Single | The angle, measured in degrees clockwise from the x-axis, of the gradient's orientation line. | +| point1 | PointF | The point1. | +| point2 | PointF | The point2. | +| color1 | Color | The color1. | +| color2 | Color | The color2. | ### See Also -* struct [RectangleF](../../../aspose.imaging/rectanglef) +* struct [PointF](../../../aspose.imaging/pointf) * struct [Color](../../../aspose.imaging/color) * class [LinearGradientBrush](../../lineargradientbrush) * namespace [Aspose.Imaging.Brushes](../../lineargradientbrush) @@ -171,24 +137,69 @@ public LinearGradientBrush(RectangleF rect, Color color1, Color color2, float an ## LinearGradientBrush constructor (6 of 7) -Initializes a new instance of the [`LinearGradientBrush`](../../lineargradientbrush) class based on a rectangle, starting and ending colors, and an orientation angle. +Initializes a new instance of the [`LinearGradientBrush`](../../lineargradientbrush) class. ```csharp -public LinearGradientBrush(Rectangle rect, Color color1, Color color2, float angle, - bool isAngleScalable) +public LinearGradientBrush(Point point1, Point point2, Color color1, Color color2) ``` | Parameter | Type | Description | | --- | --- | --- | -| rect | Rectangle | A [`RectangleF`](../../../aspose.imaging/rectanglef) structure that specifies the bounds of the linear gradient. | -| color1 | Color | A [`Color`](../../../aspose.imaging/color) structure that represents the starting color for the gradient. | -| color2 | Color | A [`Color`](../../../aspose.imaging/color) structure that represents the ending color for the gradient. | -| angle | Single | The angle, measured in degrees clockwise from the x-axis, of the gradient's orientation line. | -| isAngleScalable | Boolean | if set to `true` the angle is changed during transformations with this [`LinearGradientBrush`](../../lineargradientbrush). | +| point1 | Point | The point1. | +| point2 | Point | The point2. | +| color1 | Color | The color1. | +| color2 | Color | The color2. | + +### Examples + +The following example shows how to create a grayscale copy of an existing frame and add it to a TIFF image. + +```csharp +[C#] + +string dir = "c:\\temp\\"; + +Aspose.Imaging.ImageOptions.TiffOptions createTiffOptions = new Aspose.Imaging.ImageOptions.TiffOptions(Aspose.Imaging.FileFormats.Tiff.Enums.TiffExpectedFormat.Default); + +// Create a permanent, not temporary file source. +createTiffOptions.Source = new Aspose.Imaging.Sources.FileCreateSource(dir + "multipage.tif", false); +createTiffOptions.Photometric = Aspose.Imaging.FileFormats.Tiff.Enums.TiffPhotometrics.Rgb; +createTiffOptions.BitsPerSample = new ushort[] { 8, 8, 8 }; + +using (Aspose.Imaging.FileFormats.Tiff.TiffImage tiffImage = (Aspose.Imaging.FileFormats.Tiff.TiffImage)Image.Create(createTiffOptions, 100, 100)) +{ + // The linear gradient from the left-top to the right-bottom corner of the image. + Aspose.Imaging.Brushes.LinearGradientBrush brush = + new Aspose.Imaging.Brushes.LinearGradientBrush( + new Aspose.Imaging.Point(0, 0), + new Aspose.Imaging.Point(tiffImage.Width, tiffImage.Height), + Aspose.Imaging.Color.Red, + Aspose.Imaging.Color.Green); + + // Fill the active frame with a linear gradient brush. + Aspose.Imaging.Graphics gr = new Aspose.Imaging.Graphics(tiffImage.ActiveFrame); + gr.FillRectangle(brush, tiffImage.Bounds); + + // Grayscale options + Aspose.Imaging.ImageOptions.TiffOptions createTiffFrameOptions = new Aspose.Imaging.ImageOptions.TiffOptions(Aspose.Imaging.FileFormats.Tiff.Enums.TiffExpectedFormat.Default); + createTiffFrameOptions.Source = new Aspose.Imaging.Sources.StreamSource(new System.IO.MemoryStream()); + createTiffFrameOptions.Photometric = Imaging.FileFormats.Tiff.Enums.TiffPhotometrics.MinIsBlack; + createTiffFrameOptions.BitsPerSample = new ushort[] { 8 }; + + // Create a grayscale copy of the active frame. + // The pixel data is preserved but converted to the desired format. + Aspose.Imaging.FileFormats.Tiff.TiffFrame grayscaleFrame = Aspose.Imaging.FileFormats.Tiff.TiffFrame.CreateFrameFrom(tiffImage.ActiveFrame, createTiffFrameOptions); + + // Add the newly created frame to the TIFF image. + tiffImage.AddFrame(grayscaleFrame); + + tiffImage.Save(); +} +``` ### See Also -* struct [Rectangle](../../../aspose.imaging/rectangle) +* struct [Point](../../../aspose.imaging/point) * struct [Color](../../../aspose.imaging/color) * class [LinearGradientBrush](../../lineargradientbrush) * namespace [Aspose.Imaging.Brushes](../../lineargradientbrush) @@ -198,25 +209,14 @@ public LinearGradientBrush(Rectangle rect, Color color1, Color color2, float ang ## LinearGradientBrush constructor (7 of 7) -Initializes a new instance of the [`LinearGradientBrush`](../../lineargradientbrush) class based on a rectangle, starting and ending colors, and an orientation angle. +Initializes a new instance of the [`LinearGradientBrush`](../../lineargradientbrush) class with default parameters. The starting color is black, the ending color is white, the angle is 45 degrees and the rectangle is located in (0,0) with size (1,1). ```csharp -public LinearGradientBrush(RectangleF rect, Color color1, Color color2, float angle, - bool isAngleScalable) +public LinearGradientBrush() ``` -| Parameter | Type | Description | -| --- | --- | --- | -| rect | RectangleF | A [`RectangleF`](../../../aspose.imaging/rectanglef) structure that specifies the bounds of the linear gradient. | -| color1 | Color | A [`Color`](../../../aspose.imaging/color) structure that represents the starting color for the gradient. | -| color2 | Color | A [`Color`](../../../aspose.imaging/color) structure that represents the ending color for the gradient. | -| angle | Single | The angle, measured in degrees clockwise from the x-axis, of the gradient's orientation line. | -| isAngleScalable | Boolean | if set to `true` the angle is changed during transformations with this [`LinearGradientBrush`](../../lineargradientbrush). | - ### See Also -* struct [RectangleF](../../../aspose.imaging/rectanglef) -* struct [Color](../../../aspose.imaging/color) * class [LinearGradientBrush](../../lineargradientbrush) * namespace [Aspose.Imaging.Brushes](../../lineargradientbrush) * assembly [Aspose.Imaging](../../../) diff --git a/english/net/aspose.imaging.brushes/texturebrush/texturebrush/_index.md b/english/net/aspose.imaging.brushes/texturebrush/texturebrush/_index.md index 140ff23172..d87b0448b1 100644 --- a/english/net/aspose.imaging.brushes/texturebrush/texturebrush/_index.md +++ b/english/net/aspose.imaging.brushes/texturebrush/texturebrush/_index.md @@ -8,19 +8,23 @@ url: /net/aspose.imaging.brushes/texturebrush/texturebrush/ --- ## TextureBrush constructor (1 of 8) -Initializes a new instance of the [`TextureBrush`](../../texturebrush) class that uses the specified image. +Initializes a new instance of the [`TextureBrush`](../../texturebrush) class that uses the specified image, bounding rectangle, and image attributes. ```csharp -public TextureBrush(Image image) +public TextureBrush(Image image, Rectangle destinationRectangle, ImageAttributes imageAttributes) ``` | Parameter | Type | Description | | --- | --- | --- | | image | Image | The [`Image`](../../../aspose.imaging/image) object with which this [`TextureBrush`](../../texturebrush) object fills interiors. | +| destinationRectangle | Rectangle | A [`Rectangle`](../../../aspose.imaging/rectangle) structure that represents the bounding rectangle for this [`TextureBrush`](../../texturebrush) object. | +| imageAttributes | ImageAttributes | An [`ImageAttributes`](../../../aspose.imaging/imageattributes) object that contains additional information about the image used by this [`TextureBrush`](../../texturebrush) object. | ### See Also * class [Image](../../../aspose.imaging/image) +* struct [Rectangle](../../../aspose.imaging/rectangle) +* class [ImageAttributes](../../../aspose.imaging/imageattributes) * class [TextureBrush](../../texturebrush) * namespace [Aspose.Imaging.Brushes](../../texturebrush) * assembly [Aspose.Imaging](../../../) @@ -29,21 +33,21 @@ public TextureBrush(Image image) ## TextureBrush constructor (2 of 8) -Initializes a new instance of the [`TextureBrush`](../../texturebrush) class that uses the specified image and wrap mode. +Initializes a new instance of the [`TextureBrush`](../../texturebrush) class that uses the specified image and bounding rectangle. ```csharp -public TextureBrush(Image image, WrapMode wrapMode) +public TextureBrush(Image image, Rectangle destinationRectangle) ``` | Parameter | Type | Description | | --- | --- | --- | | image | Image | The [`Image`](../../../aspose.imaging/image) object with which this [`TextureBrush`](../../texturebrush) object fills interiors. | -| wrapMode | WrapMode | A [`WrapMode`](../../../aspose.imaging/wrapmode) enumeration that specifies how this [`TextureBrush`](../../texturebrush) object is tiled. | +| destinationRectangle | Rectangle | A [`Rectangle`](../../../aspose.imaging/rectangle) structure that represents the bounding rectangle for this [`TextureBrush`](../../texturebrush) object. | ### See Also * class [Image](../../../aspose.imaging/image) -* enum [WrapMode](../../../aspose.imaging/wrapmode) +* struct [Rectangle](../../../aspose.imaging/rectangle) * class [TextureBrush](../../texturebrush) * namespace [Aspose.Imaging.Brushes](../../texturebrush) * assembly [Aspose.Imaging](../../../) @@ -52,22 +56,20 @@ public TextureBrush(Image image, WrapMode wrapMode) ## TextureBrush constructor (3 of 8) -Initializes a new instance of the [`TextureBrush`](../../texturebrush) class that uses the specified image, wrap mode, and bounding rectangle. +Initializes a new instance of the [`TextureBrush`](../../texturebrush) class that uses the specified image and bounding rectangle. ```csharp -public TextureBrush(Image image, WrapMode wrapMode, RectangleF destinationRectangle) +public TextureBrush(Image image, RectangleF destinationRectangle) ``` | Parameter | Type | Description | | --- | --- | --- | | image | Image | The [`Image`](../../../aspose.imaging/image) object with which this [`TextureBrush`](../../texturebrush) object fills interiors. | -| wrapMode | WrapMode | A [`WrapMode`](../../../aspose.imaging/wrapmode) enumeration that specifies how this [`TextureBrush`](../../texturebrush) object is tiled. | | destinationRectangle | RectangleF | A [`RectangleF`](../../../aspose.imaging/rectanglef) structure that represents the bounding rectangle for this [`TextureBrush`](../../texturebrush) object. | ### See Also * class [Image](../../../aspose.imaging/image) -* enum [WrapMode](../../../aspose.imaging/wrapmode) * struct [RectangleF](../../../aspose.imaging/rectanglef) * class [TextureBrush](../../texturebrush) * namespace [Aspose.Imaging.Brushes](../../texturebrush) @@ -102,20 +104,22 @@ public TextureBrush(Image image, WrapMode wrapMode, Rectangle destinationRectang ## TextureBrush constructor (5 of 8) -Initializes a new instance of the [`TextureBrush`](../../texturebrush) class that uses the specified image and bounding rectangle. +Initializes a new instance of the [`TextureBrush`](../../texturebrush) class that uses the specified image, wrap mode, and bounding rectangle. ```csharp -public TextureBrush(Image image, RectangleF destinationRectangle) +public TextureBrush(Image image, WrapMode wrapMode, RectangleF destinationRectangle) ``` | Parameter | Type | Description | | --- | --- | --- | | image | Image | The [`Image`](../../../aspose.imaging/image) object with which this [`TextureBrush`](../../texturebrush) object fills interiors. | +| wrapMode | WrapMode | A [`WrapMode`](../../../aspose.imaging/wrapmode) enumeration that specifies how this [`TextureBrush`](../../texturebrush) object is tiled. | | destinationRectangle | RectangleF | A [`RectangleF`](../../../aspose.imaging/rectanglef) structure that represents the bounding rectangle for this [`TextureBrush`](../../texturebrush) object. | ### See Also * class [Image](../../../aspose.imaging/image) +* enum [WrapMode](../../../aspose.imaging/wrapmode) * struct [RectangleF](../../../aspose.imaging/rectanglef) * class [TextureBrush](../../texturebrush) * namespace [Aspose.Imaging.Brushes](../../texturebrush) @@ -125,23 +129,21 @@ public TextureBrush(Image image, RectangleF destinationRectangle) ## TextureBrush constructor (6 of 8) -Initializes a new instance of the [`TextureBrush`](../../texturebrush) class that uses the specified image, bounding rectangle, and image attributes. +Initializes a new instance of the [`TextureBrush`](../../texturebrush) class that uses the specified image and wrap mode. ```csharp -public TextureBrush(Image image, RectangleF destinationRectangle, ImageAttributes imageAttributes) +public TextureBrush(Image image, WrapMode wrapMode) ``` | Parameter | Type | Description | | --- | --- | --- | | image | Image | The [`Image`](../../../aspose.imaging/image) object with which this [`TextureBrush`](../../texturebrush) object fills interiors. | -| destinationRectangle | RectangleF | A [`RectangleF`](../../../aspose.imaging/rectanglef) structure that represents the bounding rectangle for this [`TextureBrush`](../../texturebrush) object. | -| imageAttributes | ImageAttributes | An [`ImageAttributes`](../../../aspose.imaging/imageattributes) object that contains additional information about the image used by this [`TextureBrush`](../../texturebrush) object. | +| wrapMode | WrapMode | A [`WrapMode`](../../../aspose.imaging/wrapmode) enumeration that specifies how this [`TextureBrush`](../../texturebrush) object is tiled. | ### See Also * class [Image](../../../aspose.imaging/image) -* struct [RectangleF](../../../aspose.imaging/rectanglef) -* class [ImageAttributes](../../../aspose.imaging/imageattributes) +* enum [WrapMode](../../../aspose.imaging/wrapmode) * class [TextureBrush](../../texturebrush) * namespace [Aspose.Imaging.Brushes](../../texturebrush) * assembly [Aspose.Imaging](../../../) @@ -150,21 +152,19 @@ public TextureBrush(Image image, RectangleF destinationRectangle, ImageAttribute ## TextureBrush constructor (7 of 8) -Initializes a new instance of the [`TextureBrush`](../../texturebrush) class that uses the specified image and bounding rectangle. +Initializes a new instance of the [`TextureBrush`](../../texturebrush) class that uses the specified image. ```csharp -public TextureBrush(Image image, Rectangle destinationRectangle) +public TextureBrush(Image image) ``` | Parameter | Type | Description | | --- | --- | --- | | image | Image | The [`Image`](../../../aspose.imaging/image) object with which this [`TextureBrush`](../../texturebrush) object fills interiors. | -| destinationRectangle | Rectangle | A [`Rectangle`](../../../aspose.imaging/rectangle) structure that represents the bounding rectangle for this [`TextureBrush`](../../texturebrush) object. | ### See Also * class [Image](../../../aspose.imaging/image) -* struct [Rectangle](../../../aspose.imaging/rectangle) * class [TextureBrush](../../texturebrush) * namespace [Aspose.Imaging.Brushes](../../texturebrush) * assembly [Aspose.Imaging](../../../) @@ -176,19 +176,19 @@ public TextureBrush(Image image, Rectangle destinationRectangle) Initializes a new instance of the [`TextureBrush`](../../texturebrush) class that uses the specified image, bounding rectangle, and image attributes. ```csharp -public TextureBrush(Image image, Rectangle destinationRectangle, ImageAttributes imageAttributes) +public TextureBrush(Image image, RectangleF destinationRectangle, ImageAttributes imageAttributes) ``` | Parameter | Type | Description | | --- | --- | --- | | image | Image | The [`Image`](../../../aspose.imaging/image) object with which this [`TextureBrush`](../../texturebrush) object fills interiors. | -| destinationRectangle | Rectangle | A [`Rectangle`](../../../aspose.imaging/rectangle) structure that represents the bounding rectangle for this [`TextureBrush`](../../texturebrush) object. | +| destinationRectangle | RectangleF | A [`RectangleF`](../../../aspose.imaging/rectanglef) structure that represents the bounding rectangle for this [`TextureBrush`](../../texturebrush) object. | | imageAttributes | ImageAttributes | An [`ImageAttributes`](../../../aspose.imaging/imageattributes) object that contains additional information about the image used by this [`TextureBrush`](../../texturebrush) object. | ### See Also * class [Image](../../../aspose.imaging/image) -* struct [Rectangle](../../../aspose.imaging/rectangle) +* struct [RectangleF](../../../aspose.imaging/rectanglef) * class [ImageAttributes](../../../aspose.imaging/imageattributes) * class [TextureBrush](../../texturebrush) * namespace [Aspose.Imaging.Brushes](../../texturebrush) diff --git a/english/net/aspose.imaging.coreexceptions/indexoutofrangeexception/_index.md b/english/net/aspose.imaging.coreexceptions/indexoutofrangeexception/_index.md index 4cf5a3dedf..ebfcdf9c2e 100644 --- a/english/net/aspose.imaging.coreexceptions/indexoutofrangeexception/_index.md +++ b/english/net/aspose.imaging.coreexceptions/indexoutofrangeexception/_index.md @@ -18,8 +18,8 @@ public class IndexOutOFRangeException : Exception | Name | Description | | --- | --- | -| [IndexOutOFRangeException](indexoutofrangeexception)(string) | Initializes a new instance of the [`CompressorException`](../compressorexception) class. | -| [IndexOutOFRangeException](indexoutofrangeexception)(string, Exception) | Initializes a new instance of the [`CompressorException`](../compressorexception) class. | +| [IndexOutOFRangeException](indexoutofrangeexception)(string) | Initializes a new instance of the [`IndexOutOFRangeException`](../indexoutofrangeexception) class. | +| [IndexOutOFRangeException](indexoutofrangeexception)(string, Exception) | Initializes a new instance of the [`IndexOutOFRangeException`](../indexoutofrangeexception) class. | ### See Also diff --git a/english/net/aspose.imaging.coreexceptions/indexoutofrangeexception/indexoutofrangeexception/_index.md b/english/net/aspose.imaging.coreexceptions/indexoutofrangeexception/indexoutofrangeexception/_index.md index cf7b4d30ba..b54da22519 100644 --- a/english/net/aspose.imaging.coreexceptions/indexoutofrangeexception/indexoutofrangeexception/_index.md +++ b/english/net/aspose.imaging.coreexceptions/indexoutofrangeexception/indexoutofrangeexception/_index.md @@ -8,7 +8,7 @@ url: /net/aspose.imaging.coreexceptions/indexoutofrangeexception/indexoutofrange --- ## IndexOutOFRangeException constructor (1 of 2) -Initializes a new instance of the [`CompressorException`](../../compressorexception) class. +Initializes a new instance of the [`IndexOutOFRangeException`](../../indexoutofrangeexception) class. ```csharp public IndexOutOFRangeException(string message) @@ -28,7 +28,7 @@ public IndexOutOFRangeException(string message) ## IndexOutOFRangeException constructor (2 of 2) -Initializes a new instance of the [`CompressorException`](../../compressorexception) class. +Initializes a new instance of the [`IndexOutOFRangeException`](../../indexoutofrangeexception) class. ```csharp public IndexOutOFRangeException(string message, Exception innerException) diff --git a/english/net/aspose.imaging.fileformats.apng/apngframe/_index.md b/english/net/aspose.imaging.fileformats.apng/apngframe/_index.md index ba21b8c4de..410e80623f 100644 --- a/english/net/aspose.imaging.fileformats.apng/apngframe/_index.md +++ b/english/net/aspose.imaging.fileformats.apng/apngframe/_index.md @@ -137,7 +137,7 @@ public class ApngFrame : RasterCachedImage, IAnimationFrame | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging.fileformats.apng/apngimage/_index.md b/english/net/aspose.imaging.fileformats.apng/apngimage/_index.md index 35ee0b754c..111a2743e9 100644 --- a/english/net/aspose.imaging.fileformats.apng/apngimage/_index.md +++ b/english/net/aspose.imaging.fileformats.apng/apngimage/_index.md @@ -155,7 +155,7 @@ public sealed class ApngImage : RasterCachedMultipageImage, IMultipageImageExt | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging.fileformats.bigtiff/bigtiffimage/_index.md b/english/net/aspose.imaging.fileformats.bigtiff/bigtiffimage/_index.md index 93c85fbb1d..7e5cce0572 100644 --- a/english/net/aspose.imaging.fileformats.bigtiff/bigtiffimage/_index.md +++ b/english/net/aspose.imaging.fileformats.bigtiff/bigtiffimage/_index.md @@ -155,7 +155,7 @@ public sealed class BigTiffImage : TiffImage | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | override [SetResolution](../../aspose.imaging.fileformats.tiff/tiffimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging.fileformats.cdr.objects/cdrtransforms/transforms/_index.md b/english/net/aspose.imaging.fileformats.cdr.objects/cdrtransforms/transforms/_index.md index a36792a6c5..1de85a261d 100644 --- a/english/net/aspose.imaging.fileformats.cdr.objects/cdrtransforms/transforms/_index.md +++ b/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<#=zJ4p5qO$Ex_2u4gse5B9yojg=> Transforms { get; set; } +public List<#=zj2qPjOlOEhQ3SXK9v$7dVpQ=> Transforms { get; set; } ``` ### Property Value diff --git a/english/net/aspose.imaging.fileformats.dicom/dicomimage/_index.md b/english/net/aspose.imaging.fileformats.dicom/dicomimage/_index.md index a45b40dfc0..3ffac91d0b 100644 --- a/english/net/aspose.imaging.fileformats.dicom/dicomimage/_index.md +++ b/english/net/aspose.imaging.fileformats.dicom/dicomimage/_index.md @@ -152,7 +152,7 @@ public sealed class DicomImage : RasterCachedMultipageImage, IMultipageImageExt | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | override [SetResolution](../../aspose.imaging.fileformats.dicom/dicomimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging.fileformats.dicom/dicompage/_index.md b/english/net/aspose.imaging.fileformats.dicom/dicompage/_index.md index 1516502ada..f22de4997e 100644 --- a/english/net/aspose.imaging.fileformats.dicom/dicompage/_index.md +++ b/english/net/aspose.imaging.fileformats.dicom/dicompage/_index.md @@ -139,7 +139,7 @@ public class DicomPage : RasterCachedImage | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging.fileformats.djvu/djvuimage/_index.md b/english/net/aspose.imaging.fileformats.djvu/djvuimage/_index.md index 6b9795a204..4390136208 100644 --- a/english/net/aspose.imaging.fileformats.djvu/djvuimage/_index.md +++ b/english/net/aspose.imaging.fileformats.djvu/djvuimage/_index.md @@ -150,7 +150,7 @@ public sealed class DjvuImage : RasterCachedMultipageImage, INotifyPropertyChang | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging.fileformats.djvu/djvupage/_index.md b/english/net/aspose.imaging.fileformats.djvu/djvupage/_index.md index ac9d8fac0b..d5992eaa7d 100644 --- a/english/net/aspose.imaging.fileformats.djvu/djvupage/_index.md +++ b/english/net/aspose.imaging.fileformats.djvu/djvupage/_index.md @@ -141,7 +141,7 @@ public class DjvuPage : RasterCachedImage, INotifyPropertyChanged | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging.fileformats.djvu/djvuraster/_index.md b/english/net/aspose.imaging.fileformats.djvu/djvuraster/_index.md index ed08c77c23..152e7fcbe2 100644 --- a/english/net/aspose.imaging.fileformats.djvu/djvuraster/_index.md +++ b/english/net/aspose.imaging.fileformats.djvu/djvuraster/_index.md @@ -132,7 +132,7 @@ public sealed class DjvuRaster : RasterCachedImage | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging.fileformats.dng/dngimage/_index.md b/english/net/aspose.imaging.fileformats.dng/dngimage/_index.md index 3ed30ea514..a69370ab2a 100644 --- a/english/net/aspose.imaging.fileformats.dng/dngimage/_index.md +++ b/english/net/aspose.imaging.fileformats.dng/dngimage/_index.md @@ -132,7 +132,7 @@ public class DngImage : RasterCachedImage | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging.fileformats.gif.blocks/gifframeblock/_index.md b/english/net/aspose.imaging.fileformats.gif.blocks/gifframeblock/_index.md index 7a563e270a..5173ca3089 100644 --- a/english/net/aspose.imaging.fileformats.gif.blocks/gifframeblock/_index.md +++ b/english/net/aspose.imaging.fileformats.gif.blocks/gifframeblock/_index.md @@ -162,7 +162,7 @@ public sealed class GifFrameBlock : RasterCachedImage, IAnimationFrame, IGifBloc | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | | static [CreateFlags](../../aspose.imaging.fileformats.gif.blocks/gifframeblock/createflags)(IColorPalette, bool, bool) | Creates the flags. | diff --git a/english/net/aspose.imaging.fileformats.gif/gifimage/_index.md b/english/net/aspose.imaging.fileformats.gif/gifimage/_index.md index efb367c917..402dccca18 100644 --- a/english/net/aspose.imaging.fileformats.gif/gifimage/_index.md +++ b/english/net/aspose.imaging.fileformats.gif/gifimage/_index.md @@ -160,7 +160,7 @@ public sealed class GifImage : RasterCachedMultipageImage, IMultipageImageExt | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging.fileformats.ico/icoimage/_index.md b/english/net/aspose.imaging.fileformats.ico/icoimage/_index.md index bc353f31d9..04abe87989 100644 --- a/english/net/aspose.imaging.fileformats.ico/icoimage/_index.md +++ b/english/net/aspose.imaging.fileformats.ico/icoimage/_index.md @@ -145,7 +145,7 @@ public class IcoImage : RasterCachedMultipageImage, IMultipageImageExt | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging.fileformats.jpeg/jpegimage/_index.md b/english/net/aspose.imaging.fileformats.jpeg/jpegimage/_index.md index fe3f858db9..421beb7a69 100644 --- a/english/net/aspose.imaging.fileformats.jpeg/jpegimage/_index.md +++ b/english/net/aspose.imaging.fileformats.jpeg/jpegimage/_index.md @@ -151,7 +151,7 @@ public sealed class JpegImage : RasterCachedImage | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | override [SetResolution](../../aspose.imaging.fileformats.jpeg/jpegimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging.fileformats.jpeg2000/jpeg2000image/_index.md b/english/net/aspose.imaging.fileformats.jpeg2000/jpeg2000image/_index.md index b37ff6035f..40b3fefc66 100644 --- a/english/net/aspose.imaging.fileformats.jpeg2000/jpeg2000image/_index.md +++ b/english/net/aspose.imaging.fileformats.jpeg2000/jpeg2000image/_index.md @@ -147,7 +147,7 @@ public sealed class Jpeg2000Image : RasterCachedImage | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging.fileformats.png/pngimage/_index.md b/english/net/aspose.imaging.fileformats.png/pngimage/_index.md index c253a22488..2dd5fc2c6a 100644 --- a/english/net/aspose.imaging.fileformats.png/pngimage/_index.md +++ b/english/net/aspose.imaging.fileformats.png/pngimage/_index.md @@ -146,7 +146,7 @@ public class PngImage : RasterCachedImage | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging.fileformats.tga/tgaimage/_index.md b/english/net/aspose.imaging.fileformats.tga/tgaimage/_index.md index 6438884bb8..3650fc823d 100644 --- a/english/net/aspose.imaging.fileformats.tga/tgaimage/_index.md +++ b/english/net/aspose.imaging.fileformats.tga/tgaimage/_index.md @@ -163,7 +163,7 @@ public class TgaImage : RasterCachedImage | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | | [operator ==](../../aspose.imaging.fileformats.tga/tgaimage/op_equality) | Equality comparison. | diff --git a/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/_index.md b/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/_index.md index 23b9ae5f4d..817788a4e5 100644 --- a/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/_index.md +++ b/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 : #=zGp6fQ$qz7RvbyE4g5ZzORL0UXKRpJ_zTZZn6mwKj0jxLipNLWj_$s9c= +public class TiffStreamReader : #=zqWkIG42Q2hkg3$pvATdWFgb2XbwOIlMDBi3hoOYUHpN4JF18j5RVjGQ= ``` ## Constructors diff --git a/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/readlongarray/_index.md b/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/readlongarray/_index.md index 8c26dcfbc1..1016bc9512 100644 --- a/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/readlongarray/_index.md +++ b/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/readlongarray/_index.md @@ -27,7 +27,7 @@ The ulong array. | exception | condition | | --- | --- | -| ArgumentOutOfRangeException | | +| ArgumentOutOfRangeException | Argument out of range | ### See Also diff --git a/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/readulongarray/_index.md b/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/readulongarray/_index.md index abbc7015bb..8da823be81 100644 --- a/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/readulongarray/_index.md +++ b/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamreader/readulongarray/_index.md @@ -27,7 +27,7 @@ The ulong array. | exception | condition | | --- | --- | -| ArgumentOutOfRangeException | | +| ArgumentOutOfRangeException | Argument out of range | ### See Also diff --git a/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamwriter/_index.md b/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamwriter/_index.md index a7190b5ac0..39743ff7df 100644 --- a/english/net/aspose.imaging.fileformats.tiff.filemanagement/tiffstreamwriter/_index.md +++ b/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 : #=zGp6fQ$qz7RvbyE4g5ZzORL0UXKRpJ_zTZZn6mwKj0jxLipNLWj_$s9c= +public class TiffStreamWriter : #=zqWkIG42Q2hkg3$pvATdWFgb2XbwOIlMDBi3hoOYUHpN4JF18j5RVjGQ= ``` ## Constructors diff --git a/english/net/aspose.imaging.fileformats.tiff.tifftagtypes/tifflong8type/value/_index.md b/english/net/aspose.imaging.fileformats.tiff.tifftagtypes/tifflong8type/value/_index.md index 6880cc11b8..2eb337b077 100644 --- a/english/net/aspose.imaging.fileformats.tiff.tifftagtypes/tifflong8type/value/_index.md +++ b/english/net/aspose.imaging.fileformats.tiff.tifftagtypes/tifflong8type/value/_index.md @@ -18,7 +18,7 @@ public override object Value { get; set; } | exception | condition | | --- | --- | -| ArgumentException | | +| ArgumentException | Argument | ### See Also diff --git a/english/net/aspose.imaging.fileformats.tiff.tifftagtypes/tiffslong8type/value/_index.md b/english/net/aspose.imaging.fileformats.tiff.tifftagtypes/tiffslong8type/value/_index.md index 6e00698b80..12088f953f 100644 --- a/english/net/aspose.imaging.fileformats.tiff.tifftagtypes/tiffslong8type/value/_index.md +++ b/english/net/aspose.imaging.fileformats.tiff.tifftagtypes/tiffslong8type/value/_index.md @@ -18,7 +18,7 @@ public override object Value { get; set; } | exception | condition | | --- | --- | -| ArgumentException | | +| ArgumentException | Exception | ### See Also diff --git a/english/net/aspose.imaging.fileformats.tiff.tifftagtypes/tiffunknowntype/getadditionaldatasize/_index.md b/english/net/aspose.imaging.fileformats.tiff.tifftagtypes/tiffunknowntype/getadditionaldatasize/_index.md index 4d6cc9f5aa..b1abb60395 100644 --- a/english/net/aspose.imaging.fileformats.tiff.tifftagtypes/tiffunknowntype/getadditionaldatasize/_index.md +++ b/english/net/aspose.imaging.fileformats.tiff.tifftagtypes/tiffunknowntype/getadditionaldatasize/_index.md @@ -26,7 +26,7 @@ The additional data size in bytes. | exception | condition | | --- | --- | -| NotImplementedException | | +| NotImplementedException | Exception | ### See Also diff --git a/english/net/aspose.imaging.fileformats.tiff.tifftagtypes/tiffunknowntype/value/_index.md b/english/net/aspose.imaging.fileformats.tiff.tifftagtypes/tiffunknowntype/value/_index.md index 31900b98e1..2709ab89fb 100644 --- a/english/net/aspose.imaging.fileformats.tiff.tifftagtypes/tiffunknowntype/value/_index.md +++ b/english/net/aspose.imaging.fileformats.tiff.tifftagtypes/tiffunknowntype/value/_index.md @@ -22,7 +22,7 @@ The value. | exception | condition | | --- | --- | -| NotImplementedException | | +| NotImplementedException | Exception | ### See Also diff --git a/english/net/aspose.imaging.fileformats.tiff/tiffframe/_index.md b/english/net/aspose.imaging.fileformats.tiff/tiffframe/_index.md index 5b9cd783b1..b06d7115de 100644 --- a/english/net/aspose.imaging.fileformats.tiff/tiffframe/_index.md +++ b/english/net/aspose.imaging.fileformats.tiff/tiffframe/_index.md @@ -149,7 +149,7 @@ public sealed class TiffFrame : RasterCachedImage | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging.fileformats.tiff/tiffimage/_index.md b/english/net/aspose.imaging.fileformats.tiff/tiffimage/_index.md index 266c2c66f4..76ab7b0733 100644 --- a/english/net/aspose.imaging.fileformats.tiff/tiffimage/_index.md +++ b/english/net/aspose.imaging.fileformats.tiff/tiffimage/_index.md @@ -155,7 +155,7 @@ public class TiffImage : RasterCachedMultipageImage, IMultipageImageExt | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | override [SetResolution](../../aspose.imaging.fileformats.tiff/tiffimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging.fileformats.tiff/tiffrational/_index.md b/english/net/aspose.imaging.fileformats.tiff/tiffrational/_index.md index b6e889574b..8171611874 100644 --- a/english/net/aspose.imaging.fileformats.tiff/tiffrational/_index.md +++ b/english/net/aspose.imaging.fileformats.tiff/tiffrational/_index.md @@ -39,9 +39,9 @@ public class TiffRational | static [ApproximateFraction](../../aspose.imaging.fileformats.tiff/tiffrational/approximatefraction)(float) | Approximates the provided value to a fraction. | | static [ApproximateFraction](../../aspose.imaging.fileformats.tiff/tiffrational/approximatefraction)(double, double) | Approximates the provided value to a fraction. | | static [ApproximateFraction](../../aspose.imaging.fileformats.tiff/tiffrational/approximatefraction)(float, double) | Approximates the provided value to a fraction. | -| override [Equals](../../aspose.imaging.fileformats.tiff/tiffrational/equals)(object) | Determines whether the specified Object is equal to this instance. | +| override [Equals](../../aspose.imaging.fileformats.tiff/tiffrational/equals)(object) | Determines whether the specified Object, is equal to this instance. | | override [GetHashCode](../../aspose.imaging.fileformats.tiff/tiffrational/gethashcode)() | Returns a hash code for this instance. | -| override [ToString](../../aspose.imaging.fileformats.tiff/tiffrational/tostring)() | Returns a String that represents this instance. | +| override [ToString](../../aspose.imaging.fileformats.tiff/tiffrational/tostring)() | Converts to string. | ## Fields diff --git a/english/net/aspose.imaging.fileformats.tiff/tiffrational/equals/_index.md b/english/net/aspose.imaging.fileformats.tiff/tiffrational/equals/_index.md index 63262bb6f4..6436c5cc58 100644 --- a/english/net/aspose.imaging.fileformats.tiff/tiffrational/equals/_index.md +++ b/english/net/aspose.imaging.fileformats.tiff/tiffrational/equals/_index.md @@ -8,7 +8,7 @@ url: /net/aspose.imaging.fileformats.tiff/tiffrational/equals/ --- ## TiffRational.Equals method -Determines whether the specified Object is equal to this instance. +Determines whether the specified Object, is equal to this instance. ```csharp public override bool Equals(object obj) diff --git a/english/net/aspose.imaging.fileformats.tiff/tiffrational/tostring/_index.md b/english/net/aspose.imaging.fileformats.tiff/tiffrational/tostring/_index.md index 40696ed291..2d713b3e83 100644 --- a/english/net/aspose.imaging.fileformats.tiff/tiffrational/tostring/_index.md +++ b/english/net/aspose.imaging.fileformats.tiff/tiffrational/tostring/_index.md @@ -8,7 +8,7 @@ url: /net/aspose.imaging.fileformats.tiff/tiffrational/tostring/ --- ## TiffRational.ToString method -Returns a String that represents this instance. +Converts to string. ```csharp public override string ToString() diff --git a/english/net/aspose.imaging.fileformats.tiff/tiffsrational/_index.md b/english/net/aspose.imaging.fileformats.tiff/tiffsrational/_index.md index 2eba51232c..87d721495c 100644 --- a/english/net/aspose.imaging.fileformats.tiff/tiffsrational/_index.md +++ b/english/net/aspose.imaging.fileformats.tiff/tiffsrational/_index.md @@ -19,7 +19,7 @@ public class TiffSRational | Name | Description | | --- | --- | | [TiffSRational](tiffsrational)() | Initializes a new instance of the [`TiffSRational`](../tiffsrational) class. | -| [TiffSRational](tiffsrational)(int) | Initializes a new instance of the [`TiffRational`](../tiffrational) class. | +| [TiffSRational](tiffsrational)(int) | Initializes a new instance of the [`TiffSRational`](../tiffsrational) class. | | [TiffSRational](tiffsrational)(int, int) | Initializes a new instance of the [`TiffSRational`](../tiffsrational) class. | ## Properties diff --git a/english/net/aspose.imaging.fileformats.tiff/tiffsrational/tiffsrational/_index.md b/english/net/aspose.imaging.fileformats.tiff/tiffsrational/tiffsrational/_index.md index 050f2b836e..167ff6eb52 100644 --- a/english/net/aspose.imaging.fileformats.tiff/tiffsrational/tiffsrational/_index.md +++ b/english/net/aspose.imaging.fileformats.tiff/tiffsrational/tiffsrational/_index.md @@ -24,7 +24,7 @@ public TiffSRational() ## TiffSRational constructor (2 of 3) -Initializes a new instance of the [`TiffRational`](../../tiffrational) class. +Initializes a new instance of the [`TiffSRational`](../../tiffsrational) class. ```csharp public TiffSRational(int value) @@ -32,11 +32,7 @@ public TiffSRational(int value) | Parameter | Type | Description | | --- | --- | --- | -| value | Int32 | The nominator value. | - -### Remarks - -The nominator will be used as the value specified and denominator will be equal 1. +| value | Int32 | The value. | ### See Also diff --git a/english/net/aspose.imaging.fileformats.webp/webpframeblock/_index.md b/english/net/aspose.imaging.fileformats.webp/webpframeblock/_index.md index 2d4af3e5f9..e83ea14119 100644 --- a/english/net/aspose.imaging.fileformats.webp/webpframeblock/_index.md +++ b/english/net/aspose.imaging.fileformats.webp/webpframeblock/_index.md @@ -147,7 +147,7 @@ public class WebPFrameBlock : RasterCachedImage, IAnimationFrame, IFrame | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging.fileformats.webp/webpimage/_index.md b/english/net/aspose.imaging.fileformats.webp/webpimage/_index.md index 6f2363abd2..8ddfe70995 100644 --- a/english/net/aspose.imaging.fileformats.webp/webpimage/_index.md +++ b/english/net/aspose.imaging.fileformats.webp/webpimage/_index.md @@ -153,7 +153,7 @@ public sealed class WebPImage : RasterCachedMultipageImage, IMultipageImageExt | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../../aspose.imaging/rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging.magicwand.imagemasks/featheringsettings/_index.md b/english/net/aspose.imaging.magicwand.imagemasks/featheringsettings/_index.md index c49737c974..60eb5e5801 100644 --- a/english/net/aspose.imaging.magicwand.imagemasks/featheringsettings/_index.md +++ b/english/net/aspose.imaging.magicwand.imagemasks/featheringsettings/_index.md @@ -27,6 +27,39 @@ public class FeatheringSettings | [Mode](../../aspose.imaging.magicwand.imagemasks/featheringsettings/mode) { get; set; } | Gets or sets the feathering algorithm mode. | | [Size](../../aspose.imaging.magicwand.imagemasks/featheringsettings/size) { get; set; } | Gets or sets the feathering size. | +### Examples + +The example shows how to select a complicated area of an image using Magic Wand tool and the ability to interact with masks (invert, union, substract). + +```csharp +[C#] + +var imageFilePath = "input.png"; +using (RasterImage image = (RasterImage)Image.Load(inputFilePath)) +{ + // Create a new mask using magic wand tool based on tone and color of pixel (845, 128) + MagicWandTool.Select(image, new MagicWandSettings(845, 128)) + // Union the existing mask with the specified one created by magic wand tool + .Union(new MagicWandSettings(416, 387)) + // Invert the existing mask + .Invert() + // Subtract the specified mask created by magic wand tool with specified threshold from the existing one + .Subtract(new MagicWandSettings(1482, 346) { Threshold = 69 }) + // Subtract four specified rectangle masks from the existing mask one by one + .Subtract(new RectangleMask(0, 0, 800, 150)) + .Subtract(new RectangleMask(0, 380, 600, 220)) + .Subtract(new RectangleMask(930, 520, 110, 40)) + .Subtract(new RectangleMask(1370, 400, 120, 200)) + // Feather mask with specified settings + .GetFeathered(new FeatheringSettings() { Size = 3 }) + // Apply mask to the image + .Apply(); + + // Save image + image.Save(outputFilePath); +} +``` + ### See Also * namespace [Aspose.Imaging.MagicWand.ImageMasks](../../aspose.imaging.magicwand.imagemasks) diff --git a/english/net/aspose.imaging.magicwand.imagemasks/imagegrayscalemask/_index.md b/english/net/aspose.imaging.magicwand.imagemasks/imagegrayscalemask/_index.md index 14b441ef4c..eee6c9bf2c 100644 --- a/english/net/aspose.imaging.magicwand.imagemasks/imagegrayscalemask/_index.md +++ b/english/net/aspose.imaging.magicwand.imagemasks/imagegrayscalemask/_index.md @@ -56,6 +56,39 @@ public class ImageGrayscaleMask : IImageMask | [operator *](../../aspose.imaging.magicwand.imagemasks/imagegrayscalemask/op_multiply) | Intersection of two masks. | | [operator -](../../aspose.imaging.magicwand.imagemasks/imagegrayscalemask/op_subtraction) | Subtract second mask from first. | +### Examples + +The example shows how to select a complicated area of an image using Magic Wand tool and the ability to interact with masks (invert, union, substract). + +```csharp +[C#] + +var imageFilePath = "input.png"; +using (RasterImage image = (RasterImage)Image.Load(inputFilePath)) +{ + // Create a new mask using magic wand tool based on tone and color of pixel (845, 128) + MagicWandTool.Select(image, new MagicWandSettings(845, 128)) + // Union the existing mask with the specified one created by magic wand tool + .Union(new MagicWandSettings(416, 387)) + // Invert the existing mask + .Invert() + // Subtract the specified mask created by magic wand tool with specified threshold from the existing one + .Subtract(new MagicWandSettings(1482, 346) { Threshold = 69 }) + // Subtract four specified rectangle masks from the existing mask one by one + .Subtract(new RectangleMask(0, 0, 800, 150)) + .Subtract(new RectangleMask(0, 380, 600, 220)) + .Subtract(new RectangleMask(930, 520, 110, 40)) + .Subtract(new RectangleMask(1370, 400, 120, 200)) + // Feather mask with specified settings + .GetFeathered(new FeatheringSettings() { Size = 3 }) + // Apply mask to the image + .Apply(); + + // Save image + image.Save(outputFilePath); +} +``` + ### See Also * interface [IImageMask](../iimagemask) diff --git a/english/net/aspose.imaging.magicwand.imagemasks/imagemask/_index.md b/english/net/aspose.imaging.magicwand.imagemasks/imagemask/_index.md index 68d614a55e..d9688d75a3 100644 --- a/english/net/aspose.imaging.magicwand.imagemasks/imagemask/_index.md +++ b/english/net/aspose.imaging.magicwand.imagemasks/imagemask/_index.md @@ -60,6 +60,39 @@ public abstract class ImageMask : IImageMask | [operator *](../../aspose.imaging.magicwand.imagemasks/imagemask/op_multiply) | Intersection of two masks. | | [operator -](../../aspose.imaging.magicwand.imagemasks/imagemask/op_subtraction) | Subtract second mask from first. | +### Examples + +The example shows how to select a complicated area of an image using Magic Wand tool and the ability to interact with masks (invert, union, substract). + +```csharp +[C#] + +var imageFilePath = "input.png"; +using (RasterImage image = (RasterImage)Image.Load(inputFilePath)) +{ + // Create a new mask using magic wand tool based on tone and color of pixel (845, 128) + MagicWandTool.Select(image, new MagicWandSettings(845, 128)) + // Union the existing mask with the specified one created by magic wand tool + .Union(new MagicWandSettings(416, 387)) + // Invert the existing mask + .Invert() + // Subtract the specified mask created by magic wand tool with specified threshold from the existing one + .Subtract(new MagicWandSettings(1482, 346) { Threshold = 69 }) + // Subtract four specified rectangle masks from the existing mask one by one + .Subtract(new RectangleMask(0, 0, 800, 150)) + .Subtract(new RectangleMask(0, 380, 600, 220)) + .Subtract(new RectangleMask(930, 520, 110, 40)) + .Subtract(new RectangleMask(1370, 400, 120, 200)) + // Feather mask with specified settings + .GetFeathered(new FeatheringSettings() { Size = 3 }) + // Apply mask to the image + .Apply(); + + // Save image + image.Save(outputFilePath); +} +``` + ### See Also * interface [IImageMask](../iimagemask) diff --git a/english/net/aspose.imaging.magicwand.imagemasks/imagemask/apply/_index.md b/english/net/aspose.imaging.magicwand.imagemasks/imagemask/apply/_index.md index 38b5dd1b87..f046223072 100644 --- a/english/net/aspose.imaging.magicwand.imagemasks/imagemask/apply/_index.md +++ b/english/net/aspose.imaging.magicwand.imagemasks/imagemask/apply/_index.md @@ -20,6 +20,30 @@ public void Apply() | --- | --- | | NullReferenceException | Thrown when the source image is not defined. | +### Examples + +The example shows how to select a simple area of an image based on tone and color of any pixel using Magic Wand tool. + +```csharp +[C#] + +var imageFilePath = "input.png"; +using (RasterImage image = (RasterImage)Image.Load(inputFilePath)) +{ + // Create a new mask using magic wand tool based on tone and color of pixel (120, 100) with custom threshold equal to 150 + MagicWandTool + .Select(image, new MagicWandSettings(120, 100) { Threshold = 150 }) + // Apply mask to the image + .Apply(); + + // Save image with forced transparency color type option + image.Save(outputFilePath, new ImageOptions.PngOptions() + { + ColorType = PngColorType.TruecolorWithAlpha + }); +} +``` + ### See Also * class [ImageMask](../../imagemask) diff --git a/english/net/aspose.imaging.magicwand.imagemasks/imagemask/invert/_index.md b/english/net/aspose.imaging.magicwand.imagemasks/imagemask/invert/_index.md index b598b0015f..16c486a9d8 100644 --- a/english/net/aspose.imaging.magicwand.imagemasks/imagemask/invert/_index.md +++ b/english/net/aspose.imaging.magicwand.imagemasks/imagemask/invert/_index.md @@ -18,6 +18,39 @@ public ImageBitMask Invert() New [`ImageBitMask`](../../imagebitmask). +### Examples + +The example shows how to select a complicated area of an image using Magic Wand tool and the ability to interact with masks (invert, union, substract). + +```csharp +[C#] + +var imageFilePath = "input.png"; +using (RasterImage image = (RasterImage)Image.Load(inputFilePath)) +{ + // Create a new mask using magic wand tool based on tone and color of pixel (845, 128) + MagicWandTool.Select(image, new MagicWandSettings(845, 128)) + // Union the existing mask with the specified one created by magic wand tool + .Union(new MagicWandSettings(416, 387)) + // Invert the existing mask + .Invert() + // Subtract the specified mask created by magic wand tool with specified threshold from the existing one + .Subtract(new MagicWandSettings(1482, 346) { Threshold = 69 }) + // Subtract four specified rectangle masks from the existing mask one by one + .Subtract(new RectangleMask(0, 0, 800, 150)) + .Subtract(new RectangleMask(0, 380, 600, 220)) + .Subtract(new RectangleMask(930, 520, 110, 40)) + .Subtract(new RectangleMask(1370, 400, 120, 200)) + // Feather mask with specified settings + .GetFeathered(new FeatheringSettings() { Size = 3 }) + // Apply mask to the image + .Apply(); + + // Save image + image.Save(outputFilePath); +} +``` + ### See Also * class [ImageBitMask](../../imagebitmask) diff --git a/english/net/aspose.imaging.magicwand.imagemasks/imagemask/subtract/_index.md b/english/net/aspose.imaging.magicwand.imagemasks/imagemask/subtract/_index.md index f28814ad24..720a00442b 100644 --- a/english/net/aspose.imaging.magicwand.imagemasks/imagemask/subtract/_index.md +++ b/english/net/aspose.imaging.magicwand.imagemasks/imagemask/subtract/_index.md @@ -22,6 +22,39 @@ public ImageBitMask Subtract(ImageMask mask) New [`ImageBitMask`](../../imagebitmask). +### Examples + +The example shows how to select a complicated area of an image using Magic Wand tool and the ability to interact with masks (invert, union, substract). + +```csharp +[C#] + +var imageFilePath = "input.png"; +using (RasterImage image = (RasterImage)Image.Load(inputFilePath)) +{ + // Create a new mask using magic wand tool based on tone and color of pixel (845, 128) + MagicWandTool.Select(image, new MagicWandSettings(845, 128)) + // Union the existing mask with the specified one created by magic wand tool + .Union(new MagicWandSettings(416, 387)) + // Invert the existing mask + .Invert() + // Subtract the specified mask created by magic wand tool with specified threshold from the existing one + .Subtract(new MagicWandSettings(1482, 346) { Threshold = 69 }) + // Subtract four specified rectangle masks from the existing mask one by one + .Subtract(new RectangleMask(0, 0, 800, 150)) + .Subtract(new RectangleMask(0, 380, 600, 220)) + .Subtract(new RectangleMask(930, 520, 110, 40)) + .Subtract(new RectangleMask(1370, 400, 120, 200)) + // Feather mask with specified settings + .GetFeathered(new FeatheringSettings() { Size = 3 }) + // Apply mask to the image + .Apply(); + + // Save image + image.Save(outputFilePath); +} +``` + ### See Also * class [ImageBitMask](../../imagebitmask) diff --git a/english/net/aspose.imaging.magicwand.imagemasks/imagemask/union/_index.md b/english/net/aspose.imaging.magicwand.imagemasks/imagemask/union/_index.md index d640157366..535c2e1361 100644 --- a/english/net/aspose.imaging.magicwand.imagemasks/imagemask/union/_index.md +++ b/english/net/aspose.imaging.magicwand.imagemasks/imagemask/union/_index.md @@ -22,6 +22,39 @@ public ImageBitMask Union(ImageMask mask) New [`ImageBitMask`](../../imagebitmask). +### Examples + +The example shows how to select a complicated area of an image using Magic Wand tool and the ability to interact with masks (invert, union, substract). + +```csharp +[C#] + +var imageFilePath = "input.png"; +using (RasterImage image = (RasterImage)Image.Load(inputFilePath)) +{ + // Create a new mask using magic wand tool based on tone and color of pixel (845, 128) + MagicWandTool.Select(image, new MagicWandSettings(845, 128)) + // Union the existing mask with the specified one created by magic wand tool + .Union(new MagicWandSettings(416, 387)) + // Invert the existing mask + .Invert() + // Subtract the specified mask created by magic wand tool with specified threshold from the existing one + .Subtract(new MagicWandSettings(1482, 346) { Threshold = 69 }) + // Subtract four specified rectangle masks from the existing mask one by one + .Subtract(new RectangleMask(0, 0, 800, 150)) + .Subtract(new RectangleMask(0, 380, 600, 220)) + .Subtract(new RectangleMask(930, 520, 110, 40)) + .Subtract(new RectangleMask(1370, 400, 120, 200)) + // Feather mask with specified settings + .GetFeathered(new FeatheringSettings() { Size = 3 }) + // Apply mask to the image + .Apply(); + + // Save image + image.Save(outputFilePath); +} +``` + ### See Also * class [ImageBitMask](../../imagebitmask) diff --git a/english/net/aspose.imaging.magicwand.imagemasks/rectanglemask/_index.md b/english/net/aspose.imaging.magicwand.imagemasks/rectanglemask/_index.md index 0d4010b2f7..2f38f905fd 100644 --- a/english/net/aspose.imaging.magicwand.imagemasks/rectanglemask/_index.md +++ b/english/net/aspose.imaging.magicwand.imagemasks/rectanglemask/_index.md @@ -61,6 +61,39 @@ public class RectangleMask : ImageMask | [Union](../../aspose.imaging.magicwand.imagemasks/imagemask/union)(MagicWandSettings) | Gets the union of the current mask with the result of magic wand selection applied to the source of the mask. | | [Union](../../aspose.imaging.magicwand.imagemasks/imagemask/union)(RasterImage, MagicWandSettings) | Gets the union of the current mask with the result of magic wand selection applied to the provided image. | +### Examples + +The example shows how to select a complicated area of an image using Magic Wand tool and the ability to interact with masks (invert, union, substract). + +```csharp +[C#] + +var imageFilePath = "input.png"; +using (RasterImage image = (RasterImage)Image.Load(inputFilePath)) +{ + // Create a new mask using magic wand tool based on tone and color of pixel (845, 128) + MagicWandTool.Select(image, new MagicWandSettings(845, 128)) + // Union the existing mask with the specified one created by magic wand tool + .Union(new MagicWandSettings(416, 387)) + // Invert the existing mask + .Invert() + // Subtract the specified mask created by magic wand tool with specified threshold from the existing one + .Subtract(new MagicWandSettings(1482, 346) { Threshold = 69 }) + // Subtract four specified rectangle masks from the existing mask one by one + .Subtract(new RectangleMask(0, 0, 800, 150)) + .Subtract(new RectangleMask(0, 380, 600, 220)) + .Subtract(new RectangleMask(930, 520, 110, 40)) + .Subtract(new RectangleMask(1370, 400, 120, 200)) + // Feather mask with specified settings + .GetFeathered(new FeatheringSettings() { Size = 3 }) + // Apply mask to the image + .Apply(); + + // Save image + image.Save(outputFilePath); +} +``` + ### See Also * class [ImageMask](../imagemask) diff --git a/english/net/aspose.imaging.magicwand/magicwandsettings/_index.md b/english/net/aspose.imaging.magicwand/magicwandsettings/_index.md index 09db5268c2..2a38768c61 100644 --- a/english/net/aspose.imaging.magicwand/magicwandsettings/_index.md +++ b/english/net/aspose.imaging.magicwand/magicwandsettings/_index.md @@ -33,6 +33,61 @@ public class MagicWandSettings | [Point](../../aspose.imaging.magicwand/magicwandsettings/point) { get; } | Gets or sets the reference point for algorithm work. | | [Threshold](../../aspose.imaging.magicwand/magicwandsettings/threshold) { get; set; } | Gets or sets the tolerance level for pixels color comparison. | +### Examples + +The example shows how to select a simple area of an image based on tone and color of any pixel using Magic Wand tool. + +```csharp +[C#] + +var imageFilePath = "input.png"; +using (RasterImage image = (RasterImage)Image.Load(inputFilePath)) +{ + // Create a new mask using magic wand tool based on tone and color of pixel (120, 100) with custom threshold equal to 150 + MagicWandTool + .Select(image, new MagicWandSettings(120, 100) { Threshold = 150 }) + // Apply mask to the image + .Apply(); + + // Save image with forced transparency color type option + image.Save(outputFilePath, new ImageOptions.PngOptions() + { + ColorType = PngColorType.TruecolorWithAlpha + }); +} +``` + +The example shows how to select a complicated area of an image using Magic Wand tool and the ability to interact with masks (invert, union, substract). + +```csharp +[C#] + +var imageFilePath = "input.png"; +using (RasterImage image = (RasterImage)Image.Load(inputFilePath)) +{ + // Create a new mask using magic wand tool based on tone and color of pixel (845, 128) + MagicWandTool.Select(image, new MagicWandSettings(845, 128)) + // Union the existing mask with the specified one created by magic wand tool + .Union(new MagicWandSettings(416, 387)) + // Invert the existing mask + .Invert() + // Subtract the specified mask created by magic wand tool with specified threshold from the existing one + .Subtract(new MagicWandSettings(1482, 346) { Threshold = 69 }) + // Subtract four specified rectangle masks from the existing mask one by one + .Subtract(new RectangleMask(0, 0, 800, 150)) + .Subtract(new RectangleMask(0, 380, 600, 220)) + .Subtract(new RectangleMask(930, 520, 110, 40)) + .Subtract(new RectangleMask(1370, 400, 120, 200)) + // Feather mask with specified settings + .GetFeathered(new FeatheringSettings() { Size = 3 }) + // Apply mask to the image + .Apply(); + + // Save image + image.Save(outputFilePath); +} +``` + ### See Also * namespace [Aspose.Imaging.MagicWand](../../aspose.imaging.magicwand) diff --git a/english/net/aspose.imaging.magicwand/magicwandtool/_index.md b/english/net/aspose.imaging.magicwand/magicwandtool/_index.md index cf38820661..26cd95cd0a 100644 --- a/english/net/aspose.imaging.magicwand/magicwandtool/_index.md +++ b/english/net/aspose.imaging.magicwand/magicwandtool/_index.md @@ -21,6 +21,61 @@ public class MagicWandTool : IPartialArgb32PixelLoader | [Process](../../aspose.imaging.magicwand/magicwandtool/process)(Rectangle, int[], Point, Point) | Processes the loaded pixels . | | static [Select](../../aspose.imaging.magicwand/magicwandtool/select)(RasterImage, MagicWandSettings) | Creates a new [`ImageBitMask`](../../aspose.imaging.magicwand.imagemasks/imagebitmask) based on [`MagicWandSettings`](../magicwandsettings) and source [`RasterImage`](../../aspose.imaging/rasterimage). | +### Examples + +The example shows how to select a simple area of an image based on tone and color of any pixel using Magic Wand tool. + +```csharp +[C#] + +var imageFilePath = "input.png"; +using (RasterImage image = (RasterImage)Image.Load(inputFilePath)) +{ + // Create a new mask using magic wand tool based on tone and color of pixel (120, 100) with custom threshold equal to 150 + MagicWandTool + .Select(image, new MagicWandSettings(120, 100) { Threshold = 150 }) + // Apply mask to the image + .Apply(); + + // Save image with forced transparency color type option + image.Save(outputFilePath, new ImageOptions.PngOptions() + { + ColorType = PngColorType.TruecolorWithAlpha + }); +} +``` + +The example shows how to select a complicated area of an image using Magic Wand tool and the ability to interact with masks (invert, union, substract). + +```csharp +[C#] + +var imageFilePath = "input.png"; +using (RasterImage image = (RasterImage)Image.Load(inputFilePath)) +{ + // Create a new mask using magic wand tool based on tone and color of pixel (845, 128) + MagicWandTool.Select(image, new MagicWandSettings(845, 128)) + // Union the existing mask with the specified one created by magic wand tool + .Union(new MagicWandSettings(416, 387)) + // Invert the existing mask + .Invert() + // Subtract the specified mask created by magic wand tool with specified threshold from the existing one + .Subtract(new MagicWandSettings(1482, 346) { Threshold = 69 }) + // Subtract four specified rectangle masks from the existing mask one by one + .Subtract(new RectangleMask(0, 0, 800, 150)) + .Subtract(new RectangleMask(0, 380, 600, 220)) + .Subtract(new RectangleMask(930, 520, 110, 40)) + .Subtract(new RectangleMask(1370, 400, 120, 200)) + // Feather mask with specified settings + .GetFeathered(new FeatheringSettings() { Size = 3 }) + // Apply mask to the image + .Apply(); + + // Save image + image.Save(outputFilePath); +} +``` + ### See Also * interface [IPartialArgb32PixelLoader](../../aspose.imaging/ipartialargb32pixelloader) diff --git a/english/net/aspose.imaging/license/_index.md b/english/net/aspose.imaging/license/_index.md index a7f0dc3d1d..e6ec9931e5 100644 --- a/english/net/aspose.imaging/license/_index.md +++ b/english/net/aspose.imaging/license/_index.md @@ -18,7 +18,7 @@ public class License | Name | Description | | --- | --- | -| [License](license)() | Initializes a new instance of this class. | +| [License](license)() | Initializes a new instance of the [`License`](../license) class. Initializes a new instance of this class. | ## Methods diff --git a/english/net/aspose.imaging/license/license/_index.md b/english/net/aspose.imaging/license/license/_index.md index c8af3a5f04..d58df8a8b5 100644 --- a/english/net/aspose.imaging/license/license/_index.md +++ b/english/net/aspose.imaging/license/license/_index.md @@ -8,7 +8,7 @@ url: /net/aspose.imaging/license/license/ --- ## License constructor -Initializes a new instance of this class. +Initializes a new instance of the [`License`](../../license) class. Initializes a new instance of this class. ```csharp public License() diff --git a/english/net/aspose.imaging/rastercachedimage/_index.md b/english/net/aspose.imaging/rastercachedimage/_index.md index c25ceb38d4..360946bd54 100644 --- a/english/net/aspose.imaging/rastercachedimage/_index.md +++ b/english/net/aspose.imaging/rastercachedimage/_index.md @@ -131,7 +131,7 @@ public abstract class RasterCachedImage : RasterImage | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging/rastercachedmultipageimage/_index.md b/english/net/aspose.imaging/rastercachedmultipageimage/_index.md index 2cc1ad7638..d72252062e 100644 --- a/english/net/aspose.imaging/rastercachedmultipageimage/_index.md +++ b/english/net/aspose.imaging/rastercachedmultipageimage/_index.md @@ -134,7 +134,7 @@ public abstract class RasterCachedMultipageImage : RasterCachedImage, IMultipage | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging/rasterimage/_index.md b/english/net/aspose.imaging/rasterimage/_index.md index cd31493b28..69a4da5586 100644 --- a/english/net/aspose.imaging/rasterimage/_index.md +++ b/english/net/aspose.imaging/rasterimage/_index.md @@ -131,7 +131,7 @@ public abstract class RasterImage : Image, IRasterImageArgb32PixelLoader | override [SetPalette](../../aspose.imaging/rasterimage/setpalette)(IColorPalette, bool) | Sets the image palette. | | [SetPixel](../../aspose.imaging/rasterimage/setpixel)(int, int, Color) | Sets an image pixel for the specified position. | | virtual [SetResolution](../../aspose.imaging/rasterimage/setresolution)(double, double) | Sets the resolution for this [`RasterImage`](../rasterimage). | -| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. | +| virtual [ToBitmap](../../aspose.imaging/rasterimage/tobitmap)() | Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher | | [WriteArgb32ScanLine](../../aspose.imaging/rasterimage/writeargb32scanline)(int, int[]) | Writes the whole scan line to the specified scan line index. | | [WriteScanLine](../../aspose.imaging/rasterimage/writescanline)(int, Color[]) | Writes the whole scan line to the specified scan line index. | diff --git a/english/net/aspose.imaging/rasterimage/tobitmap/_index.md b/english/net/aspose.imaging/rasterimage/tobitmap/_index.md index 2b8f9df9e1..772575c46f 100644 --- a/english/net/aspose.imaging/rasterimage/tobitmap/_index.md +++ b/english/net/aspose.imaging/rasterimage/tobitmap/_index.md @@ -8,7 +8,7 @@ url: /net/aspose.imaging/rasterimage/tobitmap/ --- ## RasterImage.ToBitmap method -Converts raster image to the bitmap. +Converts raster image to the bitmap. This method is not supported in versions from .Net7.0 and higher ```csharp public virtual Bitmap ToBitmap()