org.iherus.codegen.qrcode.renderer.R2BRPQreyesRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qrext4j Show documentation
Show all versions of qrext4j Show documentation
An easy-to-use QRCode generator for JAVA based on ZXing.
/**
* Copyright (c) 2016-~, Bosco.Liao ([email protected]).
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package org.iherus.codegen.qrcode.renderer;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
import java.awt.Shape;
import java.awt.geom.RoundRectangle2D;
import java.awt.image.BufferedImage;
import org.iherus.codegen.qrcode.QreyesFormat;
import org.iherus.codegen.qrcode.QreyesPosition;
import org.iherus.codegen.qrcode.QreyesRenderer;
import org.iherus.codegen.utils.ReflectionUtils;
public class R2BRPQreyesRenderer implements QreyesRenderer {
private static final int ARC = 5;
@Override
public void render(BufferedImage image, QreyesFormat format, QreyesPosition position, Color slave, Color border,
Color point) {
checkFormat(format);
int width = image.getWidth(), height = image.getHeight();
int borderSize = position.getBorderSize(width);
final String[] directions = { "topLeft", "topRight", "bottomLeft" };
Graphics2D graphics = image.createGraphics();
graphics.setBackground(slave);
for (String direction : directions) {
// clear area by slave color
int[] rect = (int[]) ReflectionUtils.invokeMethod(position, direction + "Rect");
graphics.clearRect(rect[0], rect[1], rect[2], rect[3]);
// draw code-eyes border
int x = rect[0] + borderSize / 2, y = rect[1] + borderSize / 2;
Shape shape = new RoundRectangle2D.Double(x, y, rect[2] - borderSize, rect[3] - borderSize, ARC, ARC);
graphics.setColor(border);
graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
graphics.fill(shape);
graphics.setStroke(new BasicStroke(borderSize));
graphics.setColor(border);
graphics.draw(shape);
// draw inner border
x += borderSize;
y += borderSize;
shape = new RoundRectangle2D.Double(x, y, rect[2] - borderSize * 3, rect[3] - borderSize * 3, ARC, ARC);
graphics.setColor(slave);
graphics.fill(shape);
graphics.draw(shape);
// draw code-eyes point
rect = (int[]) ReflectionUtils.invokeMethod(position.focusPoint(width, height), direction + "Point");
shape = getPointShape(rect[0], rect[1], rect[2], rect[3], 5, 5);
graphics.setColor(point);
graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
graphics.fill(shape);
// reset border setting
graphics.setStroke(new BasicStroke(0));
graphics.setColor(point);
graphics.draw(shape);
}
graphics.dispose();
image.flush();
}
@Override
public void checkFormat(QreyesFormat format) {
if (QreyesFormat.R2_BORDER_R_POINT != format) {
throw new IllegalArgumentException("Can only render R2_BORDER_R_POINT, but got " + format);
}
}
@Override
public Shape getPointShape(double x, double y, double w, double h, double arcw, double arch) {
return new RoundRectangle2D.Double(x, y, w, h, arcw, arch);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy