The fastposter poster generator is a tool for quickly developing posters. Just upload a background image and place components (文字
,图片
,二维码
,头像
) in the corresponding positions to generate a poster. Click on代码
to directly generate calling codes for SDKs in various languages to facilitate rapid development.
Now it serves many e-commerce projects, many of which have 70W+
users. It has passed the test of many years of production environment and is stable and reliable. It is widely used in various poster generation and production scenarios such as e-commerce, distribution systems, e-commerce posters, and e-commerce main images.
If this project helps you, please light your little star
Development documentation: https://fastposter.net/doc/
Java Professional Edition - Online experience: https://fastposter.net/demo/java/
Python Professional Edition - Online experience: https://fastposter.net/demo/python/
Community Edition-Online experience: https://fastposter.net/demo/open/
Cloud Service - Free Trial: https://fastposter.net/
Support docker rapid deployment
Support e-commerce level production environment
Mainstream SDK support facilitates rapid development of Java
Python
PHP
Go
JavaScript
小程序
No need to write complex drawing rendering code
Supports multiple file formats jpeg
png
webp
pdf
base64
Convenient code generation
docker run -it --name fastposter -p 5000:5000 fastposter/fastposter
Java code
// For further information, please refer to the development documentation https://fastposter.net/doc/sdk/import net.fastposter.client.FastposterClient;import java.util.*;public class FastposterClientDemo {public static void main(String[] args ) {// 1. Create a poster client object FastposterClient client = FastposterClient.builder() .endpoint("http://127.0.0.1:5000") // Set the access endpoint.token("ApfrIzxCoK1DwNZOEJCwlrnv6QZ0PCdv") // Set the token.build();// 2. Prepare poster parameters Map<String, Object> params = new HashMap<>();params.put("NO", "SN88888888"); // 3. Generate poster and save client.buildPoster("6fba72004fa20aee").params(params).build().save(); } }
Python code
# For further information, please refer to the development documentation https://fastposter.net/doc/sdk/from fastposter import Clientclient = Client('ApfrIzxCoK1DwNZOEJCwlrnv6QZ0PCdv', 'http://127.0.0.1:5000')params = { "NO": "SN88888888"}client.buildPoster('6fba72004fa20aee', params=params).save()
Response example (returning poster image)
poster generator
Poster automatic generation tool
Poster online design generator
Poster generator online production
Generate a circle of friends poster
E-commerce poster editor
Certificate production
Certificate automatic generation tool
QR code sharing poster picture
Python Pillow drawingPillow making posters
E-commerce main image editor
Java generates QR code to share poster pictures
Java Graphics2D draws poster pictures
WeChat applet generates posters for sharing in Moments
PHP generates QR code poster image
Custom business poster images
H5 generates poster images
Canvas generates poster images
Generate poster images through JSON
BufferdImage draws pictures
Author WeChat fastposter