Text Overlay Parameters¶
The text overlay feature allows you to add text on top of images with full control over positioning, styling, and appearance.
txt
¶
The text content to be overlaid on the image.
Type: string
(URL encoded)
Default: None
txt_align
¶
The text alignment can be specified using the txt_align
parameter. The following options are supported:
top
- Align to top of imagebottom
- Align to bottom of imagemiddle
- Align to vertical centerleft
- Align to left edgeright
- Align to right edgecenter
- Align to horizontal center
You can combine the options to specify precise alignment, for example: txt_align=top,center
txt_size
¶
The font size of the text in pixels.
Type: integer
Range: 8
- 300
pixels
Default: 20
txt_font
¶
The font family to be used when rendering the text.
Type: string
Default: Arial
Common fonts: Arial
, Helvetica
, Times
, Georgia
, Verdana
txt_color
¶
The color of the text. You can specify the color using color strings or color specifiers like hexadecimal, RGB, or HSL.
Type: string
(color value)
Default: black
txt_line
¶
The width of the outline border for the text in pixels.
Type: integer
Range: 0
- 10
pixels
Default: 0
(no outline)
txt_line_color
¶
The color of the text outline. You can specify the color using color strings or color specifiers like hexadecimal, RGB, or HSL.
Type: string
(color value)
Default: white
txt_pad
¶
The padding around the text in pixels.
Type: integer
Range: 0
- 100
pixels
Default: 10
Usage¶
Basic Text Overlay¶
Add white "Hello World" text at 48px size.Positioned Text¶
Add copyright notice in bottom-right corner.Text with Outline¶
Add bold "SALE" text with white outline.Custom Font¶
Use Georgia font for elegant text styling.Use Cases¶
- Watermarking: Add copyright or brand information
- Promotional Banners: Overlay sale or discount text
- Social Media: Add captions or hashtags
- Product Labels: Add pricing or feature callouts
- Event Graphics: Add dates, locations, or titles
Examples¶
Watermark¶
photo.jpg?txt=%C2%A9%202024%20Studio&txt_align=bottom,right&txt_size=14&txt_color=rgba(255,255,255,0.7)
Promotional Banner¶
product.jpg?txt=50%25%20OFF&txt_size=64&txt_color=red&txt_line=2&txt_line_color=white&txt_align=center
Social Media Caption¶
post.jpg?txt=New%20Collection&txt_font=Helvetica&txt_size=42&txt_color=white&txt_align=bottom,center&txt_pad=20