![JAR search and dependency download from the Maven repository](/logo.png)
com.itextpdf.io.font.otf.OtfClass Maven / Gradle / Ivy
/*
This file is part of the iText (R) project.
Copyright (c) 1998-2023 Apryse Group NV
Authors: Apryse Software.
This program is offered under a commercial and under the AGPL license.
For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below.
AGPL licensing:
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see .
*/
package com.itextpdf.io.font.otf;
import com.itextpdf.io.logs.IoLogMessageConstant;
import com.itextpdf.io.util.IntHashtable;
import com.itextpdf.io.source.RandomAccessFileOrArray;
import com.itextpdf.commons.utils.MessageFormatUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
public class OtfClass {
public static final int GLYPH_BASE = 1;
public static final int GLYPH_LIGATURE = 2;
public static final int GLYPH_MARK = 3;
//key is glyph, value is class inside all 2
private IntHashtable mapClass = new IntHashtable();
private OtfClass(RandomAccessFileOrArray rf, int classLocation) throws java.io.IOException {
rf.seek(classLocation);
int classFormat = rf.readUnsignedShort();
if (classFormat == 1) {
int startGlyph = rf.readUnsignedShort();
int glyphCount = rf.readUnsignedShort();
int endGlyph = startGlyph + glyphCount;
for (int k = startGlyph; k < endGlyph; ++k) {
int cl = rf.readUnsignedShort();
mapClass.put(k, cl);
}
} else if (classFormat == 2) {
int classRangeCount = rf.readUnsignedShort();
for (int k = 0; k < classRangeCount; ++k) {
int glyphStart = rf.readUnsignedShort();
int glyphEnd = rf.readUnsignedShort();
int cl = rf.readUnsignedShort();
for (; glyphStart <= glyphEnd; ++glyphStart) {
mapClass.put(glyphStart, cl);
}
}
} else {
throw new java.io.IOException("Invalid class format " + classFormat);
}
}
public static OtfClass create(RandomAccessFileOrArray rf, int classLocation) {
OtfClass otfClass;
try {
otfClass = new OtfClass(rf, classLocation);
} catch (IOException e) {
Logger logger = LoggerFactory.getLogger(OtfClass.class);
logger.error(MessageFormatUtil.format(IoLogMessageConstant.OPENTYPE_GDEF_TABLE_ERROR, e.getMessage()));
otfClass = null;
}
return otfClass;
}
public int getOtfClass(int glyph) {
return mapClass.get(glyph);
}
public boolean isMarkOtfClass(int glyph) {
return hasClass(glyph) && getOtfClass(glyph) == GLYPH_MARK;
}
public boolean hasClass(int glyph) {
return mapClass.containsKey(glyph);
}
public int getOtfClass(int glyph, boolean strict) {
if (strict) {
if (mapClass.containsKey(glyph)) {
return mapClass.get(glyph);
} else {
return -1;
}
} else {
return mapClass.get(glyph);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy