ArgbImage Constructor (Size, InterpolationMode) |
Creates and initializes an ArgbImage.
Namespace:
Ptv.XServer.Controls.Map.Tools.Reprojection
Assembly:
Ptv.XServer.Controls.Map (in Ptv.XServer.Controls.Map.dll) Version: 1.7.10.0
Syntax public ArgbImage(
Size size,
InterpolationMode mode = InterpolationMode.Bicubic
)
Public Sub New (
size As Size,
Optional mode As InterpolationMode = InterpolationMode.Bicubic
)
public:
ArgbImage(
Size size,
InterpolationMode mode = InterpolationMode::Bicubic
)
new :
size : Size *
?mode : InterpolationMode
(* Defaults:
let _mode = defaultArg mode InterpolationMode.Bicubic
*)
-> ArgbImage
Parameters
- size
- Type: System.DrawingSize
The size of the image. - mode (Optional)
- Type: System.Drawing.Drawing2DInterpolationMode
Controls interpolation when reading pixels.
Remarks Image will be made up of fully transparent black pixels.
See Also