org.krysalis.barcode4j.output.AbstractCanvasProvider 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 2003-2004,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.
*/
package org.krysalis.barcode4j.output;
import org.krysalis.barcode4j.BarcodeDimension;
import org.krysalis.barcode4j.TextAlignment;
/**
* Abstract base class for most CanvasProvider implementations.
*
* @author Jeremias Maerki
* @version $Id: AbstractCanvasProvider.java,v 1.4 2008/05/13 13:00:45 jmaerki Exp $
*/
public abstract class AbstractCanvasProvider implements CanvasProvider {
/** the cached barcode dimensions */
protected BarcodeDimension bardim;
/** the barcode orientation (0, 90, 180, 270) */
private int orientation;
/**
* Main constructor.
* @param orientation the orientation of the barcode
*/
public AbstractCanvasProvider(int orientation) {
this.orientation = BarcodeDimension.normalizeOrientation(orientation);
}
/** {@inheritDoc} */
public void establishDimensions(BarcodeDimension dim) {
this.bardim = dim;
}
/** {@inheritDoc} */
public BarcodeDimension getDimensions() {
return this.bardim;
}
/** {@inheritDoc} */
public int getOrientation() {
return this.orientation;
}
/** {@inheritDoc} */
public void deviceJustifiedText(String text,
double x1, double x2, double y1,
String fontName, double fontSize) {
deviceText(text, x1, x2, y1, fontName, fontSize, TextAlignment.TA_JUSTIFY);
}
/** {@inheritDoc} */
public void deviceCenteredText(String text,
double x1, double x2, double y1,
String fontName, double fontSize) {
deviceText(text, x1, x2, y1, fontName, fontSize, TextAlignment.TA_CENTER);
}
}