Developer · Free · No API Key

Embed PixlFits — one script tag.

Drop any PixlFits tool into your blog, docs, or product. No API key. No backend. Your visitors' images stay 100% in their browser.

Quick start

Paste this anywhere on your site:

<script src="https://pixlfits.com/embed.js" data-tool="resizer"></script>

That's it. The widget renders inline, takes 100% of its container width, and is 640px tall by default.

Available tools

Set data-tool to any of these:

Tooldata-tool value
Image Resizerresizer
Image Compressorcompress-image
Image Converterconvert-image
Image Croppercrop-image
Background Removerremove-background
EXIF Viewer / Removerexif-viewer
Image to PDFimage-to-pdf
PDF to Imagepdf-to-image
Color Palette Extractorcolor-palette
QR Code Generatorqr-code-generator
WebP / AVIF Converterwebp-avif-converter
HEIC to JPGheic-to-jpg

All options

AttributeDefaultDescription
data-toolresizerWhich PixlFits tool to embed.
data-width100%Pixel value or CSS dimension.
data-height640Pixel value or CSS dimension.
data-themedarkOnly dark today. Light theme planned.
data-id(inline)ID of an element to inject into.

Examples

Embed the resizer in a specific div

<div id="my-tool"></div>
<script
  src="https://pixlfits.com/embed.js"
  data-tool="resizer"
  data-id="my-tool"
  data-height="720"></script>

Embed the compressor at a fixed pixel width

<script
  src="https://pixlfits.com/embed.js"
  data-tool="compress-image"
  data-width="600"
  data-height="700"></script>

Embed the background remover (taller, AI model needs space)

<script
  src="https://pixlfits.com/embed.js"
  data-tool="remove-background"
  data-height="800"></script>

Privacy — what the embed does and doesn't do

Frequently asked questions

Do I need an API key?

No. The embed is free, has no rate limit, and requires no authentication.

Will my visitors' images be uploaded to PixlFits?

No. PixlFits never uploads images — that's the whole point. Verify with your browser's DevTools → Network tab.

Can I remove the "Powered by" attribution?

Not in the free embed. For white-label / branded embedding, contact team@pixlfits.com.

Is there a Wordpress plugin?

Not yet. You can add the embed via a custom HTML block or shortcode in any Wordpress post. Plugin planned for Q3 2026.

What about CSP (Content Security Policy)?

Whitelist https://pixlfits.com in your script-src and frame-src directives. The embed loads no third-party scripts on your page.