实体类

package cn.hong.pdf;import lombok.Builder;
import lombok.Getter;@Getter
@Builder
public class SealCircle {private Integer line;private Integer width;private Integer height;
}

实体类2

package cn.hong.pdf;import lombok.Builder;
import lombok.Getter;@Getter
@Builder
public class SealFont {private String text;private String family;private Integer size;private Boolean bold;private Double space;private Integer margin;public String getFamily() {return family == null ? "宋体" : family;}public boolean getBold() {return bold == null ? true : bold;}public SealFont append(String text) {this.text += text;return this;}
}

工具类

package cn.hong.pdf;import lombok.Builder;
import lombok.Getter;import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.font.FontRenderContext;
import java.awt.geom.AffineTransform;
import java.awt.geom.Rectangle2D;
import java.awt.image.BufferedImage;
import java.io.File;@Builder
@Getter
public class Seal {// 起始位置private static final int INIT_BEGIN = 5;// 尺寸private Integer size;// 颜色private Color color;// 主字private SealFont mainFont;// 副字private SealFont viceFont;// 抬头private SealFont titleFont;// 中心字private SealFont centerFont;// 边线圆private SealCircle borderCircle;// 内边线圆private SealCircle borderInnerCircle;// 内线圆private SealCircle innerCircle;// 边线框private Integer borderSquare;// 加字private String stamp;/*** 画公章*/public boolean draw(String pngPath) throws Exception {if (borderSquare != null) {return draw2(pngPath); // 画私章}//1.画布BufferedImage bi = new BufferedImage(size, size, BufferedImage.TYPE_4BYTE_ABGR);//2.画笔Graphics2D g2d = bi.createGraphics();//2.1抗锯齿设置//文本不抗锯齿,否则圆中心的文字会被拉长RenderingHints hints = new RenderingHints(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_OFF);//其他图形抗锯齿hints.put(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);g2d.setRenderingHints(hints);//2.2设置背景透明度g2d.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC, 0));//2.3填充矩形g2d.fillRect(0, 0, size, size);//2.4重设透明度,开始画图g2d.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC, 1));//2.5设置画笔颜色g2d.setPaint(color == null ? Color.RED : color);//3.画边线圆if (borderCircle != null) {drawCircle(g2d, borderCircle, INIT_BEGIN, INIT_BEGIN);} else {throw new Exception("BorderCircle can not null!");}int borderCircleWidth = borderCircle.getWidth();int borderCircleHeight = borderCircle.getHeight();//4.画内边线圆if (borderInnerCircle != null) {int x = INIT_BEGIN + borderCircleWidth - borderInnerCircle.getWidth();int y = INIT_BEGIN + borderCircleHeight - borderInnerCircle.getHeight();drawCircle(g2d, borderInnerCircle, x, y);}//5.画内环线圆if (innerCircle != null) {int x = INIT_BEGIN + borderCircleWidth - innerCircle.getWidth();int y = INIT_BEGIN + borderCircleHeight - innerCircle.getHeight();drawCircle(g2d, innerCircle, x, y);}//6.画弧形主文字if (borderCircleHeight != borderCircleWidth) {drawArcFont4Oval(g2d, borderCircle, mainFont, true);} else {drawArcFont4Circle(g2d, borderCircleHeight, mainFont, true);}//7.画弧形副文字if (borderCircleHeight != borderCircleWidth) {drawArcFont4Oval(g2d, borderCircle, viceFont, false);} else {drawArcFont4Circle(g2d, borderCircleHeight, viceFont, false);}//8.画中心字drawFont(g2d, (borderCircleWidth + INIT_BEGIN) * 2, (borderCircleHeight + INIT_BEGIN) * 2, centerFont);//9.画抬头文字drawFont(g2d, (borderCircleWidth + INIT_BEGIN) * 2, (borderCircleHeight + INIT_BEGIN) * 2, titleFont);g2d.dispose();return ImageIO.write(bi, "PNG", new File(pngPath));}/*** 绘制圆弧形文字*/private static void drawArcFont4Circle(Graphics2D g2d, int circleRadius, SealFont font, boolean isTop) {if (font == null) {return;}//1.字体长度int textLen = font.getText().length();//2.字体大小,默认根据字体长度动态设定int size = font.getSize() == null ? (55 - textLen * 2) : font.getSize();//3.字体样式int style = font.getBold() ? Font.BOLD : Font.PLAIN;//4.构造字体Font f = new Font(font.getFamily(), style, size);FontRenderContext context = g2d.getFontRenderContext();Rectangle2D rectangle = f.getStringBounds(font.getText(), context);//5.文字之间间距,默认动态调整double space;if (font.getSpace() != null) {space = font.getSpace();} else {if (textLen == 1) {space = 0;} else {space = rectangle.getWidth() / (textLen - 1) * 0.9;}}//6.距离外圈距离int margin = font.getMargin() == null ? INIT_BEGIN : font.getMargin();//7.写字double newRadius = circleRadius + rectangle.getY() - margin;double radianPerInterval = 2 * Math.asin(space / (2 * newRadius));double fix = 0.04;if (isTop) {fix = 0.18;}double firstAngle;if (!isTop) {if (textLen % 2 == 1) {firstAngle = Math.PI + Math.PI / 2 - (textLen - 1) * radianPerInterval / 2.0 - fix;} else {firstAngle = Math.PI + Math.PI / 2 - ((textLen / 2.0 - 0.5) * radianPerInterval) - fix;}} else {if (textLen % 2 == 1) {firstAngle = (textLen - 1) * radianPerInterval / 2.0 + Math.PI / 2 + fix;} else {firstAngle = (textLen / 2.0 - 0.5) * radianPerInterval + Math.PI / 2 + fix;}}for (int i = 0; i < textLen; i++) {double theta;double thetaX;double thetaY;if (!isTop) {theta = firstAngle + i * radianPerInterval;thetaX = newRadius * Math.sin(Math.PI / 2 - theta);thetaY = newRadius * Math.cos(theta - Math.PI / 2);} else {theta = firstAngle - i * radianPerInterval;thetaX = newRadius * Math.sin(Math.PI / 2 - theta);thetaY = newRadius * Math.cos(theta - Math.PI / 2);}AffineTransform transform;if (!isTop) {transform = AffineTransform.getRotateInstance(Math.PI + Math.PI / 2 - theta);} else {transform = AffineTransform.getRotateInstance(Math.PI / 2 - theta + Math.toRadians(8));}Font f2 = f.deriveFont(transform);g2d.setFont(f2);g2d.drawString(font.getText().substring(i, i + 1), (float) (circleRadius + thetaX + INIT_BEGIN), (float) (circleRadius - thetaY + INIT_BEGIN));}}/*** 绘制椭圆弧形文字*/private static void drawArcFont4Oval(Graphics2D g2d, SealCircle sealCircle, SealFont font, boolean isTop) {if (font == null) {return;}float radiusX = sealCircle.getWidth();float radiusY = sealCircle.getHeight();float radiusWidth = radiusX + sealCircle.getLine();float radiusHeight = radiusY + sealCircle.getLine();//1.字体长度int textLen = font.getText().length();//2.字体大小,默认根据字体长度动态设定int size = font.getSize() == null ? 25 + (10 - textLen) / 2 : font.getSize();//3.字体样式int style = font.getBold() ? Font.BOLD : Font.PLAIN;//4.构造字体Font f = new Font(font.getFamily(), style, size);//5.总的角跨度double totalArcAng = font.getSpace() * textLen;//6.从边线向中心的移动因子float minRat = 0.90f;double startAngle = isTop ? -90f - totalArcAng / 2f : 90f - totalArcAng / 2f;double step = 0.5;int alCount = (int) Math.ceil(totalArcAng / step) + 1;double[] angleArr = new double[alCount];double[] arcLenArr = new double[alCount];int num = 0;double accArcLen = 0.0;angleArr[num] = startAngle;arcLenArr[num] = accArcLen;num++;double angR = startAngle * Math.PI / 180.0;double lastX = radiusX * Math.cos(angR) + radiusWidth;double lastY = radiusY * Math.sin(angR) + radiusHeight;for (double i = startAngle + step; num < alCount; i += step) {angR = i * Math.PI / 180.0;double x = radiusX * Math.cos(angR) + radiusWidth, y = radiusY * Math.sin(angR) + radiusHeight;accArcLen += Math.sqrt((lastX - x) * (lastX - x) + (lastY - y) * (lastY - y));angleArr[num] = i;arcLenArr[num] = accArcLen;lastX = x;lastY = y;num++;}double arcPer = accArcLen / textLen;for (int i = 0; i < textLen; i++) {double arcL = i * arcPer + arcPer / 2.0;double ang = 0.0;for (int p = 0; p < arcLenArr.length - 1; p++) {if (arcLenArr[p] <= arcL && arcL <= arcLenArr[p + 1]) {ang = (arcL >= ((arcLenArr[p] + arcLenArr[p + 1]) / 2.0)) ? angleArr[p + 1] : angleArr[p];break;}}angR = (ang * Math.PI / 180f);Float x = radiusX * (float) Math.cos(angR) + radiusWidth;Float y = radiusY * (float) Math.sin(angR) + radiusHeight;double qxang = Math.atan2(radiusY * Math.cos(angR), -radiusX * Math.sin(angR));double fxang = qxang + Math.PI / 2.0;int subIndex = isTop ? i : textLen - 1 - i;String c = font.getText().substring(subIndex, subIndex + 1);//获取文字高宽FontMetrics fm = sun.font.FontDesignMetrics.getMetrics(f);int w = fm.stringWidth(c), h = fm.getHeight();if (isTop) {x += h * minRat * (float) Math.cos(fxang);y += h * minRat * (float) Math.sin(fxang);x += -w / 2f * (float) Math.cos(qxang);y += -w / 2f * (float) Math.sin(qxang);} else {x += (h * minRat) * (float) Math.cos(fxang);y += (h * minRat) * (float) Math.sin(fxang);x += w / 2f * (float) Math.cos(qxang);y += w / 2f * (float) Math.sin(qxang);}// 旋转AffineTransform affineTransform = new AffineTransform();affineTransform.scale(0.8, 1);if (isTop)affineTransform.rotate(Math.toRadians((fxang * 180.0 / Math.PI - 90)), 0, 0);elseaffineTransform.rotate(Math.toRadians((fxang * 180.0 / Math.PI + 180 - 90)), 0, 0);Font f2 = f.deriveFont(affineTransform);g2d.setFont(f2);g2d.drawString(c, x.intValue() + INIT_BEGIN, y.intValue() + INIT_BEGIN);}}/*** 画文字*/private static void drawFont(Graphics2D g2d, int circleWidth, int circleHeight, SealFont font) {if (font == null) {return;}//1.字体长度int textLen = font.getText().length();//2.字体大小,默认根据字体长度动态设定int size = font.getSize() == null ? (55 - textLen * 2) : font.getSize();//3.字体样式int style = font.getBold() ? Font.BOLD : Font.PLAIN;//4.构造字体Font f = new Font(font.getFamily(), style, size);g2d.setFont(f);FontRenderContext context = g2d.getFontRenderContext();String[] fontTexts = font.getText().split("\n");if (fontTexts.length > 1) {int y = 0;for (String fontText : fontTexts) {y += Math.abs(f.getStringBounds(fontText, context).getHeight());}//5.设置上边距float margin = INIT_BEGIN + (float) (circleHeight / 2 - y / 2);for (String fontText : fontTexts) {Rectangle2D rectangle2D = f.getStringBounds(fontText, context);g2d.drawString(fontText, (float) (circleWidth / 2 - rectangle2D.getCenterX()), margin);margin += Math.abs(rectangle2D.getHeight());}} else {Rectangle2D rectangle2D = f.getStringBounds(font.getText(), context);//5.设置上边距,默认在中心float margin = font.getMargin() == null ?(float) (circleHeight / 2 - rectangle2D.getCenterY()) :(float) (circleHeight / 2 - rectangle2D.getCenterY()) + (float) font.getMargin();g2d.drawString(font.getText(), (float) (circleWidth / 2 - rectangle2D.getCenterX()), margin);}}/*** 画圆*/private static void drawCircle(Graphics2D g2d, SealCircle circle, int x, int y) {if (circle == null) {return;}//1.圆线条粗细默认是圆直径的1/35int lineSize = circle.getLine() == null ? circle.getHeight() * 2 / (35) : circle.getLine();//2.画圆g2d.setStroke(new BasicStroke(lineSize));g2d.drawOval(x, y, circle.getWidth() * 2, circle.getHeight() * 2);}/*** 画私章*/public boolean draw2(String pngPath) throws Exception {if (mainFont == null || mainFont.getText().length() < 2 || mainFont.getText().length() > 4) {throw new IllegalArgumentException("请输入2-4个字");}int fixH = 18;int fixW = 2;//1.画布BufferedImage bi = new BufferedImage(size, size / 2, BufferedImage.TYPE_4BYTE_ABGR);//2.画笔Graphics2D g2d = bi.createGraphics();//2.1设置画笔颜色g2d.setPaint(Color.RED);//2.2抗锯齿设置g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);//3.写签名int marginW = fixW + borderSquare;float marginH;FontRenderContext context = g2d.getFontRenderContext();Rectangle2D rectangle;Font f;if (mainFont.getText().length() == 2) {if (stamp != null && stamp.trim().length() > 0) {bi = drawThreeFont(bi, g2d, mainFont.append(stamp), borderSquare, size, fixH, fixW, true);} else {f = new Font(mainFont.getFamily(), Font.BOLD, mainFont.getSize());g2d.setFont(f);rectangle = f.getStringBounds(mainFont.getText().substring(0, 1), context);marginH = (float) (Math.abs(rectangle.getCenterY()) * 2 + marginW) + fixH - 4;g2d.drawString(mainFont.getText().substring(0, 1), marginW, marginH);marginW += Math.abs(rectangle.getCenterX()) * 2 + (mainFont.getSpace() == null ? INIT_BEGIN : mainFont.getSpace());g2d.drawString(mainFont.getText().substring(1), marginW, marginH);//拉伸BufferedImage nbi = new BufferedImage(size, size, bi.getType());Graphics2D ng2d = nbi.createGraphics();ng2d.setPaint(Color.RED);ng2d.drawImage(bi, 0, 0, size, size, null);//画正方形ng2d.setStroke(new BasicStroke(borderSquare));ng2d.drawRect(0, 0, size, size);ng2d.dispose();bi = nbi;}} else if (mainFont.getText().length() == 3) {if (stamp != null && stamp.trim().length() > 0) {bi = drawFourFont(bi, mainFont.append(stamp), borderSquare, size, fixH, fixW);} else {bi = drawThreeFont(bi, g2d, mainFont, borderSquare, size, fixH, fixW, false);}} else {bi = drawFourFont(bi, mainFont, borderSquare, size, fixH, fixW);}g2d.dispose();return ImageIO.write(bi, "PNG", new File(pngPath));}/*** 画三字*/private static BufferedImage drawThreeFont(BufferedImage bi, Graphics2D g2d, SealFont font, int lineSize, int imageSize, int fixH, int fixW, boolean isWithYin) {fixH -= 9;int marginW = fixW + lineSize;//设置字体Font f = new Font(font.getFamily(), Font.BOLD, font.getSize());g2d.setFont(f);FontRenderContext context = g2d.getFontRenderContext();Rectangle2D rectangle = f.getStringBounds(font.getText().substring(0, 1), context);float marginH = (float) (Math.abs(rectangle.getCenterY()) * 2 + marginW) + fixH;int oldW = marginW;if (isWithYin) {g2d.drawString(font.getText().substring(2, 3), marginW, marginH);marginW += rectangle.getCenterX() * 2 + (font.getSpace() == null ? INIT_BEGIN : font.getSpace());} else {marginW += rectangle.getCenterX() * 2 + (font.getSpace() == null ? INIT_BEGIN : font.getSpace());g2d.drawString(font.getText().substring(0, 1), marginW, marginH);}//拉伸BufferedImage nbi = new BufferedImage(imageSize, imageSize, bi.getType());Graphics2D ng2d = nbi.createGraphics();ng2d.setPaint(Color.RED);ng2d.drawImage(bi, 0, 0, imageSize, imageSize, null);//画正方形ng2d.setStroke(new BasicStroke(lineSize));ng2d.drawRect(0, 0, imageSize, imageSize);ng2d.dispose();bi = nbi;g2d = bi.createGraphics();g2d.setPaint(Color.RED);g2d.setFont(f);g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);if (isWithYin) {g2d.drawString(font.getText().substring(0, 1), marginW, marginH += fixH);rectangle = f.getStringBounds(font.getText(), context);marginH += Math.abs(rectangle.getHeight());g2d.drawString(font.getText().substring(1), marginW, marginH);} else {g2d.drawString(font.getText().substring(1, 2), oldW, marginH += fixH);rectangle = f.getStringBounds(font.getText(), context);marginH += Math.abs(rectangle.getHeight());g2d.drawString(font.getText().substring(2, 3), oldW, marginH);}return bi;}/*** 画四字*/private static BufferedImage drawFourFont(BufferedImage bi, SealFont font, int lineSize, int imageSize, int fixH, int fixW) {int marginW = fixW + lineSize;//拉伸BufferedImage nbi = new BufferedImage(imageSize, imageSize, bi.getType());Graphics2D ng2d = nbi.createGraphics();ng2d.setPaint(Color.RED);ng2d.drawImage(bi, 0, 0, imageSize, imageSize, null);//画正方形ng2d.setStroke(new BasicStroke(lineSize));ng2d.drawRect(0, 0, imageSize, imageSize);ng2d.dispose();bi = nbi;Graphics2D g2d = bi.createGraphics();g2d.setPaint(Color.RED);g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);FontRenderContext context = g2d.getFontRenderContext();Font f = new Font(font.getFamily(), Font.BOLD, font.getSize());g2d.setFont(f);Rectangle2D rectangle = f.getStringBounds(font.getText().substring(0, 1), context);float marginH = (float) (Math.abs(rectangle.getCenterY()) * 2 + marginW) + fixH;g2d.drawString(font.getText().substring(2, 3), marginW, marginH);int oldW = marginW;marginW += Math.abs(rectangle.getCenterX()) * 2 + (font.getSpace() == null ? INIT_BEGIN : font.getSpace());g2d.drawString(font.getText().substring(0, 1), marginW, marginH);marginH += Math.abs(rectangle.getHeight());g2d.drawString(font.getText().substring(3, 4), oldW, marginH);g2d.drawString(font.getText().substring(1, 2), marginW, marginH);return bi;}
}

测试样例

package cn.hong.pdf;/*** <b>* </b><br><br><i>Description</i> :* <br><br>Date: 2022/12/26 ${time}    <br>Author : */
public class SealSample {public static void main(String[] args) throws Exception {PrivateSeal_1();/*OfficialSeal_1();OfficialSeal_2();OfficialSeal_3();PrivateSeal_2();*/}public static void OfficialSeal_1() throws Exception {Seal.builder().size(200).borderCircle(SealCircle.builder().line(4).width(95).height(95).build()).mainFont(SealFont.builder().text("小毛专属签章").family("隶书").size(22).space(22.0).margin(4).build()).centerFont(SealFont.builder().text("★").size(60).build()).titleFont(SealFont.builder().text("电子签章").size(16).space(8.0).margin(54).build()).build().draw("E:/test/seal/公章1.png");}public static void OfficialSeal_2() throws Exception {Seal.builder().size(300).borderCircle(SealCircle.builder().line(5).width(140).height(140).build()).mainFont(SealFont.builder().text("小毛专属签章").size(35).space(35.0).margin(10).build()).centerFont(SealFont.builder().text("★").size(100).build()).titleFont(SealFont.builder().text("电子签章").size(22).space(10.0).margin(68).build()).build().draw("E:/test/seal/公章2.png");}public static void OfficialSeal_3() throws Exception {Seal.builder().size(300).borderCircle(SealCircle.builder().line(3).width(144).height(100).build()).borderInnerCircle(SealCircle.builder().line(1).width(140).height(96).build()).mainFont(SealFont.builder().text("小毛专属签章").size(25).space(12.0).margin(10).build()).centerFont(SealFont.builder().text("NO.5201314").size(20).build()).titleFont(SealFont.builder().text("电子合同专用章").size(20).space(9.0).margin(64).build()).build().draw("E:/test/seal/公章3.png");}public static void PrivateSeal_1() throws Exception {Seal.builder().size(300).borderSquare(16).mainFont(SealFont.builder().text("小毛").size(120).build()).build().draw("E:/test/seal/私章1.png");}public static void PrivateSeal_2() throws Exception {Seal.builder().size(300).borderSquare(16).mainFont(SealFont.builder().text("小毛印").size(120).build()).build().draw("E:/test/seal/私章2.png");}
}

示例

关于Java生成电子签章相关推荐

  1. java PDF电子签章、文件拆分、文件合并

    java PDF电子签章.文件拆分.文件合并 日常工作常用问题记录,本次使用的是PDFBox实现的 pom依赖 <!-- https://mvnrepository.com/artifact/o ...

  2. JAVA进行电子签章

    JAVA法大大电子签章对接 对接流程 注册账号,获取customer_id用户编号 获取企业 or 个人 实名认证链接进行实名认证 实名证书申请,为用户颁发ca证书 个人签署合同 对接流程 1.注册账 ...

  3. JAVA生成椭圆形签章

    话不多说,直接贴代码吧. import java.awt.BasicStroke; import java.awt.Color; import java.awt.Font; import java.a ...

  4. java生成电子发票_C#/Java 动态生成电子发票

    电子发票是电商时代的产物,PDF发票是最常见的电子发票之一.在这篇文章中,我将给大家分享一个免费的动态生成PDF电子发票的C#方案,并在文章末尾附上Java解决方案. 典型的发票包含客户和供应商的名称 ...

  5. java生成电子证书_关于Java:使用Bouncycastle生成数字证书

    经过研究,我确定,为了在Java中以编程方式生成和签署证书,我需要bouncycastle库. 不幸的是,图书馆似乎在最近的某个时候进行了大修. 现在不推荐使用它们的很多类,而我可以找到的所有简单易懂 ...

  6. java生成电子发票_电子发票实例(iText)

    [实例简介] 1.首先右键解决方案还原 nuget包 2. 运行项目 则如下图 [实例截图] 生成的电子发票如下: 模板的内容如下: [核心代码] using MakePDFDemo.Model; u ...

  7. java 生成电子合同_java实现电子合同签名

    1.引入docx4j 使用maven仓库引入jar包 ```java org.docx4j docx4j 6.1.2 ``` 2.docx4j配置 可以不添加配置文件,但debug日志会提示找不到do ...

  8. 电子签章结构以及规范讲解

    前言: 安全电子签章是通过采用PKI公钥密码技术,将数字图像处理技术与电子签名技术进行结合,以电子形式对加盖印章图像数据的电子文档进行数字签名,以确保文档来源的真实性以及文档的完整性,防止对文档未经授 ...

  9. 电子签章系统标准与产品

    电子签章系统标准与产品 电子签章系统简介: 电子签章是将传统印章与电子签名技术结合,使电子签名操作和纸质文件盖章操作具有相同的可视效果.电子文档文档的电子签章具有和传统印章相同的功能和同等的法律效力. ...

最新文章

  1. 程序员会成为非常内卷的职业吗?
  2. MAP(Mean Average Precision):
  3. 美团点评资深产品专家刘远飞:了解业务要弄清楚这三个问题
  4. js里的null 与undefined
  5. PAT (Advanced Level) 1002. A+B for Polynomials (25)
  6. android linearlayout 方法,android布局----LinearLayout布局方式
  7. 数学--数论--Find Integer(勾股数定理)
  8. datatables.js 简单使用--多选框和服务器端分页
  9. 前端学习(1487):axios介绍
  10. 内部类-----Java
  11. 嵌入式操作系统内核原理和开发(基础)
  12. 累积分布函数_正态累积分布函数的上下界和两个近似初等函数
  13. linux找不到mysql服务_linux mysql 找不到 mysql/mysql.h
  14. python同时输出名字和时间_Python练习小工具——根据Exif的拍摄时间和设备名批量重命名照片...
  15. Java拦截器的简单使用
  16. 制作一个简单HTML中华传统文化网页(HTML+CSS)
  17. 学会了Python就可以做数据分析师?别天真了
  18. 潦草字体在线识别_潦草字体在线识别_遇到好看的字体?不会识别?教你如何快速识别字体...
  19. 【ES系列五】——集群搭建(多机集群单机多节点集群)
  20. 基于Go语言GoFrame+Layui的OA办公系统

热门文章

  1. 微信小程序动画(二):旋转
  2. 华为云计算HCIA学习笔记-第1章 云计算基础概念
  3. linux安全狗配置apache参数,Linux服务器安全狗Apache版本安装步骤
  4. 梦幻西游维护公告里面的可转服务器,梦幻西游:大量服务器即将开放平转,跨服倒卖人人都能做...
  5. 借助区块链技术,打通各部门_借助新兴的机器人技术在家里进行创新
  6. 教你用Python计算对量化交易至关重要的VWAP指标
  7. 手机服务器物品不掉落,[娱乐|其他]InventoryKeeper —— 死亡护符|消耗物品来开启死亡不掉落吧[1.7.10-1.17]...
  8. ansible之playbook的role用法
  9. 如何将实体关系图转换成关系模式
  10. java entryset循环_Java之Map遍历方式性能分析:ketSet 与 entrySet