From 46b792947d3a0dc5fd7bb5792af96636cb40aaa8 Mon Sep 17 00:00:00 2001 From: thomas Date: Fri, 11 Nov 2022 21:04:32 +0800 Subject: [PATCH] =?UTF-8?q?fastposter=20v2.10.1=20=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 增加英文说明文档 --- README.en.md | 109 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 README.en.md diff --git a/README.en.md b/README.en.md new file mode 100644 index 0000000..a8e3eb2 --- /dev/null +++ b/README.en.md @@ -0,0 +1,109 @@ +

fast-poster logo

+ +

+GitHub Repo stars +gitee Repo stars +csharp +csharp +license +version +

+ +## Introduction + +🔥🔥🔥 fastposter Generator is a quick poster development tool. Just upload a background image, put the components (' text ', 'picture', 'QR code', 'avatar') in the corresponding position to generate a poster. Click 'code' to directly generate a variety of language call code, convenient for rapid development. + +Now it has served a large number of e-commerce projects, many of which have '52W+' users. It has passed the test of production environment for many years and is stable and reliable. Widely used in all kinds of e-commerce, distribution systems, e-commerce posters, e-commerce main picture and other poster generation and production scenes. + +> Thank you very much for your encouragement, donation and support. Open source is not easy, I hope I can stick to it. + +## Document + +- development documentation: [https://poster.prodapi.cn/doc/](https://poster.prodapi.cn/doc/) +- online experience: [https://poster.prodapi.cn/](https://poster.prodapi.cn/#from=2.10.0) +- ProPython: [https://poster.prodapi.cn/pro/](https://poster.prodapi.cn/pro/#from=2.10.0) +- ProJava: [https://poster.prodapi.cn/pro/java/](https://poster.prodapi.cn/pro/java/#from=2.10.0) + +> The little star you lit is accelerating the project development iteration + +## Features + +- Supports docker rapid deployment +- Support e-commerce production environment +- Support for multiple programming languages' Java ', 'Python', 'PHP', 'Golang', 'JavaScript', 'mini programs' +- No need to write complex drawing rendering code +- Very low server resource overhead +- Support for multiple file formats: jpeg, png, webp, pdf, base64 +- Easy code generation +- Provide common components' text ' 'avatar' 'picture' 'two-dimensional code' + + +## Quick Start + +1. Start the service + +```bash +docker run -it --name fast-poster -p 5000:5000 tangweixin/fast-poster +``` + +2. Edit the poster + +![fastposter edit posters](https://poster.prodapi.cn/doc/assets/image-20220407142530149.png) + + +3. Generate code + +![fastposter generated code](https://poster.prodapi.cn/doc/assets/image-20220407142705928.png) + +Sample request (you can pass the required parameters directly) + +```bash +curl --location --request POST 'https://poster.prodapi.cn/api/link' \ +--header 'Content-Type: application/json' \ +--header 'token: ApfrIzxCoK1DwNZOEJCwlrnv6QZ0PCdv' \ +--data-raw '{ +"title": Artificial Intelligence + Machine learning, +"id": 2 +} ' +``` + +Sample response (Return the poster's access address) + +```json +{ + "code": 0, + "msg": "success", + "data": { + "url": "https://poster.prodapi.cn/v/90295c118d4c8802" + } +} +``` + +## Application scenario + +- Poster Generator +- Automatic poster generation tool +- Poster online design generator +- Poster generator made online +- Generate a circle of Friends poster +- E-commerce poster editor +- Certificate Making +- Automatic certificate generation tool +- QR code to share poster pictures +- Python Pillow drawing Pillow makes posters +- E-commerce main chart editor +- Java generates QR code to share poster pictures +- Java Graphics2D draws the poster picture +- wechat mini program to generate posters to share moments +- PHP generates a two-dimensional code poster image +- Custom commercial poster images +-H5 Generates poster images +- canvas Generates poster images +- Generate poster images via JSON +- BufferdImage Draws pictures + +## Community + +The author of wechat 'fastposter' + +![fastposer author WeChat](https://poster.prodapi.cn/doc/assets/qrcode.jpeg) \ No newline at end of file -- GitLab