org.krysalis.barcode4j.impl.datamatrix.DataMatrixBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of barcode4j-fop-ext-0.20.5-complete Show documentation
Show all versions of barcode4j-fop-ext-0.20.5-complete Show documentation
Barcode4J is a flexible generator for barcodes written in Java inclusive
extensions to support Apache FOP 0.20.5.
The newest version!
/*
* Copyright 2006 Jeremias Maerki.
*
* 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.krysalis.barcode4j.impl.datamatrix;
import org.krysalis.barcode4j.BarcodeDimension;
import org.krysalis.barcode4j.TwoDimBarcodeLogicHandler;
import org.krysalis.barcode4j.impl.AbstractBarcodeBean;
import org.krysalis.barcode4j.impl.DefaultTwoDimCanvasLogicHandler;
import org.krysalis.barcode4j.output.Canvas;
import org.krysalis.barcode4j.output.CanvasProvider;
import org.krysalis.barcode4j.tools.UnitConv;
/**
* This class is an implementation of DataMatrix (ISO 16022:2000(E)).
*
* @version $Id: DataMatrixBean.java,v 1.5 2008/05/13 13:00:43 jmaerki Exp $
*/
public class DataMatrixBean extends AbstractBarcodeBean {
/** The default module width (dot size) for DataMatrix. */
protected static final double DEFAULT_MODULE_WIDTH = UnitConv.in2mm(1.0 / 72); //1px at 72dpi
/**
* The requested shape. May be FORCE_NONE
,
* FORCE_SQUARE
or FORCE_RECTANGLE
.
*/
private SymbolShapeHint shape;
/** Create a new instance. */
public DataMatrixBean() {
this.height = 0.0; //not used by DataMatrix
this.moduleWidth = DEFAULT_MODULE_WIDTH;
setQuietZone(1 * moduleWidth);
this.shape = SymbolShapeHint.FORCE_NONE;
}
/**
* Sets the requested shape for the generated barcodes.
* @param shape requested shape. May be SymbolShapeHint.FORCE_NONE
,
* SymbolShapeHint.FORCE_SQUARE
or SymbolShapeHint.FORCE_RECTANGLE
.
*/
public void setShape(SymbolShapeHint shape) {
this.shape = shape;
}
/**
* Gets the requested shape for the generated barcodes.
* @return the requested shape (one of SymbolShapeHint.*).
*/
public SymbolShapeHint getShape() {
return shape;
}
/**
* @see org.krysalis.barcode4j.BarcodeGenerator#generateBarcode(CanvasProvider, String)
*/
public void generateBarcode(CanvasProvider canvas, String msg) {
if ((msg == null)
|| (msg.length() == 0)) {
throw new NullPointerException("Parameter msg must not be empty");
}
TwoDimBarcodeLogicHandler handler =
new DefaultTwoDimCanvasLogicHandler(this, new Canvas(canvas));
DataMatrixLogicImpl impl = new DataMatrixLogicImpl();
impl.generateBarcodeLogic(handler, msg, shape);
}
/**
* @see org.krysalis.barcode4j.BarcodeGenerator#calcDimensions(String)
*/
public BarcodeDimension calcDimensions(String msg) {
String encoded = DataMatrixHighLevelEncoder.encodeHighLevel(msg, shape);
DataMatrixSymbolInfo symbolInfo = DataMatrixSymbolInfo.lookup(encoded.length(), shape);
double width = symbolInfo.getSymbolWidth() * getModuleWidth();
double height = symbolInfo.getSymbolHeight() * getBarHeight();
double qzh = (hasQuietZone() ? getQuietZone() : 0);
double qzv = (hasQuietZone() ? getVerticalQuietZone() : 0);
return new BarcodeDimension(width, height,
width + (2 * qzh), height + (2 * qzv),
qzh, qzv);
}
/** @see org.krysalis.barcode4j.impl.AbstractBarcodeBean#getVerticalQuietZone() */
public double getVerticalQuietZone() {
return getQuietZone();
}
/** @see org.krysalis.barcode4j.impl.AbstractBarcodeBean#getBarWidth(int) */
public double getBarWidth(int width) {
return moduleWidth;
}
/** @see org.krysalis.barcode4j.impl.AbstractBarcodeBean#getBarHeight() */
public double getBarHeight() {
return moduleWidth;
}
}