1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
| @main def addTextToImage(): Unit = { val inputFile = new File("src/main/scala/img/input.jpg") val bufferedImage = ImageIO.read(inputFile) val g2d: Graphics2D = bufferedImage.createGraphics()
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON) g2d.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON)
val title = "全体運" val content = "能用善良的语言让周围的人感到幸福的日子"
val imgWidth = bufferedImage.getWidth / 2 val imgHeight = bufferedImage.getHeight
val titleX = title.length match case length if length == 3 => (imgWidth * 0.39).toInt case length if length >= 2 => (imgWidth * 0.46).toInt case _ => (imgWidth * 0.525).toInt val titleY = 108
g2d.setFont(new Font("LXGW WenKai Screen", Font.PLAIN, 30))
var gradient = GradientPaint( titleX, titleY, Color.RED, titleX + 100, titleY, Color.BLUE )
g2d.setPaint(gradient)
g2d.drawString(title, titleX, titleY)
var contentX = content.length match case length if length >= 19 => (imgWidth * 0.39).toInt case length if length >= 10 => (imgWidth * 0.47).toInt case _ => (imgWidth * 0.54).toInt var contentY = (imgHeight * 0.4).toInt
g2d.setFont(new Font("LXGW WenKai Screen", Font.PLAIN, 23))
val lineHeight = g2d.getFontMetrics.getHeight
val colorX = contentX val colorY = contentY for (char <- content) { gradient = GradientPaint( colorX, colorY, Color(0, 0, 0), contentX, contentY + 200, Color(250, 208, 196) ) g2d.setPaint(gradient) g2d.drawString(char.toString, contentX, contentY) contentY += lineHeight if (contentY >= (imgHeight * 0.9).toInt) { contentY = (imgHeight * 0.4).toInt contentX += (imgWidth * 0.15).toInt } }
g2d.dispose()
val outPutFile = new File("src/main/scala/img/output.jpg") ImageIO.write(bufferedImage, "jpg", outPutFile)
println("保存成功!") }
|