DrawingSpecificsBitmapFromNativeImageT Method
Create
IBitmap object from the image in platform specific format.
Namespace: SMath.DrawingAssembly: SMath.Drawing (in SMath.Drawing.dll) Version: 1.4.0.0
public IBitmap BitmapFromNativeImage<T>(
T image
)
where T : class
Public Function BitmapFromNativeImage(Of T As Class) (
image As T
) As IBitmap
public:
generic<typename T>
where T : ref class
virtual IBitmap^ BitmapFromNativeImage(
T image
) sealed
abstract BitmapFromNativeImage :
image : 'T -> IBitmap when 'T : not struct
override BitmapFromNativeImage :
image : 'T -> IBitmap when 'T : not struct
- image T
- Source platform specific image.
- T
- Type of the image in platform specific format.
IBitmapIBitmap object created from the image.
IDrawingSpecificsBitmapFromNativeImageT(T)