Как преобразовать объект System.Drawing.Bitmap в объект Vintasoft.Imaging.VintasoftImage?
В этом разделе
Вот C#/VB.NET код, который демонстрирует, как преобразовать объект System.Drawing.Bitmap в Vintasoft.Imaging.VintasoftImage объект:
/// <summary>
/// Converts <see cref="System.Drawing.Bitmap"/> to <see cref="Vintasoft.Imaging.VintasoftImage"/>.
/// </summary>
/// <param name="bitmap"><see cref="System.Drawing.Bitmap"/> to convert.</param>
/// <returns>Result <see cref="Vintasoft.Imaging.VintasoftImage"/>.</returns>
public static Vintasoft.Imaging.VintasoftImage BitmapToVintasoftImage(System.Drawing.Bitmap bitmap)
{
// convert System.Drawing.Bitmap to Vintasoft.Imaging.VintasoftImage
return Vintasoft.Imaging.VintasoftImageGdiExtensions.Create(bitmap, false);
}
''' <summary>
''' Converts <see cref="System.Drawing.Bitmap"/> to <see cref="Vintasoft.Imaging.VintasoftImage"/>.
''' </summary>
''' <param name="bitmap"><see cref="System.Drawing.Bitmap"/> to convert.</param>
''' <returns>Result <see cref="Vintasoft.Imaging.VintasoftImage"/>.</returns>
Public Shared Function BitmapToVintasoftImage(bitmap As System.Drawing.Bitmap) As Vintasoft.Imaging.VintasoftImage
' convert System.Drawing.Bitmap to Vintasoft.Imaging.VintasoftImage
Return Vintasoft.Imaging.VintasoftImageGdiExtensions.Create(bitmap, False)
End Function