Skip to main content

How to Convert HTML To Image using C#

In C# convertion of HTML tag has been converted as a Image. we can achieve this as below:

//Method Call Parameter Source HTML String
CreateImage(source, Width, Height);

 private void CreateImage(string source, int Width, int Height)
{
      var th = new Thread(() =>
            {
                WebBrowser webBrowser = new WebBrowser();
                webBrowser.ScrollBarsEnabled = false;
                webBrowser.Width = Width;
                webBrowser.Height = Height;
                webBrowser.DocumentCompleted +=CreateImage_HtmlData;
                webBrowser.DocumentText = source;
                Application.Run();
            });
            th.SetApartmentState(ApartmentState.STA);
            th.Start();
}


 private void CreateImage_HtmlData(object sender, WebBrowserDocumentCompletedEventArgs e)
{
            using (WebBrowser webBrowser = (WebBrowser)sender)
            {
                using (Bitmap bitmap = new Bitmap(webBrowser.Width, webBrowser.Height))
                {
                    webBrowser.DrawToBitmap(bitmap, new System.Drawing.Rectangle(0, 0,                                                                                                                       bitmap.Width, bitmap.Height));
                    using (MemoryStream byteStream = new MemoryStream())
                    {
                        bitmap.Save(byteStream, ImageFormat.Jpeg);
                        byteStream.Seek(0, SeekOrigin.Begin);
                        Session["HTMLImg"] = File(byteStream.ToArray(), "image/Jpeg", "mychart8.Jpeg");
                    }
                }
            }
}

Comments

Popular posts from this blog

C# IEnumerable and IQueryable

The first important point to remember is IQueryable interface inherits from IEnumerable, so whatever IEnumerable can do, IQueryable can also do.   There are many differences but let us discuss about the one big difference which makes the biggest difference. IEnumerable interface is useful when your collection is loaded using LINQ or Entity framework and you want to apply filter on the collection. Consider the below simple code which uses IEnumerable with entity framework. It’s using a Wherefilter to get records whose EmpId is 2. EmpEntities ent = new EmpEntities(); IEnumerable<Employee> emp = ent.Employees;  IEnumerable<Employee> temp = emp.Where(x => x.Empid == 2).ToList<Employee>(); This where filter is executed on the client side where the IEnumerable code is. In other words all the data is fetched from the database and then at the client its scans and gets the record with EmpId is 2.   But now see the below code we have...