Convert HTML to GIF in C#

Using Converter.ConvertHTML methods is the most common way to convert HTML code into various formats. With Aspose.HTML for .NET, you can convert HTML to GIF format programmatically with full control over a wide range of conversion parameters.

GIF is a popular image format that supports animated images and frequently used in web publishing. HTML to GIF conversion allows you to save an HTML document as a GIF image. In this article, you find information on how to convert HTML to GIF using ConvertHTML() methods of the Converter class, and how to apply ImageSaveOptions and ICreateStreamProvider parameters.

Online HTML Converter

You can check the Aspose.HTML for .NET API functionality and convert HTML in real-time. Please load HTML from the local file system, select the output format and run the example. In the example, the save options are set by default. You will immediately receive the result as a separate file.

                
            

If you want to convert HTML to GIF programmatically, please see the following C# code examples.

Convert HTML to GIF

Converting a file to another format using the ConvertHTML() method is a sequence of operations among which document loading and saving:

  1. Load an HTML file using the HTMLDocument class ( spring.html).
  2. Create a new ImageSaveOptions object with GIF ImageFormat. By default, the Format property is PNG.
  3. Use the ConvertHTML() method of the Converter class to save HTML as a GIF image. You need to pass the HTMLDocument, ImageSaveOptions, and output file path to the ConvertHTML() method for HTML to GIF conversion.

Please take a look over the following C# code snippet which shows the process of converting HTML to GIF using Aspose.HTML for .NET.

 1// Prepare a path to a source HTML file
 2string documentPath = Path.Combine(DataDir, "spring.html");
 3
 4// Prepare a path to save the converted file
 5string savePath = Path.Combine(OutputDir, "spring-output.gif");
 6
 7// Initialize an HTML document from the file
 8using var document = new HTMLDocument(documentPath);
 9
10// Create an instance of the ImageSaveOptions class 
11var options = new ImageSaveOptions(ImageFormat.Gif);
12
13// Convert HTML to GIF
14Converter.ConvertHTML(document, options, savePath);

Save Options

Aspose.HTML allows converting HTML to GIF using default or custom save options. ImageSaveOptions usage enables you to customize the rendering process; you can specify the image format, page size, margins, compression level, CSS media-type, etc.

PropertyDescription
CompressionSets Tagged Image File Format (TIFF) Compression. By default, this property is LZW.
CSSGets a CssOptions object which is used for configuration of CSS properties processing.
FormatSets the ImageFormat (JPG, PNG, BMP, TIFF, or GIF). By default, this property is PNG.
BackgroundColorThis property sets the color that will fill the background. By default, this property is Transparent.
PageSetupThis property gets a page setup object and uses it for configuration output page-set.
HorizontalResolutionSets horizontal resolution for output images in pixels per inch. The default value is 300 dpi.
VerticalResolutionSets vertical resolution for output images in pixels per inch. The default value is 300 dpi.
UseAntialiasingThis property sets the image rendering quality. Antialiasing is enabled by default.
TextGets a TextOptions object which is used for configuration of text rendering.

To learn more about the ImageSaveOptions class, please read the Fine-Tuning Converters article.

Convert HTML to GIF using ImageSaveOptions

To convert HTML to GIF with ImageSaveOptions specifying, you should follow a few steps:

  1. Load an HTML file using one of the HTMLDocument() constructors of the HTMLDocument class.
  2. Create a new ImageSaveOptions object with GIF ImageFormat and specify save options. By default, the Format property is PNG.
  3. Use the ConvertHTML() method of the Converter class to save HTML as a GIF image. You need to pass the HTMLDocument, ImageSaveOptions, and output file path to the ConvertHTML() method to convert HTML to GIF.

The following C# code snippet shows how to convert HTML to GIF using custom save options:

 1string documentPath = Path.Combine(OutputDir, "convert-to-gif.html");
 2string savePath = Path.Combine(OutputDir, "convert-to-gif-options.gif");
 3
 4// Prepare HTML code and save it to a file
 5var code = "<h1> HTML to GIF Converter </h1>\r\n" +
 6           "<p> GIF is a popular image format that supports animated images and frequently used in web publishing. HTML to GIF conversion allows you to save an HTML document as a GIF image.  </p>\r\n";
 7
 8File.WriteAllText(documentPath, code);
 9
10// Initialize an HTML Document from the html file
11using var document = new HTMLDocument(documentPath);
12
13// Initialize ImageSaveOptions 
14var options = new ImageSaveOptions(ImageFormat.Gif)
15{
16    UseAntialiasing = false,
17    HorizontalResolution = 100,
18    VerticalResolution = 100,
19    BackgroundColor = System.Drawing.Color.MistyRose
20};
21options.PageSetup.AnyPage = new Page(new Aspose.Html.Drawing.Size(500, 200), new Margin(30, 20, 10, 10));
22
23// Convert HTML to GIF
24Converter.ConvertHTML(document, options, savePath);

The ImageSaveOptions() constructor initializes an instance of the ImageSaveOptions class that is passed to ConvertHTML() method. The ConvertHTML() method takes the document, options, output file path savePath and performs the conversion operation.

In the above example, we apply:

Use UseAntialiasing = true when you want to improve the visual quality of rendered shapes, text, and images in your application, especially when clarity and smooth edges are essential. Enabling antialiasing smooths out jagged edges by blending the colors of pixels around the edges, resulting in a softer, more refined look.

While UseAntialiasing = true provides better visual quality, it can also increase processing time. For applications where rendering speed is a priority, it may be optimal to set UseAntialiasing = false.

The figure illustrates the convert-to-gif-options.gif file.

Text “convert-to-gif-options.gif image”

You can download the complete examples and data files from GitHub.

Aspose.HTML offers a free online HTML to GIF Converter that converts HTML to GIF image with high quality, easy and fast. Just upload, convert your files and get results in a few seconds!

Text “HTML to GIF Converter”

Subscribe to Aspose Product Updates

Get monthly newsletters & offers directly delivered to your mailbox.