/* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You 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.apache.fontbox.ttf; /** * Specifies access to glyph description classes, simple and composite. * * This class is based on code from Apache Batik a subproject of Apache XMLGraphics. * see http://xmlgraphics.apache.org/batik/ for further details. * */ public interface GlyphDescription { /** * Returns the index of the ending point of the given contour. * * @param i the number of the contour * @return the index of the ending point of the given contour */ int getEndPtOfContours(int i); /** * Returns the flags of the given point. * @param i the given point * @return the flags value for the given point */ byte getFlags(int i); /** * Returns the x coordinate of the given point. * @param i the given point * @return the x coordinate value for the given point */ short getXCoordinate(int i); /** * Returns the y coordinate of the given point. * @param i the given point * @return the y coordinate value for the given point */ short getYCoordinate(int i); /** * Returns whether this point is a composite or not. * @return true if this point is a composite */ boolean isComposite(); /** * Returns the number of points. * @return the number of points */ int getPointCount(); /** * Returns the number of contours. * @return the number of contours */ int getContourCount(); /** * Resolve all parts of an composite glyph. */ void resolve(); }