HtmlCssToImage 0.10.0
dotnet add package HtmlCssToImage --version 0.10.0
NuGet\Install-Package HtmlCssToImage -Version 0.10.0
<PackageReference Include="HtmlCssToImage" Version="0.10.0" />
<PackageVersion Include="HtmlCssToImage" Version="0.10.0" />
<PackageReference Include="HtmlCssToImage" />
paket add HtmlCssToImage --version 0.10.0
#r "nuget: HtmlCssToImage, 0.10.0"
#:package HtmlCssToImage@0.10.0
#addin nuget:?package=HtmlCssToImage&version=0.10.0
#tool nuget:?package=HtmlCssToImage&version=0.10.0
HTML/CSS to Image
.NET / C# Client

This package provides a .NET client for the HTML/CSS to Image API, allowing you to generate images from HTML/CSS content directly from your .NET applications.
Getting Started
Installation
Add the package to your project:
dotnet add package HtmlCssToImage
Configuration
Creating a new instance of the HtmlCssToImageClient:
var options = new HtmlCssToImageClientOptions("api-id", "api-key");
var http = new HttpClient();
var client = new HtmlCssToImageClient(http, options);
If you're using ASP.NET Core or similar frameworks supporting Microsoft DI, check out the HtmlCssToImage.DependencyInjection Package Docs for how to inject the client into your application.
Response Shape
Most client methods that call the HCTI API return an ApiResult<T>. Signed URL helpers return a string instead because they do not make an HTTP request.
An ApiResult<T> provides:
Response: The typed response body when the request succeeds.ErrorDetails: The typed API error when the request fails.SuccessandStatusCode: A quick way to inspect the outcome.HttpResponseMessage: The raw HTTP response for advanced cases.
The raw HttpResponseMessage is included so you can inspect response headers, the originating RequestMessage, the HTTP version, reason phrase, and other transport-level details that are not part of the typed response.
ApiResult<T> owns that raw response and implements IDisposable. Use using or using var for every result so the underlying response and content are released promptly.
Creating Images
You can generate images using your HCTI client with strongly typed parameters:
| Type | Description |
|---|---|
CreateHtmlCssImageRequest |
The request object for creating an image from HTML & CSS content |
CreateUrlImageRequest |
The request object for creating an image from a URL |
CreateTemplatedImageRequest |
The request object for creating an image from a template |
Here's a basic example of creating an image from HTML & CSS content:
var html_request = new CreateHtmlCssImageRequest()
{
Html = "<h1>Hello World</h1>",
Css = "h1 { color: red; }",
ViewportWidth = 200,
ViewportHeight = 400
};
using var html_image = await client.CreateImageAsync(html_request);
if(html_image.Success)
{
Console.WriteLine(html_image.Response.Url);
}else{
Console.WriteLine(html_image.ErrorDetails.Message);
}
For URL screenshots, Headers sends custom headers with the top-level page request:
var urlRequest = new CreateUrlImageRequest
{
Url = "https://example.com/private-report",
Headers = new Dictionary<string, string>
{
["Authorization"] = "Bearer short-lived-token",
["X-Preview-Mode"] = "enabled"
},
AdditionalHeaderOrigins = ["https://api.example.com"],
IncludeHeadersOnSubrequests = true,
IdentifyAsHcti = true
};
using var urlImage = await client.CreateImageAsync(urlRequest);
Custom headers are restricted to the requested URL's origin. Set IncludeHeadersOnSubrequests when same-origin resources also require them, and use AdditionalHeaderOrigins to allow an exact cross-origin scheme, host, and port. The custom headers documentation covers request security and the create-and-render format. Avoid putting secrets in signed image URLs.
Deleting Images
Delete one or more existing images from HCTI and clear them from the CDN using their image IDs:
using var result = await client.DeleteImageAsync("your-image-id");
if (!result.Success)
{
Console.WriteLine(result.ErrorDetails.Message);
}
using var batchResult = await client.DeleteImageBatchAsync(
["first-image-id", "second-image-id"]);
Template Helpers
When creating a templated image, you can use static helper methods FromObject<T> on the CreateTemplatedImageRequest class to generate a template, providing serialization options for AOT/serialization control. See more below in the Performance & Native AOT section.
// Create a template from an object, using default serialization options. This will warn in AOT scenarios
public static CreateTemplatedImageRequest CreateTemplatedImageRequest.FromObject<T>(T templateValuies, string templateId, long? templateVersion = null)
// Create a template from an object, providing JsonSerializationOptions for serialization control
public static CreateTemplatedImageRequest FromObject<T>(T templateValues, string templateId, JsonSerializerOptions jsonSerializerOptions, long? templateVersion = null)
// Create a template from an object, providing JsonTypeInfo<T>
public static CreateTemplatedImageRequest FromObject<T>(T templateValues, string templateId, JsonTypeInfo<T> typeInfo, long? templateVersion = null)
Creating an Image Batch
Call CreateImageBatchAsync<T> on the client to create a batch of images from a collection of either CreateHtmlCssImageRequest or CreateUrlImageRequest objects. At this time, templates are not supported in batch requests.
You can construct a CreateImageBatchRequest object directly or use the overload on HtmlCssToImageClient that accepts defaultOptions and variations as parameters.
Batch creation responds with an ApiResult<CreateImageResponse[]>. If your request is successful, the Response property will be an array in the order of your variations.
Creating Image URLs
You can generate signed URLs for images without actually calling the API by calling CreateAndRenderUrl or one of the CreateTemplatedImageUrl methods.
These methods are synchronous because they don't make any network calls or do heavy IO, and have been designed to be very high performance.
Read more about signed URLs in the create-and-render docs.
These URLs are tied to the API Key & API Id you provide when creating the client. If you change them or disable the keys, you'll need to generate new URLs.
The signature covers the complete query string, including output sizing and cropping options. If you change any query parameter, generate a new signed URL.
These methods are handy when you have a lot of content that may never be rendered, and want to render on-demand, as to not waste your image credits.
Output Sizing and Cropping
Use RenderImageOptions with an existing image, a create-and-render request, or a template URL:
var renderOptions = new RenderImageOptions
{
Format = RenderImageFormat.WEBP,
Dpi = 144,
Width = 1200,
Crop = RenderImageCrop.Rectangle(
horizontal: RenderImageCropSpan.Sized(
RenderImageCropSize.Percent(80),
RenderImageCropOrigin.Center))
};
var existingImageUrl = client.ImageUrl("image-id", renderOptions);
var createAndRenderUrl = client.CreateAndRenderUrl(
new CreateUrlImageRequest { Url = "https://example.com" },
renderOptions);
var templatedImageUrl = client.CreateTemplatedImageUrl(
"template-id",
new JsonObject { ["title"] = "Hello" },
templateVersion: null,
renderOptions);
Crop positions and sizes use integer pixels or whole percentages. The .NET cropping guide walks through every crop shape, unit, and origin with complete examples. See the API's cropping parameters for the corresponding raw query parameters.
DPI must be greater than 30 and less than 600; width and height must be greater than zero. If your template model has keys that overlap with render options, the client automatically uses a fallback that the API understands.
Performance & Native AOT
This library is built with performance in mind and is fully compatible with Native AOT (Ahead-of-Time) compilation in .NET 9+.
The client internally uses source-generated JSON serialization, so no extra configuration is required for standard API requests.
AOT with Templated Images
When using templates, you provide a custom object for templateValues. In a Native AOT environment, reflection is restricted, so you must ensure your types are source-generated. Ensure you use the overloads with JsonTypeInfo<T> or JsonSerializerOptions to provide serialization options. If you're providing JsonSerializerOptions, ensure it has the type info in its resolver chain. Check out the Microsoft JSON docs for more details.
Other Packages
HtmlCssToImage.DependencyInjection
Use HtmlCssToImage.DependencyInjection to integrate the HtmlCssToImage client into your ASP.NET Core application.
HtmlCssToImage.Blazor
Use HtmlCssToImage.Blazor to generate Open Graph image tags using HCTI links in your Blazor applications.
HtmlCssToImage.TagHelpers
Use HtmlCssToImage.TagHelpers to generate Open Graph image tags in ASP.NET Core Razor Pages and MVC applications.
Check out the HTML/CSS To Image Docs for more details on the API's capabilities.
Get started for free at htmlcsstoimage.com.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- No dependencies.
-
net9.0
- No dependencies.
NuGet packages (3)
Showing the top 3 NuGet packages that depend on HtmlCssToImage:
| Package | Downloads |
|---|---|
|
HtmlCssToImage.DependencyInjection
DI Support for the HTML/CSS to Image API client. |
|
|
HtmlCssToImage.Blazor
Official Blazor integration for HTML/CSS to Image API. Add automated OG meta tags to your pages. |
|
|
HtmlCssToImage.TagHelpers
Official Tag Helpers for HTML/CSS to Image API. Add automated OG meta tags to your pages. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.10.0 | 36 | 7/31/2026 |
| 0.9.0 | 140 | 7/27/2026 |
| 0.8.0 | 134 | 7/21/2026 |
| 0.7.0 | 135 | 7/20/2026 |
| 0.6.0 | 133 | 7/19/2026 |
| 0.5.1 | 135 | 7/17/2026 |
| 0.5.0 | 162 | 4/24/2026 |
| 0.4.1 | 158 | 4/14/2026 |
| 0.4.0 | 158 | 4/13/2026 |
| 0.3.0 | 152 | 4/13/2026 |
| 0.2.0 | 164 | 4/10/2026 |
| 0.1.0 | 1,341 | 3/1/2026 |
| 0.0.9 | 174 | 1/9/2026 |
| 0.0.8 | 179 | 1/7/2026 |
| 0.0.7 | 175 | 1/6/2026 |
| 0.0.6 | 171 | 1/6/2026 |
| 0.0.5 | 168 | 1/6/2026 |
| 0.0.4 | 163 | 1/6/2026 |