A fast, parameter-based placeholder image generator supporting SVG, PNG, WebP, JPEG, and GIF — by Jaydatt Mahendra Khodave.
img.itisuniqueofficial.com is a URL‑driven placeholder image generator. Build images on-the-fly by appending query parameters to the base URL — no UI required, perfect for rapid prototyping and automated tests.
dpr
/fonts/
https://img.itisuniqueofficial.com/
All behavior is controlled by query parameters appended to the URL.
Parameter | Description | Default | Example |
---|---|---|---|
width | Image width in pixels | 400 | ?width=800 |
height | Image height in pixels | 300 | ?height=600 |
text | Custom text (up to 200 chars) | Shows dimensions | ?text=Hello%20World |
wrap | Enable/disable word wrapping (true / false ) | true | ?wrap=false |
lines | Maximum number of lines when wrapping | Auto | ?lines=2 |
bg | Background color (HEX). Encode # as %23 | #CCCCCC | ?bg=%23FF0000 |
color | Text color (HEX) | #333333 | ?color=%23FFFFFF |
font | Font family or uploaded .ttf name (in /fonts/ ) | Arial | ?font=OpenSans.ttf |
size / fontsize | Font size (8–200 px) | Auto-fit | ?size=36 |
align | Horizontal alignment: left | center | right | center | ?align=right |
valign | Vertical alignment: top | middle | bottom | middle | ?valign=bottom |
dpr | Device pixel ratio (HiDPI/Retina scaling) | 1 | ?dpr=2 |
format | Output: png , jpeg , webp , gif , svg | png | ?format=svg |
quality | Image quality (1–100, JPEG/WebP only) | 85 | ?format=jpeg&quality=70 |
Tip: When using HEX colors in URLs, encode the hash (#
) as %23
.
https://img.itisuniqueofficial.com/
https://img.itisuniqueofficial.com/?width=800&height=600
https://img.itisuniqueofficial.com/?width=500&height=400&text=Hello%20World&bg=%23FF0000&color=%23FFFFFF
https://img.itisuniqueofficial.com/?text=Custom%20Font&font=OpenSans.ttf&size=36
https://img.itisuniqueofficial.com/?width=300&height=200&dpr=2
https://img.itisuniqueofficial.com/?width=600&height=400&format=svg
https://img.itisuniqueofficial.com/?width=600&height=400&format=jpeg&quality=60
.ttf
files into /fonts/
and reference them via ?font=YourFont.ttf
.wrap=true
to wrap long text; limit lines via lines
.dpr
for high‑density screens..ttf
files.Note: For HEX colors in URLs, encode #
as %23
to avoid breaking the query string.
Feature | img.itisuniqueofficial.com | via.placeholder.com |
---|---|---|
Output formats | SVG, PNG, JPEG, WebP, GIF | PNG only |
Text features | Multi‑line, wrapping, alignments | Single‑line basic text |
Custom fonts | Yes (.ttf) | No |
Font size | Adjustable | Fixed |
Quality (JPEG/WebP) | Adjustable via quality | Not available |
Retina / HiDPI | Yes (dpr ) | No |
Self‑hosting | Supported | Not supported |
Status | Active & maintained | Uncertain since 2023 |
Use HEX values for bg
and color
. Remember to encode #
as %23
. Example: ?bg=%233233ff&color=%23ffffff
.
Upload your .ttf
file into /fonts/
on the server, then reference it via ?font=MyFont.ttf
.
Yes, set dpr
to your target pixel ratio (e.g., dpr=2
).
svg
, png
, jpeg
, webp
, and gif
.