View as Markdown
HTML/CSS to Image icon

HTML/CSS to Image ACTION

Create Image From HTML

Create Image From HTML. See the docs.
  • Action
  • Writes data
  • Destructive
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's HTML/CSS to Image account once, then configure and run Create Image From HTML from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "html_css_to_image-create-image-from-html",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    html_css_to_image: { authProvisionId: "apn_xxxxxxx" },
    html: "HTML",
    css: "CSS",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Create Image From HTML inputs
Property Type Description
html HTML string

This is the HTML you want to render.

You can send an HTML snippet <div>Your content</div> or an entire webpage.

Required
css CSS string
The CSS for your image. it will be injected into the HTML.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
html_css_to_image-create-image-from-html
Version
0.0.2
App
HTML/CSS to Image
Authentication
API key
Read-only
No
Destructive
Yes
Open world
Yes