From 47f157086a556d96e7bcfc9adfe17ecf7c154dfe Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期一, 08 六月 2020 17:27:14 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/div' into div --- fanli/src/main/java/com/yeshi/fanli/util/ImageUtil.java | 237 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 237 insertions(+), 0 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/util/ImageUtil.java b/fanli/src/main/java/com/yeshi/fanli/util/ImageUtil.java index ebbcd09..d0d060f 100644 --- a/fanli/src/main/java/com/yeshi/fanli/util/ImageUtil.java +++ b/fanli/src/main/java/com/yeshi/fanli/util/ImageUtil.java @@ -43,6 +43,243 @@ public class ImageUtil { + + /** + * 鍒嗘瀽娴锋姤鍥� + * @param qrcode + * @param portraitStream + * @param goods + * @return + */ + public static InputStream drawGoodsQuickhShare(InputStream qrcode, InputStream portraitStream, String inviteCode, + String mainPic, GoodsDetailVO goods) { + try { + String fontPath = "/usr/share/fonts/PingFang_Medium.ttf"; + String os = System.getProperty("os.name"); + if (os.toLowerCase().startsWith("win")) { + fontPath = "D:/PingFang_Medium.ttf"; + } + + String fontBoldPath = "/usr/share/fonts/PingFang_Heavy_0.ttf"; + if (os.toLowerCase().startsWith("win")) { + fontBoldPath = "D:/PingFang_Heavy_0.ttf"; + } + Font font24 = Font.createFont(Font.PLAIN, new File(fontPath)).deriveFont(24.0f); + Font font26 = Font.createFont(Font.PLAIN, new File(fontPath)).deriveFont(26.0f); + Font boldFont36 = Font.createFont(Font.PLAIN, new File(fontBoldPath)).deriveFont(36.0f); + + int px = 640; // 鍥剧墖瀹藉害 + // int py = 1154; // 鍥剧墖楂樺害 鏄剧ず閭�璇风爜 + int py = 1060; // 鍥剧墖楂樺害 + final BufferedImage targetImg = new BufferedImage(px, py, BufferedImage.TYPE_INT_RGB); + HashMap<Key, Object> mapH = new HashMap<Key, Object>(); + mapH.put(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);// 鎶楅敮榻柯狅紙鎶楅敮榻挎�诲紑鍏筹級聽聽 + mapH.put(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_GASP);// 鏂囧瓧鎶楅敮榻柯� + + final Graphics2D g2d = (Graphics2D) targetImg.getGraphics(); + g2d.setRenderingHints(mapH); + g2d.setColor(Color.WHITE); + g2d.fillRect(0, 0, px, py); + + int x = 640; + int y = 640; + int spacing = 20; // 鍙宠竟璺� + + // 1銆佺敾鍟嗗搧涓诲浘 + InputStream picStream = HttpUtil.getAsInputStream(mainPic); + // InputStream picStream = + // ImageUtil.class.getClassLoader().getResourceAsStream("image/share/test_pic1.jpg"); + g2d.drawImage(ImageIO.read(picStream), 0, 0, x, y, null); + + // 2銆佺敾鏉ユ簮鍥炬爣 + int length = 10; + int row1 = 450; + int iconWidth = 72; + String source = ""; + InputStream icon = null; + int goodsType = goods.getGoodsType(); + if (goodsType == Constant.SOURCE_TYPE_TAOBAO) { + source = "娣樺疂"; + if (goods.getShopType() == 10) { + icon = ImageUtil.class.getClassLoader().getResourceAsStream("image/icon_tb.png"); + } else { + icon = ImageUtil.class.getClassLoader().getResourceAsStream("image/icon_tm.png"); + } + } else if (goodsType == Constant.SOURCE_TYPE_JD) { + source = "浜笢"; + icon = ImageUtil.class.getClassLoader().getResourceAsStream("image/icon_jd.png"); + } else if (goodsType == Constant.SOURCE_TYPE_PDD) { + source = "鎷煎澶�"; + length = 9; + row1 = row1 - 26; + iconWidth = iconWidth + 28; + icon = ImageUtil.class.getClassLoader().getResourceAsStream("image/icon_pdd.png"); + } else { + return null; + } + g2d.drawImage(ImageIO.read(icon), spacing, y + 20, iconWidth, 34, null); + + // 3銆佸晢鍝佹爣棰樺唴瀹� + int row = 0; + String title = goods.getTitle(); + length = ImageUtil.getTextLengthByWidth(g2d, font26, title, row1, length); + g2d.setFont(font26); + g2d.setColor(new Color(0, 0, 0)); + g2d.drawString(title.substring(0, length), spacing + iconWidth + 5, y + 45 + row * 36); + + row++; + title = title.substring(length); + int length2 = ImageUtil.getTextLengthByWidth(g2d, font26, title, 600, 11); + if (length2 > 24) { + g2d.drawString(title.substring(0, 21) + "...", spacing, y + 45 + row * 36); + } else { + g2d.drawString(title.substring(0, length2), spacing, y + 45 + row * 36); + } + + int baoYouLength = spacing; + if (!goods.isHasCoupon()) { + // 鏃犲埜 + g2d.setColor(new Color(229, 0, 92)); + g2d.drawString("楼 ", spacing, y + 125); + g2d.setFont(boldFont36); + g2d.drawString(MoneyBigDecimalUtil.getWithNoZera(goods.getZkPrice()).toString(), spacing + 21, y + 125); + } else { + // 鍒稿悗浠� + g2d.setFont(font26); + g2d.setColor(new Color(229, 0, 92)); + g2d.drawString("鍒稿悗浠� 楼 ", spacing, y + 125); + + g2d.setFont(boldFont36); + String couponPrice = MoneyBigDecimalUtil.getWithNoZera(goods.getCouponPrice()).toString(); + g2d.drawString(couponPrice, spacing + 116, y + 125); + + FontMetrics fm2 = g2d.getFontMetrics(boldFont36); + int textLength1 = 116 + fm2.stringWidth(couponPrice); + + // 娓犻亾鍘熶环 + g2d.setColor(new Color(153, 153, 153)); + g2d.setFont(font24); + g2d.drawString(goods.getPriceName() + " 楼 " + MoneyBigDecimalUtil.getWithNoZera(goods.getZkPrice()), + spacing + textLength1 + 10, y + 125); + + // 鍒稿瓧 + InputStream quan = ImageUtil.class.getClassLoader().getResourceAsStream("image/icon_quan.png"); + g2d.drawImage(ImageIO.read(quan), spacing, y + 140, 47, 40, null); + // 鍒搁潰棰� + String quanAmount = "楼 " + goods.getCouponInfo().getAmount(); + FontMetrics fm = g2d.getFontMetrics(font26); + int textLength = fm.stringWidth(quanAmount); + + g2d.setFont(font26); + g2d.setColor(new Color(229, 0, 92)); + g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); + g2d.drawRoundRect(spacing + 42, y + 140, textLength + 20, 39, 10, 10); + g2d.drawString(quanAmount, spacing + 55, y + 170); + + baoYouLength = spacing + 42 + textLength + 20 + 20; + } + + // 鑷惀 銆佸寘閭� + InputStream ziying = null; + if (goods.getShopType() == 21) { + ziying = ImageUtil.class.getClassLoader().getResourceAsStream("image/icon_ziying.png"); + g2d.drawImage(ImageIO.read(ziying), baoYouLength, y + 150, 60, 30, null); + } else if (goods.isBaoyou()) { + ziying = ImageUtil.class.getClassLoader().getResourceAsStream("image/icon_baoyou.png"); + g2d.drawImage(ImageIO.read(ziying), baoYouLength, y + 150, 60, 30, null); + } + + // 閿�閲� + String sale = null; + int salesType = goods.getSalesType(); + if (salesType == 1) { + sale = "鏈堥攢"; + } else if (salesType == 2) { + sale = "2灏忔椂閿�閲�"; + } else if (salesType == 3) { + sale = "浠婃棩閿�閲�"; + } else if (salesType == 4) { + sale = "鎬婚攢閲�"; + } else { + sale = "鏈堥攢"; + } + sale = sale + " " + goods.getSalesCount(); + FontMetrics fm = g2d.getFontMetrics(font24); + int textLength = fm.stringWidth(sale); + g2d.setFont(font24); + g2d.setColor(new Color(153, 153, 153)); + g2d.drawString(sale, spacing + 605 - textLength, y + 125); + + // 涓嬪崟鎻愮ず + InputStream downTip = null; + if (goodsType == Constant.SOURCE_TYPE_TAOBAO) { + downTip = ImageUtil.class.getClassLoader().getResourceAsStream("image/share/down_tip_tb.png"); + } else { + downTip = ImageUtil.class.getClassLoader().getResourceAsStream("image/share/down_tip_jd_pdd.png"); + } + g2d.drawImage(ImageIO.read(downTip), spacing, y + 200, 382, 203, null); + + // 浜岀淮鐮佸浘妗� + InputStream codeFrame = ImageUtil.class.getClassLoader() + .getResourceAsStream("image/share/qr_code_frame01.png"); + g2d.drawImage(ImageIO.read(codeFrame), spacing + 405, y + 200, 200, 203, null); + + // 鐢讳簩缁寸爜 + int codeSize = 170; + int pX = spacing + 422; + int pY = y + 217; + g2d.drawImage(ImageIO.read(qrcode), pX, pY, codeSize, codeSize, null); + + int portraitSize = 200 * 5 / 23; + int pPX = pX + codeSize / 2 - portraitSize / 2; + int pPY = pY + codeSize / 2 - portraitSize / 2; + // 澶村儚鐧借壊杈规 + g2d.setColor(Color.WHITE); + g2d.fillRoundRect(pPX - 4, pPY - 4, portraitSize + 8, portraitSize + 8, 5, 5); + g2d.setRenderingHints(mapH); + // 鐢诲ご鍍� + BufferedImage portraitImg = ImageIO.read(portraitStream); + portraitImg = ImageUtil.zoomInImage(portraitImg, portraitSize, portraitSize); + portraitImg = ImageUtil.roundImage(portraitImg, 10); + g2d.drawImage(portraitImg, pPX, pPY, portraitSize, portraitSize, null); + + g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); + g2d.setColor(new Color(255, 231, 224)); + g2d.fillRoundRect(spacing, y + 420, 607, 79, 10, 10); + + InputStream banliStream = ImageUtil.class.getClassLoader().getResourceAsStream("image/banlikuaisheng.png"); + g2d.drawImage(ImageIO.read(banliStream), spacing + 20, y + 440, 170, 38, null); + + inviteCode = "閭�璇风爜:" + inviteCode; + Font font26d28 = Font.createFont(Font.PLAIN, new File(fontPath)).deriveFont(26.28f); + FontMetrics fmcode = g2d.getFontMetrics(font26d28); + int codeLength = fmcode.stringWidth(inviteCode); + // 閭�璇风爜鑳屾櫙 + g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); + g2d.setColor(new Color(229, 71, 27)); + g2d.fillRoundRect(spacing + (600 - (int) (codeLength * 1.1)), y + 440, 10 + codeLength, 37, 10, 10); + // 閭�璇风爜鏂囧瓧 + g2d.setFont(font26d28); + g2d.setColor(new Color(255, 255, 255)); + g2d.drawString(inviteCode, spacing + (600 - (int) (codeLength * 1.1) + 5), y + 468); + + g2d.dispose(); + + ByteArrayOutputStream aos = new ByteArrayOutputStream(); + ImageIO.write(targetImg, "JPEG", aos); + return new ByteArrayInputStream(aos.toByteArray()); + } catch (Exception e) { + e.printStackTrace(); + try { + LogHelper.errorDetailInfo(e); + } catch (Exception e1) { + e1.printStackTrace(); + } + } + return null; + + } + // 鐢诲晢鍝佸垎浜浘 public static InputStream drawGoodsShareXCX(InputStream qrcode, UserInfo user, GoodsDetailVO goods) { try { -- Gitblit v1.8.0