Spring Boot集成easyposter快速入门Demo

1.什么是easyposter?

easyposter是一个简单的,便于扩展的绘制海报工具包

使用场景

在日常工作过程中,通常一些C端平台会伴随着海报生成与分享业务。因为随着移动互联网的迅猛发展,社交分享已成为我们日常生活的重要组成部分。海报分享作为一种直观、生动的分享方式,被广泛应用于各类应用场景中,如产品推广、活动宣传、内容分享等。本文主要介绍通过Java进行海报生成的原理解析与代码示例。

2.代码工程

实验目的

使用easyposter生成一张文章海报图

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><parent><artifactId>springboot-demo</artifactId><groupId>com.et</groupId><version>1.0-SNAPSHOT</version></parent><modelVersion>4.0.0</modelVersion><artifactId>poster</artifactId><properties><maven.compiler.source>11</maven.compiler.source><maven.compiler.target>11</maven.compiler.target></properties><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-autoconfigure</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></dependency><dependency><groupId>com.github.quaintclever</groupId><artifactId>easyposter</artifactId><version>1.2</version></dependency><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId></dependency></dependencies>
</project>

controller

package com.et.poster.controller;import com.et.poster.service.PosterUtil;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.OutputStream;
import java.util.HashMap;
import java.util.Map;@RestController
public class HelloWorldController {@RequestMapping("/hello")public Map<String, Object> showHelloWorld(){Map<String, Object> map = new HashMap<>();map.put("msg", "HelloWorld");return map;}@RequestMapping(path = "/genPoster",produces = MediaType.IMAGE_PNG_VALUE)@ResponseBodypublic byte[] genposterpng( HttpServletRequest request,HttpServletResponse response) {try {byte[] bytes = PosterUtil.test(); OutputStream out = null;try {out = response.getOutputStream();out.write(bytes);  out.flush();} catch (IOException ex) {ex.printStackTrace();}return null;} catch (Exception e) {e.printStackTrace();return null;}}
}

生成海报工具类

package com.et.poster.service;import com.quaint.poster.core.impl.PosterDefaultImpl;
import lombok.extern.slf4j.Slf4j;import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.*;
import java.net.URL;
import java.util.Random;/*** @author quaint* @date 21 February 2020* @since 1.0*/
@Slf4j
public class PosterUtil {public static String ossDomain="http://qdliuhaihua.oss-cn-qingdao-internal.aliyuncs.com/";public static void main(String[] args) throws Exception{//String in1pathString = PosterUtil.class.getResource("/static/css/fonts/simkai.ttf").getFile();//System.out.printf(in1pathString);test();}public   static  byte[] test() throws IOException, IllegalAccessException, FontFormatException {BufferedImage background = ImageIO.read(new URL("http://image.liuhaihua.cn/bg.jpg"));File file2=  new File("/Users/liuhaihua/Downloads/2.jpg");BufferedImage mainImage = ImageIO.read(file2);BufferedImage siteSlogon = ImageIO.read(new URL("http://image.liuhaihua.cn/site.jpg"));BufferedImage xx = ImageIO.read(new URL("http://image.liuhaihua.cn/xx.jpg"));File file5=  new File("/Users/liuhaihua/IdeaProjects/springboot-demo/poster/src/main/resources/image/wx_300px.png");BufferedImage qrcode = ImageIO.read(file5);SamplePoster poster = SamplePoster.builder().backgroundImage(background).postQrcode(qrcode).xuxian(xx).siteSlogon(siteSlogon).postTitle("Java generate poster in 5 miniutes").postDate("2022年11月14日 pm1:23 Author:Harries").posttitleDesc("Demand Background\u200B We often encounter such a demand in multi-terminal application development: when users browse products, they feel good and want to share them with friends. At this time, the terminal (Android, Apple, H5, etc.) generates a beautiful product poster and shares it with others through WeChat or other channels. You may also encounter the demand: make a personal business card and print it out or share it with others. The effect is probably like this: It may also be like this (the above pictures are all mine...").mainImage(mainImage).build();PosterDefaultImpl<SamplePoster> impl = new PosterDefaultImpl<>();BufferedImage test = impl.annotationDrawPoster(poster).draw(null);//ImageIO.write(test,"png",new FileOutputStream("/Users/liuhaihua/annTest.png"));ByteArrayOutputStream stream = new ByteArrayOutputStream();ImageIO.write(test, "png", stream);return stream.toByteArray();}}

以上只是一些关键代码,所有代码请参见下面代码仓库

代码仓库

  • GitHub - Harries/springboot-demo: a simple springboot demo with some components for example: redis,solr,rockmq and so on.

3.测试

启动Spring Boot应用程序

测试生成海报

访问http://127.0.0.1:8088/genPoster,返回图片如下图

genPoster

4.引用

  • GitHub - quaintclever/easyposter: 一个简单的,便于扩展的awt绘制海报小项目
  • Spring Boot集成easyposter快速入门Demo | Harries Blog™

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/44793.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

visual studio 2019版下载以及与UE4虚幻引擎配置(过程记录)(官网无法下载visual studio 2019安装包)

一、概述 由于需要使用到UE4虚幻引擎&#xff0c;我使用的版本是4.27版本的&#xff0c;其官方默认的visual studio版本是2019版本的&#xff0c;相应的版本对应关系可以通过下面的官方网站对应关系查询。https://docs.unrealengine.com/4.27/zh-CN/ProductionPipelines/Develo…

MMSegmentation笔记

如何训练自制数据集&#xff1f; 首先需要在 mmsegmentation/mmseg/datasets 目录下创建一个自制数据集的配置文件&#xff0c;以我的苹果叶片病害分割数据集为例&#xff0c;创建了mmsegmentation/mmseg/datasets/appleleafseg.py 可以看到&#xff0c;这个配置文件主要定义…

python:使用matplotlib库绘制图像(四)

作者是跟着http://t.csdnimg.cn/4fVW0学习的&#xff0c;matplotlib系列文章是http://t.csdnimg.cn/4fVW0的自己学习过程中整理的详细说明版本&#xff0c;对小白更友好哦&#xff01; 四、条形图 1. 一个数据样本的条形图 条形图&#xff1a;常用于比较不同类别的数量或值&…

3dmax-vray5大常用材质设置方法

3dmax云渲染平台——渲染100 以高性价比著称&#xff0c;是预算有限的小伙伴首选。 15分钟0.2,60分钟内0.8;注册填邀请码【7788】可领30元礼包和免费渲染券 提供了多种机器配置选择(可以自行匹配环境)最高256G大内存机器&#xff0c;满足不同用户需求。 木纹材质 肌理调整&…

函数语意学(The Sematics of Function)

1、非静态成员函数转化为非成员函数 c 设计准则之一就是&#xff1a;非静态成员函数至少和非成员函数有相同的效率。 也就是说下面两个函数具有相同的效率&#xff1a; float magnitude(const Point3d * this){...}; float Point3d::magnitude(){...};以 float Point3d::mag…

练习9.5 彩票分析

练习 9.14&#xff1a;彩票 创建⼀个列表或元素&#xff0c;其中包含 10 个数和 5 个字 ⺟。从这个列表或元组中随机选择 4 个数或字⺟&#xff0c;并打印⼀条消息&#xff0c; 指出只要彩票上是这 4 个数或字⺟&#xff0c;就中⼤奖了。 练习 9.15&#xff1a;彩票分析 可以使…

面试题 05. 替换空格

05. 替换空格 题目描述示例 题解 题目描述 请实现一个函数&#xff0c;把字符串 s 中的每个空格替换成"%20"。 示例 示例1 输入&#xff1a;s “We are happy.” 输出&#xff1a;“We%20are%20happy.” 题解 class Solution { public:string replaceSpace(stri…

jQuery 元素选择器集合

jQuery 提供了一套非常强大的元素选择器&#xff0c;它们可以以各种方式定位和操作网页文档中的元素。 以下是 jQuery 中的一些常用选择器&#xff1a; 1、基本选择器 #id&#xff1a;选择 ID 为 id 的元素。.&#xff08;类选择器&#xff09;&#xff1a;选择具有特定类的…

2.5 OJ 网站的使用与作业全解

目录 1 OJ 网站如何使用 1.1 注册账户 1.2 登录账户 1.3 做题步骤 2 本节课的 OJ 作业说明 3 章节综合判断题 4 课时2作业1 5 课时2作业2 6 课时2作业3 1 OJ 网站如何使用 〇J 是英文 Online Judge 的缩写&#xff0c;中文翻译过来是在线判题。当用户将自己编写的代码…

基于XC7VX690T FPGA+ZU15EG SOC的6U VPX总线实时信号处理平台(支持4路光纤)

6U VPX架构&#xff0c;符合VITA46规范板载高性能FPGA处理器&#xff1a;XC7VX690T-2FFG1927I板载1片高性能MPSOC&#xff1a;XCZU15EG-2FFVB1156I板载1片MCU&#xff0c;进行健康管理、时钟配置等V7 FPGA外挂2个FMC接口两片FPGA之间通过高速GTH进行互联 基于6U VPX总线架构的通…

从零开始做题:神奇的棋盘

题目 打开得到一副adfgvx加密棋盘 观察txt数据只有1-5&#xff0c;猜测是数字字母坐标转换&#xff0c;用notepad批量操作一下 解题 AGAXXDAGGVGGVDVADAVXDGADVGDVAADDDDFXAFAFDGDVXXDGGDGGDXDDFDDXVGXADGVDFXVVAADDXDXXADDVGGGXGXXXXGXXGGXGDVVVGGGAGAAAAGAAGGAGDDDAGAGGG…

解释如单例、工厂、观察者等常见设计模式在Android开发中的应用。

在Android开发中&#xff0c;设计模式的应用是提升代码质量、增强可维护性和可扩展性的重要手段。单例模式&#xff08;Singleton&#xff09;、工厂模式&#xff08;Factory&#xff09;、观察者模式&#xff08;Observer&#xff09;等是其中最为常见且实用的设计模式。下面我…

如何对已经存在的表进行加分区方案分区函数

我参考网上的&#xff0c;写了2给存储过程&#xff0c;一个初始创建文分区方案分区函数&#xff1b;一个可以通过作业新增文件组文件件&#xff1b; 但是初始没有绑定表&#xff0c;网上的都是在创建表是绑定分区方案&#xff0c;但是我的表是已经存在的&#xff0c;怎么绑定 …

Python实现网站IP地址查询

使用socket库实现网站的ip地址查询&#xff0c;以便于使用CC攻击和DDoS攻击&#xff08;闹着玩的&#xff09; import socket def get_website_ip(website): try: ip socket.gethostbyname(website) return ip except socket.gaierror: retur…

最小数字游戏(Lc2974)——模拟+优先队列(小根堆)、排序+交换

你有一个下标从 0 开始、长度为 偶数 的整数数组 nums &#xff0c;同时还有一个空数组 arr 。Alice 和 Bob 决定玩一个游戏&#xff0c;游戏中每一轮 Alice 和 Bob 都会各自执行一次操作。游戏规则如下&#xff1a; 每一轮&#xff0c;Alice 先从 nums 中移除一个 最小 元素&…

力扣 383赎金信

思路&#xff0c;用unordered_map存储magazine中字符以及字符出现的次数 遍历ransomNote中每个字符&#xff0c;如果能在map中找到&#xff0c;则对应value减一&#xff0c;如果字符对应的value小于零&#xff0c;意味着magazine中找不到与ransomNote里这个字符对应的字符&…

翁恺-C语言程序设计-05-3. 求a的连续和

05-3. 求a的连续和 输入两个整数a和n&#xff0c;a的范围是[0,9]&#xff0c;n的范围是[1,8]&#xff0c;求数列之和S aaaaaa…aaa…a&#xff08;n个a&#xff09;。如a为2、n为8时输出的是222222…22222222的和。 输入格式&#xff1a; 输入在一行中给出两个整数&#xf…

VUE_TypeError: Cannot convert a BigInt value to a number at Math.pow 解决方法

错误信息 TypeError: Cannot convert a BigInt value to a number at Math.pow vue 或 react package.json添加 "browserslist": {"production": ["chrome > 67","edge > 79","firefox > 68","opera >…

实战演练-2021年电赛国一之三端口DC-DC变换器

文章目录 前言一、题目二、题目分析1、题目要求解析2、题目方案选定方案一(使用buck-boost电路&#xff0b;双向DC-DC电路&#xff08;前端&#xff09;)方案二(使用同步整流Boost升压电路&#xff0b;双向DC-DC电路&#xff08;前端&#xff09;)方案三(使用同步整流Boost升压…

实时聊天 Vue + Vuex + sockjs-client + stompjs进行websocket连接

实时聊天 知识点WebSocket介绍SockJSSTOMP 开发环境功能实现安装应用在vuex中创建vue中的引入、监听、实例化与收发、订阅消息引入组件实例化与订阅计算属性监听收到消息封装的发送消息的公共方法发送消息 完整的代码 知识点 WebSocket介绍 WebSocket 是一种在 Web 应用中实现…