
org.krysalis.barcode4j.impl.int2of5.ITF14CanvasLogicHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of barcode4j-light Show documentation
Show all versions of barcode4j-light Show documentation
Barcode4J is a flexible generator for barcodes written in Java.
The newest version!
/*
* Copyright 2008 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.
*/
/* $Id: ITF14CanvasLogicHandler.java,v 1.2 2009-03-11 10:42:15 jmaerki Exp $ */
package org.krysalis.barcode4j.impl.int2of5;
import org.krysalis.barcode4j.HumanReadablePlacement;
import org.krysalis.barcode4j.impl.DefaultCanvasLogicHandler;
import org.krysalis.barcode4j.output.Canvas;
/**
* Specialized logic handler for ITF-14 (to paint the bearer bar).
*
* @version $Id: ITF14CanvasLogicHandler.java,v 1.2 2009-03-11 10:42:15 jmaerki Exp $
*/
public class ITF14CanvasLogicHandler extends DefaultCanvasLogicHandler {
/**
* Main constructor.
*
* @param bcBean the barcode bean
* @param canvas the canvas to paint on
*/
public ITF14CanvasLogicHandler(ITF14Bean bcBean, Canvas canvas) {
super(bcBean, canvas);
}
private ITF14Bean getITF14Bean() {
return (ITF14Bean) this.bcBean;
}
/**
* {@inheritDoc}
*/
protected double getStartX() {
ITF14Bean bean = getITF14Bean();
return super.getStartX() + (bean.isBearerBox() ? bean.getBearerBarWidth() : 0);
}
/**
* {@inheritDoc}
*/
protected double getStartY() {
return super.getStartY() + getITF14Bean().getBearerBarWidth();
}
/**
* {@inheritDoc}
*/
public void startBarcode(String msg, String formattedMsg) {
super.startBarcode(msg, formattedMsg);
ITF14Bean bean = getITF14Bean();
double bbw = bean.getBearerBarWidth();
double w = dimensions.getWidthPlusQuiet();
double h = bean.getBarHeight();
double top = 0;
if (bcBean.getMsgPosition() == HumanReadablePlacement.HRP_TOP) {
top += bcBean.getHumanReadableHeight();
}
canvas.drawRect(0, top, w, top + bbw);
canvas.drawRect(0, top + bbw + h, w, top + bbw + h + bbw);
if (bean.isBearerBox()) {
canvas.drawRect(0, top + bbw, bbw, top + bbw + h);
canvas.drawRect(w - bbw, top + bbw, w, top + bbw + h);
}
//canvas.drawRect(getStartX(), 2 * bbw, getStartX() + dimensions.getWidth(), 3 * bbw);
}
/**
* {@inheritDoc}
*/
protected double getTextBaselinePosition() {
if (bcBean.getMsgPosition() == HumanReadablePlacement.HRP_BOTTOM) {
double ty = super.getTextBaselinePosition();
ty += 2 * getITF14Bean().getBearerBarWidth();
return ty;
}
else {
return super.getTextBaselinePosition();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy