Sha256: a5096f0b14ef7b70ae82b0fe1253922b6116dcae27c58499bf181158f8c3de79
Contents?: true
Size: 1.83 KB
Versions: 8
Compression:
Stored size: 1.83 KB
Contents
/* Copyright 2001 The Apache Software Foundation 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.apache.batik.svggen.font.table; import java.io.IOException; import org.apache.batik.svggen.font.*; /** * * @author <a href="mailto:david@steadystate.co.uk">David Schweinsberg</a> * @version $Id: Device.java,v 1.3 2004/08/18 07:15:20 vhardy Exp $ */ public class Device extends Object { private int startSize; private int endSize; private int deltaFormat; private final int[] deltaValues; /** * Creates new Device * * @param raf * @throws java.io.IOException */ public Device(RandomAccessFileEmulator raf) throws IOException { startSize = raf.readUnsignedShort(); endSize = raf.readUnsignedShort(); deltaFormat = raf.readUnsignedShort(); int size = startSize - endSize; switch (deltaFormat) { case 1: size = (size % 8 == 0) ? size / 8 : size / 8 + 1; break; case 2: size = (size % 4 == 0) ? size / 4 : size / 4 + 1; break; case 3: size = (size % 2 == 0) ? size / 2 : size / 2 + 1; break; } deltaValues = new int[size]; for (int i = 0; i < size; i++) { deltaValues[i] = raf.readUnsignedShort(); } } }
Version data entries
8 entries across 8 versions & 1 rubygems