|
ToolsLockBitsTResult Method (Bitmap, ImageLockMode, ActionUnmanagedImage)
|
Locks a Bitmap into system memory and executes an operation with a
UnmanagedImage that points to this memory location.
Namespace:
Accord.Imaging
Assembly:
Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax public static void LockBits<TResult>(
this Bitmap input,
ImageLockMode lockMode,
Action<UnmanagedImage> func
)
<ExtensionAttribute>
Public Shared Sub LockBits(Of TResult) (
input As Bitmap,
lockMode As ImageLockMode,
func As Action(Of UnmanagedImage)
)
Request Example
View SourceParameters
- input
- Type: System.DrawingBitmap
- lockMode
- Type: System.Drawing.ImagingImageLockMode
- func
- Type: SystemActionUnmanagedImage
Type Parameters
- TResult
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Bitmap. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also