日本不卡不码高清免费观看,久久国产精品久久w女人spa,黄色aa久久,三上悠亚国产精品一区二区三区

您的位置:首頁技術文章
文章詳情頁

Java zxing生成條形碼和二維嗎代碼實例

瀏覽:155日期:2022-09-05 08:19:21

在如今的生活中,二維碼隨處可見,二維碼的出現既減少了宣傳紙張的浪費,又方便了人們的生活。這一篇我來說說 Java 利用第三方 Jar 包 zxing 生成二維碼。

依賴

<dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>3.3.3</version></dependency><dependency> <groupId>com.google.zxing</groupId> <artifactId>javase</artifactId> <version>3.3.3</version></dependency>

生成二維碼

package code;import com.google.zxing.*;import com.google.zxing.common.BitMatrix;import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;import org.apache.commons.codec.binary.Base64;import org.apache.commons.codec.binary.Base64OutputStream;import javax.imageio.ImageIO;import java.awt.*;import java.awt.image.BufferedImage;import java.io.*;import java.util.HashMap;import java.util.Map;public class QRCodeKit { public static final String QRCODE_DEFAULT_CHARSET = 'UTF-8'; public static final int QRCODE_DEFAULT_HEIGHT = 300; public static final int QRCODE_DEFAULT_WIDTH = 300; private static final int BLACK = 0xFF000000; private static final int WHITE = 0xFFFFFFFF; public static void main(String[] args) throws IOException, NotFoundException { String data = 'https://www.jianshu.com/p/748aa03cc1e8?ddd=dsdsdsdsddsdsdsdsdsdsdsdsd'; File logoFile = new File('C:/1.png'); BufferedImage image = QRCodeKit.createQRCodeWithLogo(data, logoFile); ImageIO.write(image, 'png', new File('D:/result7.png')); System.out.println('done'); } /** * Create qrcode with default settings * * @param data * @return * @author stefli */ public static BufferedImage createQRCode(String data) { return createQRCode(data, QRCODE_DEFAULT_WIDTH, QRCODE_DEFAULT_HEIGHT); } /** * Create qrcode with default charset * * @param data * @param width * @param height * @return * @author stefli */ public static BufferedImage createQRCode(String data, int width, int height) { return createQRCode(data, QRCODE_DEFAULT_CHARSET, width, height); } /** * Create qrcode with specified charset * * @param data * @param charset * @param width * @param height * @return * @author stefli */ public static BufferedImage createQRCode(String data, String charset, int width, int height) { Map hint = new HashMap(); hint.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H); hint.put(EncodeHintType.CHARACTER_SET, charset); return createQRCode(data, charset, hint, width, height); } /** * Create qrcode with specified hint * * @param data * @param charset * @param hint * @param width * @param height * @return * @author stefli */ public static BufferedImage createQRCode(String data, String charset, Map<EncodeHintType, ?> hint, int width, int height) { BitMatrix matrix; try { matrix = new MultiFormatWriter().encode(new String(data.getBytes(charset), charset), BarcodeFormat.QR_CODE, width, height, hint); return toBufferedImage(matrix); } catch (WriterException e) { throw new RuntimeException(e.getMessage(), e); } catch (Exception e) { throw new RuntimeException(e.getMessage(), e); } } /** * toBufferedImage * * @param matrix * @return */ public static BufferedImage toBufferedImage(BitMatrix matrix) { int width = matrix.getWidth(); int height = matrix.getHeight(); BufferedImage image = new BufferedImage(width, height,BufferedImage.TYPE_INT_RGB); for (int x = 0; x < width; x++) { for (int y = 0; y < height; y++) {image.setRGB(x, y, matrix.get(x, y) ? BLACK : WHITE); } } return image; } /** * Create qrcode with default settings and logo * * @param data * @param logoFile * @return * @author stefli */ public static BufferedImage createQRCodeWithLogo(String data, File logoFile) { return createQRCodeWithLogo(data, QRCODE_DEFAULT_WIDTH, QRCODE_DEFAULT_HEIGHT, logoFile); } /** * Create qrcode with default charset and logo * * @param data * @param width * @param height * @param logoFile * @return * @author stefli */ public static BufferedImage createQRCodeWithLogo(String data, int width, int height, File logoFile) { return createQRCodeWithLogo(data, QRCODE_DEFAULT_CHARSET, width, height, logoFile); } /** * Create qrcode with specified charset and logo * * @param data * @param charset * @param width * @param height * @param logoFile * @return * @author stefli */ @SuppressWarnings({'unchecked', 'rawtypes'}) public static BufferedImage createQRCodeWithLogo(String data, String charset, int width, int height, File logoFile) { Map hint = new HashMap(); hint.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H); hint.put(EncodeHintType.CHARACTER_SET, charset); hint.put(EncodeHintType.MARGIN, 2); return createQRCodeWithLogo(data, charset, hint, width, height, logoFile); } /** * Create qrcode with specified hint and logo * * @param data * @param charset * @param hint * @param width * @param height * @param logoFile * @return * @author stefli */ public static BufferedImage createQRCodeWithLogo(String data, String charset, Map<EncodeHintType, ?> hint, int width, int height, File logoFile) { try { BufferedImage qrcode = createQRCode(data, charset, hint, width, height); BufferedImage logo = ImageIO.read(logoFile); BufferedImage combined = new BufferedImage(height, width, BufferedImage.TYPE_INT_ARGB); Graphics2D g = (Graphics2D) combined.getGraphics(); //設置二維碼大小,太大,會覆蓋二維碼,此處20% int logoWidth = logo.getWidth() > qrcode.getWidth() * 2 / 10 ? (qrcode.getWidth() * 2 / 10) : logo.getWidth(); int logoHeight = logo.getHeight() > qrcode.getHeight() * 2 / 10 ? (qrcode.getHeight() * 2 / 10) : logo.getHeight(); //設置logo圖片放置位置--中心 int x = Math.round((qrcode.getWidth() - logoWidth) / 2); int y = Math.round((qrcode.getHeight() - logoHeight) / 2); g.drawImage(qrcode, 0, 0, null); g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 1f)); //開始合并繪制圖片 g.drawImage(logo, x, y, logoWidth, logoHeight, null); g.drawRoundRect(x, y, logoWidth, logoHeight, 15, 15); //logo邊框大小 g.setStroke(new BasicStroke(3)); //logo邊框顏色 g.setColor(Color.white); g.drawRoundRect(x, y, logoWidth, logoHeight, 15, 15); g.dispose(); logo.flush(); qrcode.flush(); return combined; } catch (IOException e) { throw new RuntimeException(e.getMessage(), e); } catch (Exception e) { throw new RuntimeException(e.getMessage(), e); } } /** * Return base64 for image * * @param image * @return * @author stefli */ public static String getImageBase64String(BufferedImage image) { String result = null; try { ByteArrayOutputStream os = new ByteArrayOutputStream(); OutputStream b64 = new Base64OutputStream(os); ImageIO.write(image, 'png', b64); result = os.toString('UTF-8'); } catch (UnsupportedEncodingException e) { throw new RuntimeException(e.getMessage(), e); } catch (IOException e) { throw new RuntimeException(e.getMessage(), e); } return result; } /** * Decode the base64Image data to image * * @param base64ImageString * @param file * @author stefli */ public static void convertBase64StringToImage(String base64ImageString, File file) { FileOutputStream os; try { Base64 d = new Base64(); byte[] bs = d.decode(base64ImageString); os = new FileOutputStream(file.getAbsolutePath()); os.write(bs); os.close(); } catch (FileNotFoundException e) { throw new RuntimeException(e.getMessage(), e); } catch (IOException e) { throw new RuntimeException(e.getMessage(), e); } catch (Exception e) { throw new RuntimeException(e.getMessage(), e); } }}

import java.awt.Color;import java.awt.Font;import java.awt.Graphics2D;import java.awt.image.BufferedImage;import java.io.ByteArrayOutputStream;import java.io.File;import java.util.Arrays;import java.util.Date;import java.util.HashMap;import java.util.Map; import javax.imageio.ImageIO; import org.apache.commons.codec.binary.Base64;import org.apache.commons.io.IOUtils;import org.apache.commons.lang.StringUtils; import com.google.zxing.BarcodeFormat;import com.google.zxing.BinaryBitmap;import com.google.zxing.DecodeHintType;import com.google.zxing.EncodeHintType;import com.google.zxing.LuminanceSource;import com.google.zxing.MultiFormatReader;import com.google.zxing.MultiFormatWriter;import com.google.zxing.Result;import com.google.zxing.WriterException;import com.google.zxing.client.j2se.BufferedImageLuminanceSource;import com.google.zxing.client.j2se.MatrixToImageConfig;import com.google.zxing.common.BitMatrix;import com.google.zxing.common.HybridBinarizer;import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel; /** * ZXing二維碼生成/解碼 */public class ZXingCode { public static void main(String[] args) throws WriterException { try { String logoPath = 'F:/logo.jpg'; String logo_savePath = 'F:/' + new Date().getTime() + '.png'; String str = toQRCode('http://blog.csdn.net/phil_jing', logoPath, logo_savePath, 'CSDN博客'); System.out.println('finished zxing QRcode encode.'); System.out.println(Arrays.toString(Base64.decodeBase64(str))); } catch (Exception e) { e.printStackTrace(); } } /** * 生成二維碼圖片 * @param content * @param logoPath * @param savePath * @param remark * @return */ public static String toQRCode(String content, String logoPath, String savePath, String remark) { int width = 400, height = 400; try { BufferedImage bim = toBufferedImage(content, BarcodeFormat.QR_CODE, width, height, toDecodeHintType()); return encode(bim, logoPath, savePath, new LogoConfig(), remark); } catch (Exception e) { e.printStackTrace(); } return null; } /** * 是否需要給二維碼圖片添加Logo * @param bim * @param logoPath * @param savePath * @param logoConfig * @param remark * @return */ private static String encode(BufferedImage bim, String logoPath, String savePath, LogoConfig logoConfig, String remark) { ByteArrayOutputStream baos = null; try { /** * 讀取二維碼圖片 */ BufferedImage image = bim; if(StringUtils.isBlank(logoPath)){ //不需要添加logobaos = new ByteArrayOutputStream();baos.flush();ImageIO.write(image, 'png', baos);//流輸出//ImageIO.write(bim, 'png', new File(savePath));//直接寫入某路徑,本地測試加上return Base64.encodeBase64URLSafeString(baos.toByteArray());//Encodes binary data using a URL-safe variation of the base64 algorithm } /** * 構建繪圖對象 */ Graphics2D g = image.createGraphics(); /** * 讀取Logo圖片 */ BufferedImage logo = ImageIO.read(new File(logoPath)); /** * 設置logo的大小,設置為二維碼圖片的20%,因為過大會蓋掉二維碼 */ int widthLogo = logo.getWidth(null) > image.getWidth() * 3 / 10 ? (image.getWidth() * 3 / 10) : logo.getWidth(null), heightLogo = logo.getHeight(null) > image.getHeight() * 3 / 10 ? (image.getHeight() * 3 / 10) : logo.getWidth(null); /** * logo放在中心 */ int x = (image.getWidth() - widthLogo) / 2; int y = (image.getHeight() - heightLogo) / 2; /** * logo放在右下角 int x = (image.getWidth() - widthLogo); int y = (image.getHeight() - heightLogo); */ // 開始繪制圖片 g.drawImage(logo, x, y, widthLogo, heightLogo, null); // g.drawRoundRect(x, y, widthLogo, heightLogo, 15, 15); // g.setStroke(new BasicStroke(logoConfig.getBorder())); // g.setColor(logoConfig.getBorderColor()); // g.drawRect(x, y, widthLogo, heightLogo); g.dispose(); // 把備注添加上去,備注不要太長超過兩行會自動截取 if ( StringUtils.isNotBlank(remark)){// 新的圖片,把帶logo的二維碼下面加上文字BufferedImage outImage = new BufferedImage(400, 445, BufferedImage.TYPE_4BYTE_ABGR);Graphics2D outg = outImage.createGraphics();// 畫二維碼到新的面板outg.drawImage(image, 0, 0, image.getWidth(), image.getHeight(), null);// 畫文字到新的面板outg.setColor(Color.BLACK);outg.setFont(new Font('微軟雅黑', Font.BOLD, 30)); // 字體、字型、字號int strWidth = outg.getFontMetrics().stringWidth(remark);if (strWidth > 399) { // //長度過長就截取前面部分 // outg.drawString(productName, 0, image.getHeight() + // (outImage.getHeight() - image.getHeight())/2 + 5 ); //畫文字 String productName1 = remark.substring(0, remark.length() / 2); String productName2 = remark.substring(remark.length() / 2, remark.length()); int strWidth1 = outg.getFontMetrics().stringWidth(productName1); int strWidth2 = outg.getFontMetrics().stringWidth(productName2); outg.drawString(productName1, 200 - strWidth1 / 2, image.getHeight() + (outImage.getHeight() - image.getHeight()) / 2 + 12); BufferedImage outImage2 = new BufferedImage(400, 485, BufferedImage.TYPE_4BYTE_ABGR); Graphics2D outg2 = outImage2.createGraphics(); outg2.drawImage(outImage, 0, 0, outImage.getWidth(), outImage.getHeight(), null); outg2.setColor(Color.BLACK); outg2.setFont(new Font('微軟雅黑', Font.BOLD, 30)); // 字體、字型、字號 outg2.drawString(productName2, 200 - strWidth2 / 2, outImage.getHeight() + (outImage2.getHeight() - outImage.getHeight()) / 2 + 5); outg2.dispose(); outImage2.flush(); outImage = outImage2;} else { outg.drawString(remark, 200 - strWidth / 2, image.getHeight() + (outImage.getHeight() - image.getHeight()) / 2 + 12); // 畫文字}outg.dispose();outImage.flush();image = outImage; } logo.flush(); image.flush(); baos = new ByteArrayOutputStream(); baos.flush(); ImageIO.write(image, 'png', baos); //不用MatrixToImageWriter //ImageIO.write(image, 'png', new File(savePath));//直接寫入某路徑 return Base64.encodeBase64URLSafeString(baos.toByteArray()); } catch (Exception e) { e.printStackTrace(); } finally { IOUtils.closeQuietly(baos); } return null; } /** * 生成二維碼bufferedImage圖片 * @param content 編碼內容 * @param barcodeFormat 編碼類型 * @param width 圖片寬度 * @param height 圖片高度 * @param hints 設置參數 * @return */ private static BufferedImage toBufferedImage(String content, BarcodeFormat barcodeFormat, int width, int height, Map<EncodeHintType, ?> hints) { MultiFormatWriter multiFormatWriter = null; BitMatrix bitMatrix = null; BufferedImage image = null; try { multiFormatWriter = new MultiFormatWriter(); // 參數順序分別為:編碼內容,編碼類型,生成圖片寬度,生成圖片高度,設置參數 bitMatrix = multiFormatWriter.encode(content, barcodeFormat, width, height, hints); int w = bitMatrix.getWidth(); int h = bitMatrix.getHeight(); image = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB); // 開始利用二維碼數據創建Bitmap圖片,分別設為黑(0xFFFFFFFF)白(0xFF000000)兩色 for (int x = 0; x < w; x++) {for (int y = 0; y < h; y++) { image.setRGB(x, y, bitMatrix.get(x, y) ? MatrixToImageConfig.BLACK : MatrixToImageConfig.WHITE);} } } catch (WriterException e) { e.printStackTrace(); } return image; } /** * 設置二維碼的格式參數 * @return */ private static Map<EncodeHintType, Object> toDecodeHintType() { // 用于設置QR二維碼參數 Map<EncodeHintType, Object> hints = new HashMap<EncodeHintType, Object>(); // 設置QR二維碼的糾錯級別(H為最高級別)具體級別信息 hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H); // 設置編碼方式 hints.put(EncodeHintType.CHARACTER_SET, 'UTF-8'); hints.put(EncodeHintType.MARGIN, 0); //hints.put(EncodeHintType.MAX_SIZE, 350);//Only applicable to Data Matrix now //hints.put(EncodeHintType.MIN_SIZE, 100);//Only applicable to Data Matrix now return hints; } /** * 二維碼解碼 * * @param imgPath * @return */ public static String decode(String imgPath) { BufferedImage image = null; Result result = null; try { File file = new File(imgPath); image = ImageIO.read(file); if (image == null) {System.out.println('the decode image may be not exit.'); } LuminanceSource source = new BufferedImageLuminanceSource(image); BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source)); Map<DecodeHintType, Object> hints = new HashMap<DecodeHintType, Object>(); hints.put(DecodeHintType.CHARACTER_SET, 'UTF-8'); result = new MultiFormatReader().decode(bitmap, hints); return result.getText(); } catch (Exception e) { e.printStackTrace(); } return null; }}/** * Logo圖片配置 */class LogoConfig { // logo默認邊框顏色 public static final Color DEFAULT_BORDERCOLOR = Color.WHITE; // logo默認邊框寬度 public static final int DEFAULT_BORDER = 2; // logo大小默認為照片的1/5 public static final int DEFAULT_LOGOPART = 5; private final int border = DEFAULT_BORDER; private final Color borderColor; private final int logoPart; /** * Creates a default config with on color {@link #BLACK} and off color * {@link #WHITE}, generating normal black-on-white barcodes. */ public LogoConfig() { this(DEFAULT_BORDERCOLOR, DEFAULT_LOGOPART); } public LogoConfig(Color borderColor, int logoPart) { this.borderColor = borderColor; this.logoPart = logoPart; } public Color getBorderColor() { return borderColor; } public int getBorder() { return border; } public int getLogoPart() { return logoPart; }}

生成條形碼

import java.awt.image.BufferedImage;import java.io.File; import javax.imageio.ImageIO; import com.google.zxing.BarcodeFormat;import com.google.zxing.BinaryBitmap;import com.google.zxing.LuminanceSource;import com.google.zxing.MultiFormatReader;import com.google.zxing.MultiFormatWriter;import com.google.zxing.Result;import com.google.zxing.client.j2se.BufferedImageLuminanceSource;import com.google.zxing.client.j2se.MatrixToImageWriter;import com.google.zxing.common.BitMatrix;import com.google.zxing.common.HybridBinarizer; /** * ZXing條形碼編碼/解碼 */public class ZxingCode { /** * 條形碼編碼 * * @param contents * @param width * @param height * @param imgPath */ public static void encode(String contents, int width, int height, String imgPath) { int codeWidth = 3 + // start guard(7 * 6) + // left bars+ // middle guard(7 * 6) + // right bars3; // end guard codeWidth = Math.max(codeWidth, width); try { BitMatrix bitMatrix = new MultiFormatWriter().encode(contents,BarcodeFormat.EAN_13, codeWidth, height, null); MatrixToImageWriter.writeToFile(bitMatrix, 'png', new File(imgPath)); } catch (Exception e) { e.printStackTrace(); } } /** * 條形碼解碼 * * @param imgPath * @return String */ public static String decode(String imgPath) { BufferedImage image = null; Result result = null; try { image = ImageIO.read(new File(imgPath)); if (image == null) {System.out.println('the decode image may be not exit.'); } LuminanceSource source = new BufferedImageLuminanceSource(image); BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source)); result = new MultiFormatReader().decode(bitmap, null); return result.getText(); } catch (Exception e) { e.printStackTrace(); } return null; } /** * @param args */ public static void main(String[] args) { String imgPath = 'F:/zxing_EAN-13.png'; String contents = '6926557300360'; int width = 105, height = 50; encode(contents, width, height, imgPath); System.out.println('finished zxing EAN-13 encode.'); String decodeContent = decode(imgPath); System.out.println('解碼內容如下:' + decodeContent); System.out.println('finished zxing EAN-13 decode.'); }}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Java
相關文章:
日本不卡不码高清免费观看,久久国产精品久久w女人spa,黄色aa久久,三上悠亚国产精品一区二区三区
模特精品在线| 久久精品国内一区二区三区| 欧美日韩黄网站| 免费精品视频| 国产日韩1区| 欧美成人a交片免费看| 日韩亚洲精品在线观看| 麻豆精品新av中文字幕| 你懂的亚洲视频| 国产精品极品在线观看| 亚洲成人不卡| 亚洲激情国产| 日本不卡高清| 亚洲91网站| 欧美国产先锋| av亚洲一区二区三区| 婷婷激情一区| 在线日韩视频| 国产成人精品一区二区免费看京| 中文字幕一区二区三区在线视频| 亚洲欧美激情诱惑| 天堂成人国产精品一区| 日本精品国产| av资源新版天堂在线| 久久九九99| 国产精品欧美三级在线观看| 三级在线观看一区二区| 亚洲免费在线| 国产精品乱战久久久| 亚洲福利国产| 亚洲欧洲专区| 欧美激情福利| 视频一区中文字幕| 国产va在线视频| 国产精品久久久久蜜臀| 精品亚洲美女网站| 91精品在线免费视频| av资源中文在线天堂| 日韩亚洲精品在线观看| 日韩一区亚洲二区| 亚洲精品少妇| 国产精品一国产精品k频道56| 国产精品色网| 国产伦理久久久久久妇女| 美女视频网站久久| 日韩中文欧美| 91精品一区| 日韩一级精品| 国产亚洲一级| 日本大胆欧美人术艺术动态| 日韩福利一区| 欧美激情福利| 国产激情欧美| 日韩精品一区二区三区免费观看| 日韩影院二区| 欧美专区一区二区三区| 69堂精品视频在线播放| 日韩av一区二区三区| 麻豆精品在线播放| 国产精品av久久久久久麻豆网| 亚洲神马久久| 国产极品一区| 国产综合亚洲精品一区二| 亚洲乱码久久| 国产99在线| 亚洲资源在线| 中文一区一区三区高中清不卡免费| 激情欧美国产欧美| 欧美日韩亚洲一区三区| 日本久久成人网| 亚洲字幕久久| 久久女人天堂| 免费久久久久久久久| 国产精品久久久久久久免费软件| 日韩中文在线播放| 日韩成人午夜精品| 国户精品久久久久久久久久久不卡 | 亚洲精品在线观看91| 欧美日一区二区三区在线观看国产免| 国产在线看片免费视频在线观看| 亚洲精品在线国产| 99视频精品免费观看| 水野朝阳av一区二区三区| 精品九九久久| 一区在线观看| 久久久久久婷| 国产欧美日韩视频在线| 国产精品人人爽人人做我的可爱| 电影91久久久| 日韩欧美中文字幕电影| 99久久亚洲精品蜜臀| 国产videos久久| 国产欧美一区二区三区精品观看 | 欧美精品资源| 国产精品国产三级国产在线观看| 日韩av中文字幕一区二区三区| 日韩成人综合| 在线天堂资源www在线污| 国产成人久久| 国产va免费精品观看精品视频| 国产精品红桃| 国产欧美日韩影院| 国产精品成人自拍| 国产精品嫩模av在线| 国产精品久久乐| 国产精品一区二区精品| 国产欧美日韩一区二区三区四区| 日韩国产一区二| 国产精品伊人| 亚洲欧洲一区| 福利一区二区免费视频| 日韩中文欧美在线| 精品一区在线| 欧美成a人国产精品高清乱码在线观看片在线观看久 | 日韩专区一卡二卡| 亚洲伊人影院| 91麻豆国产自产在线观看亚洲| 最新中文字幕在线播放| 日韩专区在线视频| 日韩一区二区三区免费| 日本久久二区| re久久精品视频| 欧美偷窥清纯综合图区| 美女福利一区二区三区| 欧美日韩视频免费看| 日韩亚洲国产欧美| 青青青免费在线视频| 91成人精品在线| 一级欧洲+日本+国产| 欧美激情aⅴ一区二区三区| 久久国产精品久久w女人spa| 日韩欧美一区二区三区免费观看| 国产精品婷婷| 色一区二区三区| 精品国产一区二| 日韩美女精品| 性色av一区二区怡红| 国产亚洲综合精品| 你懂的网址国产 欧美| 久久国产成人| 久久人人97超碰国产公开结果| 亚洲日韩视频| 不卡一区2区| 国产一区二区三区国产精品| 国产亚洲一区| 在线日韩成人| 午夜视频精品| 日韩在线第七页| 久久一区国产| 国产情侣一区| 欧美一级网址| 亚洲香蕉久久| 蜜臀av在线播放一区二区三区| 91精品亚洲| 成人va天堂| 老司机免费视频一区二区| 久久久久91| 国产亚洲观看| 久久国产精品99国产| jizzjizz中国精品麻豆| 日韩一区二区三区精品| 蜜桃精品在线| 国产美女视频一区二区| 国产高清不卡| 国产精品久久亚洲不卡| 亚洲免费观看高清完整版在线观| se01亚洲视频| 国产精品一区二区三区www| 免播放器亚洲一区| 欧美不卡视频| 欧美激情另类| 国产精品99久久免费| 午夜一级在线看亚洲| 日本蜜桃在线观看视频| 国产经典一区| 日韩午夜av| 激情视频一区二区三区| 国产日韩视频在线| 国产精品美女久久久浪潮软件| 国产精品蜜芽在线观看| 久久精品国产在热久久| 香蕉久久一区| 日韩影院在线观看| 免费在线欧美视频| 蜜臀av亚洲一区中文字幕| 99riav1国产精品视频| 亚洲一区久久| 免费观看日韩电影| 日韩av资源网| 麻豆国产精品| 亚洲成人精品| 国产模特精品视频久久久久| 亚洲欧美日韩高清在线| 亚洲自拍另类| 日本成人手机在线| 精品亚洲成人| 精品国产亚洲一区二区三区| 高清不卡一区| 先锋亚洲精品| 美日韩一区二区三区|