com.mgz.afp.foca.FNC_FontControl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alpheusafpparser Show documentation
Show all versions of alpheusafpparser Show documentation
Alpheus AFP Parser is a library and parser for the IBM Advanced Function Presentation (AFP) document/print stream format.
Alpheus covers all AFP specifications: MO:DCA, BCOCA, CMOCA, FOCA, GOCA, IOCA, and PTOCA. It is a complete implementation. Every Structured Field, Repeating Group, and Triplet is fully implemented as Java class. Alpheus AFP Parser was written from scratch and has no external dependencies.
Copyright 2015,2016 Rudolf Fiala
Alpheus AFP Parser is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
The newest version!
/*
Copyright 2015 Rudolf Fiala
This file is part of Alpheus AFP Parser.
Alpheus AFP Parser is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Alpheus AFP Parser is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Alpheus AFP Parser. If not, see
*/
package com.mgz.afp.foca;
import com.mgz.afp.base.StructuredField;
import com.mgz.afp.base.annotations.AFPField;
import com.mgz.afp.exceptions.AFPParserException;
import com.mgz.afp.parser.AFPParserConfiguration;
import com.mgz.afp.parser.TripletParser;
import com.mgz.afp.triplets.Triplet;
import com.mgz.util.UtilBinaryDecoding;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.EnumSet;
import java.util.List;
public class FNC_FontControl extends StructuredField {
public static final byte FNPRepeatingGroupLength = 0x16;
public static final byte FNNRepeatingGroupLength = 0x0C;
public static final byte FNORepeatingGroupLength = 0x1A;
@AFPField
byte retired0 = 0x01;
@AFPField
PatternTechnologyIdentifier patternTechnologyIdentifier;
@AFPField
byte reserved2 = 0x00;
@AFPField
EnumSet fontUseFlags;
@AFPField
FontUnitBase xUnitBase;
@AFPField
FontUnitBase yUnitBase;
@AFPField
short xUnitsPerUnitBase;
@AFPField
short yUnitsPerUnitBase;
@AFPField
short maxCharacterBoxWidth;
@AFPField
short maxCharacterBoxHeight;
@AFPField
byte fnoRepeatingGroupLength = FNORepeatingGroupLength;
@AFPField
short fniRepeatingGroupLength;
@AFPField
RasterPatternDataAlignment rasterPatternDataAlignment;
@AFPField
int rasterPatternDataCount;
@AFPField
byte fnpRepeatingGroupLength = FNPRepeatingGroupLength;
@AFPField
byte fnmRepeatinGroupLength;
@AFPField
byte ShapeResolutionXUnitBase10Inches = 0x00;
@AFPField
byte ShapeResolutionYUnitBase10Inches = 0x00;
@AFPField
short shapeResolutionXUnitsPerUnitBase;
@AFPField
short shapeResolutionYUnitsPerUnitBase;
@AFPField
long outlinePatternDataCount;
@AFPField(size = 3)
byte[] reserved32_34 = {0x00, 0x00, 0x00};
@AFPField
byte fnnRepeatingGroupLength = FNNRepeatingGroupLength;
@AFPField
long fnnDataCount;
@AFPField
int fnnIBMNameGCGIDCount;
@AFPField
List triplets;
@Override
public void decodeAFP(byte[] sfData, int offset, int length, AFPParserConfiguration config) throws AFPParserException {
checkDataLength(sfData, offset, length, 22);
int actualLength = getActualLength(sfData, offset, length);
patternTechnologyIdentifier = PatternTechnologyIdentifier.valueOf(sfData[offset + 1]);
fontUseFlags = FNC_FontUseFlag.valueOf(sfData[offset + 3]);
xUnitBase = FontUnitBase.valueOf(sfData[offset + 4]);
yUnitBase = FontUnitBase.valueOf(sfData[offset + 5]);
xUnitsPerUnitBase = UtilBinaryDecoding.parseShort(sfData, offset + 6, 2);
yUnitsPerUnitBase = UtilBinaryDecoding.parseShort(sfData, offset + 8, 2);
maxCharacterBoxWidth = UtilBinaryDecoding.parseShort(sfData, offset + 10, 2);
maxCharacterBoxHeight = UtilBinaryDecoding.parseShort(sfData, offset + 12, 2);
fniRepeatingGroupLength = UtilBinaryDecoding.parseShort(sfData, offset + 15, 1);
rasterPatternDataAlignment = RasterPatternDataAlignment.valueOf(sfData[offset + 16]);
rasterPatternDataCount = UtilBinaryDecoding.parseInt(sfData, offset + 17, 3);
fnmRepeatinGroupLength = sfData[offset + 21];
if (actualLength >= 26) {
shapeResolutionXUnitsPerUnitBase = UtilBinaryDecoding.parseShort(sfData, offset + 24, 2);
} else {
shapeResolutionXUnitsPerUnitBase = 0;
}
if (actualLength >= 28) {
shapeResolutionYUnitsPerUnitBase = UtilBinaryDecoding.parseShort(sfData, offset + 26, 2);
} else {
shapeResolutionYUnitsPerUnitBase = 0;
}
if (actualLength >= 32) {
outlinePatternDataCount = UtilBinaryDecoding.parseLong(sfData, offset + 28, 4);
} else {
outlinePatternDataCount = 0;
}
if (actualLength >= 42) {
fnnIBMNameGCGIDCount = UtilBinaryDecoding.parseInt(sfData, offset + 40, 2);
} else {
fnnIBMNameGCGIDCount = 0;
}
if (actualLength >= 43) {
triplets = TripletParser.parseTriplets(sfData, 42, -1, config);
} else {
triplets = null;
}
}
@Override
public void writeAFP(OutputStream os, AFPParserConfiguration config) throws IOException {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
baos.write(retired0);
baos.write(patternTechnologyIdentifier.toByte());
baos.write(reserved2);
baos.write(FNC_FontUseFlag.toByte(fontUseFlags));
baos.write(xUnitBase.toByte());
baos.write(yUnitBase.toByte());
baos.write(UtilBinaryDecoding.shortToByteArray(xUnitsPerUnitBase, 2));
baos.write(UtilBinaryDecoding.shortToByteArray(yUnitsPerUnitBase, 2));
baos.write(UtilBinaryDecoding.shortToByteArray(maxCharacterBoxWidth, 2));
baos.write(UtilBinaryDecoding.shortToByteArray(maxCharacterBoxHeight, 2));
baos.write(fnoRepeatingGroupLength);
baos.write(UtilBinaryDecoding.shortToByteArray(fniRepeatingGroupLength, 1));
baos.write(rasterPatternDataAlignment.toByte());
baos.write(UtilBinaryDecoding.intToByteArray(rasterPatternDataCount, 3));
baos.write(fnpRepeatingGroupLength);
baos.write(fnmRepeatinGroupLength);
// Optional data:
if ((
this.xUnitBase == FontUnitBase.BaseIsFixedAt10Inches
&& this.yUnitBase == FontUnitBase.BaseIsFixedAt10Inches
&& xUnitsPerUnitBase == 0x0000
&& yUnitsPerUnitBase == 0x0000
) || (
this.xUnitBase == FontUnitBase.BaseIsRelativ
&& this.yUnitBase == FontUnitBase.BaseIsRelativ
&& xUnitsPerUnitBase == 0x0000
&& yUnitsPerUnitBase == 0x0000)
) {
// Done, no optional data et all.
} else {
baos.write(ShapeResolutionXUnitBase10Inches);
baos.write(ShapeResolutionYUnitBase10Inches);
baos.write(UtilBinaryDecoding.shortToByteArray(shapeResolutionXUnitsPerUnitBase, 2));
baos.write(UtilBinaryDecoding.shortToByteArray(shapeResolutionYUnitsPerUnitBase, 2));
if (patternTechnologyIdentifier != PatternTechnologyIdentifier.LaserMatrixNBitWide) {
baos.write(UtilBinaryDecoding.longToByteArray(outlinePatternDataCount, 4));
baos.write(reserved32_34);
baos.write(fnnRepeatingGroupLength);
baos.write(UtilBinaryDecoding.longToByteArray(fnnDataCount, 4));
baos.write(UtilBinaryDecoding.intToByteArray(fnnIBMNameGCGIDCount, 2));
}
if (triplets != null) {
for (Triplet t : triplets) {
t.writeAFP(baos, config);
}
}
}
writeFullStructuredField(os, baos.toByteArray());
}
public PatternTechnologyIdentifier getPatternTechnologyIdentifier() {
return patternTechnologyIdentifier;
}
public void setPatternTechnologyIdentifier(
PatternTechnologyIdentifier patternTechnologyIdentifier) {
this.patternTechnologyIdentifier = patternTechnologyIdentifier;
}
public EnumSet getFontUseFlags() {
return fontUseFlags;
}
public void setFontUseFlags(EnumSet fontUseFlags) {
this.fontUseFlags = fontUseFlags;
}
public FontUnitBase getxUnitBase() {
return xUnitBase;
}
public void setxUnitBase(FontUnitBase xUnitBase) {
this.xUnitBase = xUnitBase;
}
public FontUnitBase getyUnitBase() {
return yUnitBase;
}
public void setyUnitBase(FontUnitBase yUnitBase) {
this.yUnitBase = yUnitBase;
}
public short getxUnitsPerUnitBase() {
return xUnitsPerUnitBase;
}
public void setxUnitsPerUnitBase(short xUnitsPerUnitBase) {
this.xUnitsPerUnitBase = xUnitsPerUnitBase;
}
public short getyUnitsPerUnitBase() {
return yUnitsPerUnitBase;
}
public void setyUnitsPerUnitBase(short yUnitsPerUnitBase) {
this.yUnitsPerUnitBase = yUnitsPerUnitBase;
}
public short getMaxCharacterBoxWidth() {
return maxCharacterBoxWidth;
}
public void setMaxCharacterBoxWidth(short maxCharacterBoxWidth) {
this.maxCharacterBoxWidth = maxCharacterBoxWidth;
}
public short getMaxCharacterBoxHeight() {
return maxCharacterBoxHeight;
}
public void setMaxCharacterBoxHeight(short maxCharacterBoxHeight) {
this.maxCharacterBoxHeight = maxCharacterBoxHeight;
}
public byte getFNORepeatingGroupLength() {
return fnoRepeatingGroupLength;
}
public void setFNORepeatingGroupLength(byte fnoRepeatingGroupLength) {
this.fnoRepeatingGroupLength = fnoRepeatingGroupLength;
}
public short getFniRepeatingGroupLength() {
return fniRepeatingGroupLength;
}
public void setFniRepeatingGroupLength(short fniRepeatingGroupLength) {
this.fniRepeatingGroupLength = fniRepeatingGroupLength;
}
public RasterPatternDataAlignment getRasterPatternDataAlignment() {
return rasterPatternDataAlignment;
}
public void setRasterPatternDataAlignment(
RasterPatternDataAlignment rasterPatternDataAlignment) {
this.rasterPatternDataAlignment = rasterPatternDataAlignment;
}
public int getRasterPatternDataCount() {
return rasterPatternDataCount;
}
public void setRasterPatternDataCount(int rasterPatternDataCount) {
this.rasterPatternDataCount = rasterPatternDataCount;
}
public byte getFNPRepeatingGroupLength() {
return fnpRepeatingGroupLength;
}
public void setFNPRepeatingGroupLength(byte fNPRepeatingGroupLength) {
fnpRepeatingGroupLength = fNPRepeatingGroupLength;
}
public byte getFnmRepeatinGroupLength() {
return fnmRepeatinGroupLength;
}
public void setFnmRepeatinGroupLength(byte fnmRepeatinGroupLength) {
this.fnmRepeatinGroupLength = fnmRepeatinGroupLength;
}
public byte getShapeResolutionXUnitBase10Inches() {
return ShapeResolutionXUnitBase10Inches;
}
public void setShapeResolutionXUnitBase10Inches(
byte shapeResolutionXUnitBase10Inches) {
ShapeResolutionXUnitBase10Inches = shapeResolutionXUnitBase10Inches;
}
public byte getShapeResolutionYUnitBase10Inches() {
return ShapeResolutionYUnitBase10Inches;
}
public void setShapeResolutionYUnitBase10Inches(
byte shapeResolutionYUnitBase10Inches) {
ShapeResolutionYUnitBase10Inches = shapeResolutionYUnitBase10Inches;
}
public short getShapeResolutionXUnitsPerUnitBase() {
return shapeResolutionXUnitsPerUnitBase;
}
public void setShapeResolutionXUnitsPerUnitBase(
short shapeResolutionXUnitsPerUnitBase) {
this.shapeResolutionXUnitsPerUnitBase = shapeResolutionXUnitsPerUnitBase;
}
public short getShapeResolutionYUnitsPerUnitBase() {
return shapeResolutionYUnitsPerUnitBase;
}
public void setShapeResolutionYUnitsPerUnitBase(
short shapeResolutionYUnitsPerUnitBase) {
this.shapeResolutionYUnitsPerUnitBase = shapeResolutionYUnitsPerUnitBase;
}
public long getOutlinePatternDataCount() {
return outlinePatternDataCount;
}
public void setOutlinePatternDataCount(long outlinePatternDataCount) {
this.outlinePatternDataCount = outlinePatternDataCount;
}
public byte[] getReserved32_34() {
return reserved32_34;
}
public void setReserved32_34(byte[] reservedByte32_34) {
reserved32_34 = reservedByte32_34;
}
public long getFnnDataCount() {
return fnnDataCount;
}
public void setFnnDataCount(long fnnDataCount) {
this.fnnDataCount = fnnDataCount;
}
public int getFnnIBMNameGCGIDCount() {
return fnnIBMNameGCGIDCount;
}
public void setFnnIBMNameGCGIDCount(int fnnIBMNameGCGIDCount) {
this.fnnIBMNameGCGIDCount = fnnIBMNameGCGIDCount;
}
public List getTriplets() {
return triplets;
}
public void setTriplets(List triplets) {
this.triplets = triplets;
}
public byte getRetiredbyte0() {
return retired0;
}
public byte getReservedbyte2() {
return reserved2;
}
public byte getRetired0() {
return retired0;
}
public void setRetired0(byte retired0) {
this.retired0 = retired0;
}
public byte getReserved2() {
return reserved2;
}
public void setReserved2(byte reserved2) {
this.reserved2 = reserved2;
}
public byte getFnoRepeatingGroupLength() {
return fnoRepeatingGroupLength;
}
public void setFnoRepeatingGroupLength(byte fnoRepeatingGroupLength) {
this.fnoRepeatingGroupLength = fnoRepeatingGroupLength;
}
public byte getFnpRepeatingGroupLength() {
return fnpRepeatingGroupLength;
}
public void setFnpRepeatingGroupLength(byte fnpRepeatingGroupLength) {
this.fnpRepeatingGroupLength = fnpRepeatingGroupLength;
}
public byte getFnnRepeatingGroupLength() {
return fnnRepeatingGroupLength;
}
public void setFnnRepeatingGroupLength(byte fnnRepeatingGroupLength) {
this.fnnRepeatingGroupLength = fnnRepeatingGroupLength;
}
public enum PatternTechnologyIdentifier {
LaserMatrixNBitWide((byte) 0x05),
CompositeAdobeType0((byte) 0x1E),
Type1FontPrinterFileBinary((byte) 0x1F);
byte patternTechnologyIdentifierByte;
PatternTechnologyIdentifier(byte code) {
this.patternTechnologyIdentifierByte = code;
}
public static PatternTechnologyIdentifier valueOf(byte patternTechnologyIdentifierByte) {
for (PatternTechnologyIdentifier pti : values()) {
if (pti.patternTechnologyIdentifierByte == patternTechnologyIdentifierByte) {
return pti;
}
}
return null;
}
public byte toByte() {
return patternTechnologyIdentifierByte;
}
}
public enum FNC_FontUseFlag {
MICRPrinting, // bit 7
ExtensionFont, // bit 6
RetiredDoNotShiftBaseLineOffset, // bit 3
UniformRasterPatternSize; // bit 1
public static EnumSet valueOf(byte fontUseFlagByte) {
EnumSet result = EnumSet.noneOf(FNC_FontUseFlag.class);
if (((fontUseFlagByte & 0xFF) & 0x80) > 0) {
result.add(MICRPrinting);
}
if (((fontUseFlagByte & 0xFF) & 0x40) > 0) {
result.add(ExtensionFont);
}
if (((fontUseFlagByte & 0xFF) & 0x08) > 0) {
result.add(RetiredDoNotShiftBaseLineOffset);
}
if (((fontUseFlagByte & 0xFF) & 0x02) > 0) {
result.add(UniformRasterPatternSize);
}
return result;
}
public static byte toByte(EnumSet fontUseFlags) {
byte result = 0;
if (fontUseFlags.contains(MICRPrinting)) {
result |= 0x80;
}
if (fontUseFlags.contains(ExtensionFont)) {
result |= 0x40;
}
if (fontUseFlags.contains(RetiredDoNotShiftBaseLineOffset)) {
result |= 0x08;
}
if (fontUseFlags.contains(UniformRasterPatternSize)) {
result |= 0x02;
}
return result;
}
}
public enum FontUnitBase {
BaseIsFixedAt10Inches,
BaseIsRelativ;
public static FontUnitBase valueOf(byte fontUnitBaseByte) {
if (fontUnitBaseByte == 0x00) {
return BaseIsFixedAt10Inches;
}
if (fontUnitBaseByte == 0x02) {
return BaseIsRelativ;
}
return null;
}
public byte toByte() {
if (this == BaseIsFixedAt10Inches) {
return 0x00;
}
if (this == BaseIsRelativ) {
return 0x02;
}
return 0x00;
}
}
public enum RasterPatternDataAlignment {
Alignment_1Byte((byte) 0x00),
Alignment_4Byte((byte) 0x02),
Alignment_8Byte((byte) 0x03);
byte rasterPatternAlignmentByte;
RasterPatternDataAlignment(byte rasterPatternAlignmentByte) {
this.rasterPatternAlignmentByte = rasterPatternAlignmentByte;
}
public static RasterPatternDataAlignment valueOf(byte rasterPatternAlignmentCode) {
for (RasterPatternDataAlignment rpda : values()) {
if (rasterPatternAlignmentCode == rpda.rasterPatternAlignmentByte) {
return rpda;
}
}
return null;
}
public byte toByte() {
return rasterPatternAlignmentByte;
}
}
}