当前位置: 首页>>代码示例>>Java>>正文


Java Writer类代码示例

本文整理汇总了Java中com.google.zxing.Writer的典型用法代码示例。如果您正苦于以下问题:Java Writer类的具体用法?Java Writer怎么用?Java Writer使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


Writer类属于com.google.zxing包,在下文中一共展示了Writer类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: renderQRCode

import com.google.zxing.Writer; //导入依赖的package包/类
private Bitmap renderQRCode(String barcode, BarcodeFormat format, int width) throws WriterException {
    float scale = this.context.getResources().getDisplayMetrics().density;

    width *= scale * 0.6;

    Writer barWriter = new MultiFormatWriter();
    Bitmap bitmap = Bitmap.createBitmap(width, width, Bitmap.Config.ARGB_8888);
    BitMatrix bm = barWriter.encode(barcode, format, width, width);

    for (int j = 0; j < width; j++) {
        int[] row = new int[width];
        for (int i = 0; i < width; i++) {
            row[i] = bm.get(i, j) ? Color.BLACK : Color.TRANSPARENT;
        }
        bitmap.setPixels(row, 0, width, 0, j, width, 1);
    }

    CropUtility cropUtility = new CropUtility();
    Bitmap cropped = cropUtility.rectangularCrop(bitmap, Color.TRANSPARENT, 0);

    FactoryManager manager = new FactoryManager();
    ShapeFactory shapeFactory = manager.getRecommendedShapeFactory();
    return shapeFactory.createShape(new RectangleShape(this.context), cropped, Constants.LOGO_BACKGROUND_COLOUR, padding);
}
 
开发者ID:AbyxBelgium,项目名称:Loyalty,代码行数:25,代码来源:BarcodeGenerator.java

示例2: generarQR

import com.google.zxing.Writer; //导入依赖的package包/类
private void generarQR(String dato, ImageView objeto) throws WriterException {
    Writer generador = new QRCodeWriter();
    String datoFinal = Uri.encode(dato, getString(R.string.fragment_detalle_promocion_utf8));

    BitMatrix bm = generador.encode(datoFinal, BarcodeFormat.QR_CODE, 150, 150);
    imagenBitMap = Bitmap.createBitmap(150, 150, Bitmap.Config.ARGB_8888);

    for (int i = 0; i < 150; i++) { //width
        for (int j = 0; j < 150; j++) { //height
            imagenBitMap.setPixel(i, j, bm.get(i, j) ? Color.BLACK : Color.WHITE);
        }
    }

    if (imagenBitMap != null) {
        objeto.setImageBitmap(imagenBitMap);
    }
}
 
开发者ID:ur13l,项目名称:Guanajoven,代码行数:18,代码来源:DetallePromocionFragment.java

示例3: generarQR

import com.google.zxing.Writer; //导入依赖的package包/类
private void generarQR(String dato, ImageView objeto) throws WriterException {
    Writer generador = new QRCodeWriter();
    String datoFinal = Uri.encode(dato, getString(R.string.fragment_idguanajoven_utf8));

    BitMatrix bm = generador.encode(datoFinal, BarcodeFormat.QR_CODE, 150, 150);
    imagenBitMap = Bitmap.createBitmap(150, 150, Bitmap.Config.ARGB_8888);

    for (int i = 0; i < 150; i++) { //width
        for (int j = 0; j < 150; j++) { //height
            imagenBitMap.setPixel(i, j, bm.get(i, j) ? Color.BLACK : Color.WHITE);
        }
    }

    if (imagenBitMap != null) {
        objeto.setImageBitmap(imagenBitMap);
    }
}
 
开发者ID:ur13l,项目名称:Guanajoven,代码行数:18,代码来源:IDGuanajovenFragment.java

示例4: createQR

import com.google.zxing.Writer; //导入依赖的package包/类
public static Image createQR(String content, int size) {
    WritableImage img = new WritableImage(size, size);
    PixelWriter pw = img.getPixelWriter();
    try {
        Writer writer = new QRCodeWriter();
        BitMatrix matrix = writer.encode(content, BarcodeFormat.QR_CODE, size, size);
        for (int i = 0; i < matrix.getHeight(); i++) {
            for (int j = 0; j < matrix.getWidth(); j++) {
                if (matrix.get(i, j)) {
                    pw.setColor(i, j, Color.BLACK);
                }
            }
        }
    } catch (WriterException ex) {
        Logger.getLogger(QRGenerator.class.getName()).log(Level.SEVERE, null, ex);
    }
    return img;
}
 
开发者ID:gluonhq,项目名称:javaone2016,代码行数:19,代码来源:QRGenerator.java

示例5: generateQRCode

import com.google.zxing.Writer; //导入依赖的package包/类
@Override
@SuppressWarnings("unchecked")
public BufferedImage generateQRCode(String value, int w, int h){
	Writer writer = new MultiFormatWriter();
			
	@SuppressWarnings("rawtypes")
	Hashtable hints = new Hashtable();
	hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);
	hints.put(EncodeHintType.CHARACTER_SET, "ISO-8859-1");
	
	BitMatrix matrix;
	try {
		matrix = writer.encode(value, BarcodeFormat.QR_CODE, w, h,hints);
	} catch (Exception e) {
		throw new RuntimeException("Erro ao tentar criar bitMatrix para qrcode!",e);
	}
	
	BufferedImage buffImage = MatrixToImageWriter.toBufferedImage(matrix);
	
	return buffImage;
}
 
开发者ID:darciopacifico,项目名称:omr,代码行数:22,代码来源:JazzQRCodeGenerator.java

示例6: main

import com.google.zxing.Writer; //导入依赖的package包/类
/**
 * @param args
 * @throws WriterException
 * @throws IOException
 * @throws FileNotFoundException
 */
public static void main(String[] args) throws WriterException, FileNotFoundException, IOException {
	Writer writer = new MultiFormatWriter();
	
	Hashtable hints = new Hashtable();
	hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.L);
	hints.put(EncodeHintType.CHARACTER_SET, "ISO-8859-1");
	
	long now = System.currentTimeMillis();
	
	//String contents = gson.toJson(docPK);
	String contents = "12345-TESTE123";
	
	log.debug(contents.length()+"");
	
	BitMatrix matrix = writer.encode(
			contents
			, BarcodeFormat.QR_CODE, 350, 350,hints);
	
	BufferedImage buffImage = MatrixToImageWriter.toBufferedImage(matrix);

	ImageIO.write(buffImage, IMG_EXT, new File("qrCodePerfeito.png"));
}
 
开发者ID:darciopacifico,项目名称:omr,代码行数:29,代码来源:JazzQRCodeWriter.java

示例7: generateQRCode

import com.google.zxing.Writer; //导入依赖的package包/类
@Override
@SuppressWarnings("unchecked")
public BufferedImage generateQRCode(String value, int w, int h){
	Writer writer = new MultiFormatWriter();
			
	@SuppressWarnings("rawtypes")
	Hashtable hints = new Hashtable();
	hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.L);
	hints.put(EncodeHintType.CHARACTER_SET, "ISO-8859-1");
	
	BitMatrix matrix;
	try {
		matrix = writer.encode(value, BarcodeFormat.QR_CODE, w, h,hints);
	} catch (Exception e) {
		throw new RuntimeException("Erro ao tentar criar bitMatrix para qrcode!",e);
	}
	
	BufferedImage buffImage = MatrixToImageWriter.toBufferedImage(matrix);
	
	return buffImage;
}
 
开发者ID:darciopacifico,项目名称:omr,代码行数:22,代码来源:JazzQRCodeGenerator.java

示例8: compareToGoldenFile

import com.google.zxing.Writer; //导入依赖的package包/类
private static void compareToGoldenFile(String contents,
                                        ErrorCorrectionLevel ecLevel,
                                        int resolution,
                                        String fileName) throws WriterException, IOException {

  BufferedImage image = loadImage(fileName);
  assertNotNull(image);
  BitMatrix goldenResult = createMatrixFromImage(image);
  assertNotNull(goldenResult);

  Map<EncodeHintType,Object> hints = new EnumMap<>(EncodeHintType.class);
  hints.put(EncodeHintType.ERROR_CORRECTION, ecLevel);
  Writer writer = new QRCodeWriter();
  BitMatrix generatedResult = writer.encode(contents, BarcodeFormat.QR_CODE, resolution,
      resolution, hints);

  assertEquals(resolution, generatedResult.getWidth());
  assertEquals(resolution, generatedResult.getHeight());
  assertEquals(goldenResult, generatedResult);
}
 
开发者ID:srowen,项目名称:zxing-bsplus,代码行数:21,代码来源:QRCodeWriterTestCase.java

示例9: doWrite

import com.google.zxing.Writer; //导入依赖的package包/类
private void doWrite(OutputStream os, Path path) throws IOException {
    try {
        Writer writer = new MultiFormatWriter();
        Map<EncodeHintType, Object> hints = new Hashtable<EncodeHintType, Object>();
        hints.put(EncodeHintType.CHARACTER_SET, StandardCharsets.UTF_8.name());
        hints.put(EncodeHintType.MARGIN, Integer.valueOf(margin));
        hints.put(EncodeHintType.ERROR_CORRECTION, com.google.zxing.qrcode.decoder.ErrorCorrectionLevel.forBits(errorCorrectionLevel.getBits()));
        BitMatrix matrix = writer.encode(uri.toUriString(), BarcodeFormat.QR_CODE, width, height, hints);
        if (os != null) {
            MatrixToImageWriter.writeToStream(matrix, imageFormatName, os);
        }
        else {
            MatrixToImageWriter.writeToPath(matrix, imageFormatName, path);
        }
    } catch (WriterException e) {
        throw new IOException(e);
    }
}
 
开发者ID:johnnymongiat,项目名称:oath,代码行数:19,代码来源:QRCodeWriter.java

示例10: getQRCode

import com.google.zxing.Writer; //导入依赖的package包/类
@Override
public Response getQRCode(final String url) throws IOException {

    final ByteArrayOutputStream buf = new ByteArrayOutputStream();
    final Writer writer = new QRCodeWriter();
    final BitMatrix matrix;
    try {
        matrix = writer.encode(url, BarcodeFormat.QR_CODE, 100, 100);
    } catch (WriterException e) {
        throw new ClapException(e);
    }
    MatrixToImageWriter.writeToStream(matrix, "PNG", buf);
    final byte[] bytes = buf.toByteArray();
    LOGGER.debug("qrcode for " + url + " generated");
    return returnImage(new ByteArrayInputStream(bytes), "qrcode.png");
}
 
开发者ID:noveogroup,项目名称:clap,代码行数:17,代码来源:MiscEndpointImpl.java

示例11: getQRCode

import com.google.zxing.Writer; //导入依赖的package包/类
public BufferedImage getQRCode(String strQRCode) {
			 
		        BitMatrix bitMatrix;
		        Writer writer = new QRCodeWriter();
		        
		        try {

		//  Write QR Code
		            bitMatrix = writer.encode(strQRCode, BarcodeFormat.QR_CODE,800,800);
		            		
		            MatrixToImageWriter.toBufferedImage(bitMatrix);
//		            System.out.println("QR Code Generated.");
		            return MatrixToImageWriter.toBufferedImage(bitMatrix);
		            
		        } catch (Exception e) {
		            System.out.println("Exception Found." + e.getMessage());
		        }
				return null;

		    }
 
开发者ID:elexis,项目名称:elexis-3-base,代码行数:21,代码来源:Barcode.java

示例12: getBarcode

import com.google.zxing.Writer; //导入依赖的package包/类
@GetMapping
public ResponseEntity<byte[]> getBarcode( //
		@RequestParam(name = CONTENT) final String content //
		, @RequestParam(name = FORMAT) final String formatStr//
		, @RequestParam(name = WIDTH, required = false) final int width//
		, @RequestParam(name = HEIGHT, required = false) final int height//
		, @RequestParam(name = ECL, required = false) final String eclStr//
)
{
	//
	// Get parameters and check for wrong values
	final BarcodeFormat format = BarcodeFormat.valueOf(formatStr);
	final Map<EncodeHintType, ErrorCorrectionLevel> hints = extractHints(eclStr, format);

	//
	// Encode given content into given format
	final BitMatrix matrix;
	try
	{
		final Writer encoder = new MultiFormatWriter();
		matrix = encoder.encode(content, format, width, height, hints);
	}
	catch (final WriterException ex)
	{
		throw new AdempiereException("Failed creating barcode", ex);
	}

	final String barcodeFilename = "barcode.png";
	final byte[] barcodeData = toByteArray(matrix, "png");

	final HttpHeaders headers = new HttpHeaders();
	headers.setContentType(MediaType.IMAGE_PNG);
	headers.set(HttpHeaders.CONTENT_DISPOSITION, "inline; filename=\"" + barcodeFilename + "\"");
	headers.setCacheControl("must-revalidate, post-check=0, pre-check=0");
	final ResponseEntity<byte[]> response = new ResponseEntity<>(barcodeData, headers, HttpStatus.OK);
	return response;
}
 
开发者ID:metasfresh,项目名称:metasfresh,代码行数:38,代码来源:BarcodeRestController.java

示例13: testQRCodeWriter

import com.google.zxing.Writer; //导入依赖的package包/类
@Test
public void testQRCodeWriter() throws WriterException {
  // The QR should be multiplied up to fit, with extra padding if necessary
  int bigEnough = 256;
  Writer writer = new QRCodeWriter();
  BitMatrix matrix = writer.encode("http://www.google.com/", BarcodeFormat.QR_CODE, bigEnough,
      bigEnough, null);
  assertNotNull(matrix);
  assertEquals(bigEnough, matrix.getWidth());
  assertEquals(bigEnough, matrix.getHeight());

  // The QR will not fit in this size, so the matrix should come back bigger
  int tooSmall = 20;
  matrix = writer.encode("http://www.google.com/", BarcodeFormat.QR_CODE, tooSmall,
      tooSmall, null);
  assertNotNull(matrix);
  assertTrue(tooSmall < matrix.getWidth());
  assertTrue(tooSmall < matrix.getHeight());

  // We should also be able to handle non-square requests by padding them
  int strangeWidth = 500;
  int strangeHeight = 100;
  matrix = writer.encode("http://www.google.com/", BarcodeFormat.QR_CODE, strangeWidth,
      strangeHeight, null);
  assertNotNull(matrix);
  assertEquals(strangeWidth, matrix.getWidth());
  assertEquals(strangeHeight, matrix.getHeight());
}
 
开发者ID:srowen,项目名称:zxing-bsplus,代码行数:29,代码来源:QRCodeWriterTestCase.java

示例14: QRImage

import com.google.zxing.Writer; //导入依赖的package包/类
public QRImage(String text, int width, int height) {
	super(width, height, BufferedImage.TYPE_INT_RGB);
	
	// get a byte matrix for the data
	BitMatrix matrix = null;
	com.google.zxing.Writer writer = new QRCodeWriter();
	try {
		matrix = writer.encode(text, com.google.zxing.BarcodeFormat.QR_CODE, width, height);
	} catch (com.google.zxing.WriterException e) {
		e.printStackTrace();
	}
	
	//System.out.println("Current width, height: " + width + " " + height);

	// generate an image from the byte matrix
	//width = matrix.getWidth();
	//height = matrix.getHeight();
	//System.out.println("Matrix width, height: " + width + " " + height);

	//byte[][] array = matrix.getArray();

	// create buffered image to draw to
	//BufferedImage image = new BufferedImage(width, height,
	//		BufferedImage.TYPE_INT_RGB);

	// iterate through the matrix and draw the pixels to the image
	for (int y = 0; y < height; y++) {
		for (int x = 0; x < width; x++) {
			boolean grayValue = matrix.get(x, y);//array[y][x] & 0xff;
			this.setRGB(x, y, (grayValue ? 0 : 0xFFFFFF));
		}
	}
}
 
开发者ID:pavel4n,项目名称:wowdoge.org,代码行数:34,代码来源:QRImage.java

示例15: main

import com.google.zxing.Writer; //导入依赖的package包/类
/**
 * @param args
 * @throws WriterException
 * @throws IOException
 * @throws FileNotFoundException
 */
public static void main(String[] args) throws WriterException, FileNotFoundException, IOException {
	Writer writer = new MultiFormatWriter();
	
	Hashtable hints = new Hashtable();
	hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.L);
	hints.put(EncodeHintType.CHARACTER_SET, "ISO-8859-1");
	
	
	long now = System.currentTimeMillis();
	
	
	//String contents = gson.toJson(docPK);
	String contents = "12345-TESTE123";
	
	
	log.debug(contents.length()+"");
	
	BitMatrix matrix = writer.encode(
			contents
			, BarcodeFormat.QR_CODE, 350, 350,hints);
	
	
	
	
	BufferedImage buffImage = MatrixToImageWriter.toBufferedImage(matrix);

	
	
	ImageIO.write(buffImage, JazzOMRImageParser.IMG_EXT, new File("qrCodePerfeito.png"));
}
 
开发者ID:darciopacifico,项目名称:omr,代码行数:37,代码来源:JazzQRCodeWriter.java


注:本文中的com.google.zxing.Writer类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。