How to C#: Imaging
Using Imaging SDK for C#.NET
Winforms Controls
Image Load
Image Access and Modify
Convert to Bitmap
Convert to Bitmap
  |  
Home ›› XImage.Raster ›› C# Raster: Convert to Bitmap

C# Raster - Convert Image to Bitmap in C#.NET


Online C# Guide for Converting Image to Bitmap in .NET Application




Overview



RasterEdge XImage.Raster provide convert RasterImage object to Bitmap. Because pixel format can not be supported fully by Bitmap, if the source image is 1bpp, the output bitmap will convert to index8bpp. pdf js asp net mvc, c# replace text in pdf file, c# tiff images, c# print pdf silently, how to open pdf file in vb.net form, how to search text in pdf using c#.


Related .net document control helps:
asp.net pdf viewer control free: ASP.NET PDF Viewer Control: view, navigate, zoom Adobe PDF document in C# ASP.NET
asp.net office viewer: ASP.NET Office Word Document Viewer: view Word doc files online using C# in ASP.NET MVC web applications
document viewer asp.net c#: ASP.NET Document Viewer using C#: Open, View, Annotate, Redact, Convert document files in ASP.NET using C#, HTML5, JQuer...
asp.net view excel in browser: ASP.NET Excel Viewer in C# Control (MVC & WebForms): view Office Excel document in web browser.
asp.net mvc image viewer: ASP.NET Image Viewer Control(MVC & WebForms): view, annotate, redact, convert image files in html, JQuery
asp.net sharepoint document viewer control: ASP.NET SharePoint Document Viewer: view, annotate, redact documents in SharePoint
asp.net mvc pdf editor control: ASP.NET MVC PDF Viewer & Editor: view, annotate, redact, edit PDF document in C# ASP.NET MVC




Install XImage.Raster in C# Project



Add necessary references to your C#.NET project. Right-click the project and select "Add Reference..." to locate and add the following DLLs as project references; vb net pdf create thumbnail from image, c# pdf viewer open source, extract image from pdf c# pdfs, convert pdf to text file c#, c# convert pdf to svg, pdf to word c# open source, c# pdf add background.


  RasterEdge.Imaging.Basic.dll


  RasterEdge.XImage.Raster.Core.dll


  RasterEdge.XImage.Raster.dll


Use corresponding namespaces;


  using RasterEdge.XImage.Raster;


Note: When you get the error "Could not load file or assembly 'RasterEdge.Imaging.Basic' or any other assembly or one of its dependencies. An attempt to load a program with an incorrect format", please check your configure as follows:

       

       If you are using x64 libraries/dlls, Right click the project -> Properties -> Build -> Platform target: x64.

       

       If using x86, the platform target should be x86.




Convert Image to Bitmap



By following steps below, your can convert RasterImage to bitmap. pdf preview in asp.net c#, open word document file in browser in asp.net, pdf viewer in asp.net web application, pdf editor in asp net mvc, asp.net remove image from pdf page, asp.net web image viewer, mvc display pdf in partial view.


Sample Code (convert single frame image to bitmap):




RasterImage img = new RasterImage("input.jpeg");
Bitmap outputBitmap = img.ToBitmap();




Sample Code (convert multi-frame image to bitmap):




RasterImage img = new RasterImage("input.tiff");
Bitmap[] outputBitmaps = new Bitmap[img.PageCount];
for (int n = 0; n < img.PageCount; n++)
{
   outputBitmaps[n] = img.ToBitmap(n);
}