Creates a new Leadtools.RasterImage from the specified existing GDI+ System.Drawing.Image object.
public static RasterImage ConvertFromImage(Image image,ConvertFromImageOptions options)
Public Shared Function ConvertFromImage( _ByVal image As Image, _ByVal options As ConvertFromImageOptions _) As RasterImage
public:static RasterImage^ ConvertFromImage(Image^ image,ConvertFromImageOptions options)
image
The System.Drawing.Image from which to create the new Leadtools.RasterImage.
options
The conversion options.
To convert a LEADTOOLS Leadtools.RasterImage to GDI+ image, use ConvertToImage.
For more information refer to RasterImage and GDI/GDI+.
This example converts between a Leadtools.RasterImage and a GDI+ image.
using Leadtools;using Leadtools.Codecs;using Leadtools.Drawing;using Leadtools.ImageProcessing;using Leadtools.ImageProcessing.Color;public void ConvertFromImageExample(){RasterCodecs codecs = new RasterCodecs();string destFileName = Path.Combine(LEAD_VARS.ImagesDir, "ConvertFromImage.bmp");// Create a GDI+ imageusing (Bitmap btmp = new Bitmap(320, 200)){using (Graphics g = Graphics.FromImage(btmp)){g.Clear(Color.Yellow);g.FillEllipse(Brushes.Red, new Rectangle(0, 0, btmp.Width, btmp.Height));// Convert this image to RasterImageusing (RasterImage image = RasterImageConverter.ConvertFromImage(btmp, ConvertFromImageOptions.None)){// Save itcodecs.Save(image, destFileName, RasterImageFormat.Bmp, 0);}}}// Clean upcodecs.Dispose();}static class LEAD_VARS{public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.DrawingImports Leadtools.ImageProcessingImports Leadtools.ImageProcessing.ColorPublic Sub ConvertFromImageExample()Dim codecs As New RasterCodecs()Dim destFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "ConvertFromImage.bmp")' Create a GDI+ imageUsing btmp As Bitmap = New Bitmap(320, 200)Using g As Graphics = Graphics.FromImage(btmp)g.Clear(Color.Yellow)g.FillEllipse(Brushes.Red, New Rectangle(0, 0, btmp.Width, btmp.Height))' Convert this image to RasterImageUsing image As RasterImage = RasterImageConverter.ConvertFromImage(btmp, ConvertFromImageOptions.None)' Save itcodecs.Save(image, destFileName, RasterImageFormat.Bmp, 0)End UsingEnd UsingEnd Using' Clean upcodecs.Dispose()End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
