Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
What Is poi-scratchpad-5.2.3.jar?
What Is poi-scratchpad-5.2.3.jar?
✍: FYIcenter.com
poi-scratchpad-5.2.3.jar is one of the JAR files for Apache POI 5.2.3, which provides an API for Microsoft document files of Word, Excel, PowerPoint, and Visio.
poi-scratchpad-5.2.3.jar provides support for older versions of Microsoft document files like Word 97, Excel 97, PowerPoint 97, etc.
poi-scratchpad-5.2.3.jar is distributed as part of the poi-bin-5.2.3-20220909.zip download file.
JAR File Size and Download Location:
JAR name: poi-scratchpad-5.2.3.jar Target JDK version: 9 Dependency: poi.jar File name: poi-scratchpad.jar, poi-scratchpad-5.2.3.jar File size: 1897121 bytes Release date: 09-09-2022 Download: Apache POI Website
Here are Java Source Code files for poi-scratchpad-5.2.3.jar:
⏎ org/apache/poi/hslf/usermodel/HSLFFontInfo.java
/* ==================================================================== 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.poi.hslf.usermodel; import java.util.ArrayList; import java.util.List; import org.apache.poi.common.usermodel.fonts.FontCharset; import org.apache.poi.common.usermodel.fonts.FontFamily; import org.apache.poi.common.usermodel.fonts.FontInfo; import org.apache.poi.common.usermodel.fonts.FontPitch; import org.apache.poi.hslf.record.FontEmbeddedData; import org.apache.poi.hslf.record.FontEntityAtom; import org.apache.poi.util.BitField; import org.apache.poi.util.BitFieldFactory; import org.apache.poi.util.Internal; /** * Represents a Font used in a presentation.<p> * * In PowerPoint Font is a shared resource and can be shared among text object in the presentation. * * @since POI 3.17-beta2 */ @SuppressWarnings("WeakerAccess") public class HSLFFontInfo implements FontInfo { public enum FontRenderType { raster, device, truetype } /** A bit that specifies whether a subset of this font is embedded. */ private static final BitField FLAGS_EMBED_SUBSETTED = BitFieldFactory.getInstance(0x01); /** Bits that specifies whether the font is a raster,device or truetype font. */ private static final BitField FLAGS_RENDER_FONTTYPE = BitFieldFactory.getInstance(0x07); /** A bit that specifies whether font substitution logic is not applied for this font. */ private static final BitField FLAGS_NO_FONT_SUBSTITUTION = BitFieldFactory.getInstance(0x08); private int index = -1; private String typeface = "undefined"; private FontCharset charset = FontCharset.ANSI; private FontRenderType renderType = FontRenderType.truetype; private FontFamily family = FontFamily.FF_SWISS; private FontPitch pitch = FontPitch.VARIABLE; private boolean isSubsetted; private boolean isSubstitutable = true; private final List<FontEmbeddedData> facets = new ArrayList<>(); private FontEntityAtom fontEntityAtom; /** * Creates a new instance of HSLFFontInfo with more or sensible defaults.<p> * * If you don't use default fonts (see {@link HSLFFontInfoPredefined}) then the results * of the font substitution will be better, if you also specify the other properties. * * @param typeface the font name */ public HSLFFontInfo(String typeface){ setTypeface(typeface); } /** * Creates a new instance of HSLFFontInfo and initialize it from the supplied font atom */ public HSLFFontInfo(FontEntityAtom fontAtom){ fontEntityAtom = fontAtom; setIndex(fontAtom.getFontIndex()); setTypeface(fontAtom.getFontName()); setCharset(FontCharset.valueOf(fontAtom.getCharSet())); // assumption: the render type is exclusive switch (FLAGS_RENDER_FONTTYPE.getValue(fontAtom.getFontType())) { case 1: setRenderType(FontRenderType.raster); break; case 2: setRenderType(FontRenderType.device); break; default: case 4: setRenderType(FontRenderType.truetype); break; } byte pitchAndFamily = (byte)fontAtom.getPitchAndFamily(); setPitch(FontPitch.valueOfPitchFamily(pitchAndFamily)); setFamily(FontFamily.valueOfPitchFamily(pitchAndFamily)); setEmbedSubsetted(FLAGS_EMBED_SUBSETTED.isSet(fontAtom.getFontFlags())); setFontSubstitutable(!FLAGS_NO_FONT_SUBSTITUTION.isSet(fontAtom.getFontType())); } public HSLFFontInfo(FontInfo fontInfo) { // don't copy font index on copy constructor - it depends on the FontCollection this record is in setTypeface(fontInfo.getTypeface()); setCharset(fontInfo.getCharset()); setFamily(fontInfo.getFamily()); setPitch(fontInfo.getPitch()); if (fontInfo instanceof HSLFFontInfo) { HSLFFontInfo hFontInfo = (HSLFFontInfo)fontInfo; setRenderType(hFontInfo.getRenderType()); setEmbedSubsetted(hFontInfo.isEmbedSubsetted()); setFontSubstitutable(hFontInfo.isFontSubstitutable()); } } @Override public Integer getIndex() { return index; } @Override public void setIndex(int index) { this.index = index; } @Override public String getTypeface(){ return typeface; } @Override public void setTypeface(String typeface){ if (typeface == null || typeface.isEmpty()) { throw new IllegalArgumentException("typeface can't be null nor empty"); } this.typeface = typeface; } @Override public void setCharset(FontCharset charset){ this.charset = (charset == null) ? FontCharset.ANSI : charset; } @Override public FontCharset getCharset(){ return charset; } @Override public FontFamily getFamily() { return family; } @Override public void setFamily(FontFamily family) { this.family = (family == null) ? FontFamily.FF_SWISS : family; } @Override public FontPitch getPitch() { return pitch; } @Override public void setPitch(FontPitch pitch) { this.pitch = (pitch == null) ? FontPitch.VARIABLE : pitch; } public FontRenderType getRenderType() { return renderType; } public void setRenderType(FontRenderType renderType) { this.renderType = (renderType == null) ? FontRenderType.truetype : renderType; } public boolean isEmbedSubsetted() { return isSubsetted; } public void setEmbedSubsetted(boolean embedSubset) { this.isSubsetted = embedSubset; } public boolean isFontSubstitutable() { return this.isSubstitutable; } public void setFontSubstitutable(boolean isSubstitutable) { this.isSubstitutable = isSubstitutable; } public FontEntityAtom createRecord() { assert(fontEntityAtom == null); FontEntityAtom fnt = new FontEntityAtom(); fontEntityAtom = fnt; fnt.setFontIndex(getIndex() << 4); fnt.setFontName(getTypeface()); fnt.setCharSet(getCharset().getNativeId()); fnt.setFontFlags((byte)(isEmbedSubsetted() ? 1 : 0)); int typeFlag; switch (renderType) { case device: typeFlag = FLAGS_RENDER_FONTTYPE.setValue(0, 1); break; case raster: typeFlag = FLAGS_RENDER_FONTTYPE.setValue(0, 2); break; default: case truetype: typeFlag = FLAGS_RENDER_FONTTYPE.setValue(0, 4); break; } typeFlag = FLAGS_NO_FONT_SUBSTITUTION.setBoolean(typeFlag, isFontSubstitutable()); fnt.setFontType(typeFlag); fnt.setPitchAndFamily(FontPitch.getNativeId(pitch, family)); return fnt; } public void addFacet(FontEmbeddedData facet) { facets.add(facet); } @Override public List<FontEmbeddedData> getFacets() { return facets; } @Internal public FontEntityAtom getFontEntityAtom() { return fontEntityAtom; } }
⏎ org/apache/poi/hslf/usermodel/HSLFFontInfo.java
Or download all of them as a single archive file:
File name: poi-scratchpad-5.2.3-src.zip File size: 1238744 bytes Release date: 2022-09-09 Download
⇒ What Is poi-examples-5.2.3.jar?
⇐ What Is poi-excelant-5.2.3.jar?
2017-03-22, 38809👍, 0💬
Popular Posts:
How to download and install ojdbc5.jar for Oracle 11g R1? ojdbc5.jar for Oracle 11g R1 is a Java 5 J...
io.jar is a component in iText Java library to provide input/output functionalities. iText Java libr...
Jaxen, Release 1.1.1, is an open source XPath library written in Java. It is adaptable to many diffe...
kernel.jar is a component in iText Java library to provide low-level functionalities. iText Java lib...
The JMX technology provides the tools for building distributed, Web-based, modular and dynamic solut...