|
@@ -56,9 +56,8 @@ public class GenerateImage {
|
|
|
if (font == null) {
|
|
|
File fontFile = new ClassPathResource("font/SourceHanSansSC-Regular-2.otf").getFile();
|
|
|
font = Font.createFont(Font.TRUETYPE_FONT, fontFile);
|
|
|
-// 改变字体大小
|
|
|
- font = font.deriveFont((float) (HEIGHT - 10));
|
|
|
}
|
|
|
+ font.deriveFont((float) (HEIGHT - 10));
|
|
|
graphics.setFont(font);
|
|
|
|
|
|
int desX, desY, distance = 16;
|