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/hemf/usermodel/HemfPicture.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.hemf.usermodel; import static java.lang.Math.abs; import static java.util.Comparator.comparingDouble; import static org.apache.poi.hemf.draw.HemfGraphics.EmfRenderState.EMFPLUS_ONLY; import static org.apache.poi.hemf.draw.HemfGraphics.EmfRenderState.EMF_ONLY; import java.awt.Graphics2D; import java.awt.Shape; import java.awt.geom.AffineTransform; import java.awt.geom.Dimension2D; import java.awt.geom.Point2D; import java.awt.geom.Rectangle2D; import java.io.InputStream; import java.nio.charset.Charset; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Optional; import java.util.Spliterator; import java.util.function.Consumer; import java.util.function.Function; import java.util.function.Supplier; import java.util.stream.Stream; import org.apache.poi.common.usermodel.GenericRecord; import org.apache.poi.hemf.draw.HemfGraphics; import org.apache.poi.hemf.record.emf.HemfComment; import org.apache.poi.hemf.record.emf.HemfHeader; import org.apache.poi.hemf.record.emf.HemfRecord; import org.apache.poi.hemf.record.emf.HemfRecord.RenderBounds; import org.apache.poi.hemf.record.emf.HemfRecordIterator; import org.apache.poi.hwmf.usermodel.HwmfCharsetAware; import org.apache.poi.hwmf.usermodel.HwmfEmbedded; import org.apache.poi.sl.draw.Drawable; import org.apache.poi.util.Dimension2DDouble; import org.apache.poi.util.Internal; import org.apache.poi.util.LittleEndianInputStream; import org.apache.poi.util.LocaleUtil; import org.apache.poi.util.RecordFormatException; import org.apache.poi.util.Units; /** * Read-only EMF extractor. Lots remain */ @Internal public class HemfPicture implements Iterable<HemfRecord>, GenericRecord { private final LittleEndianInputStream stream; private final List<HemfRecord> records = new ArrayList<>(); private boolean isParsed = false; private Charset defaultCharset = LocaleUtil.CHARSET_1252; public HemfPicture(InputStream is) { this(new LittleEndianInputStream(is)); } public HemfPicture(LittleEndianInputStream is) { stream = is; } public HemfHeader getHeader() { List<HemfRecord> r = getRecords(); if (r.isEmpty()) { throw new RecordFormatException("No records could be parsed - your .emf file is invalid"); } else { return (HemfHeader)r.get(0); } } public List<HemfRecord> getRecords() { if (!isParsed) { // in case the (first) parsing throws an exception, we can provide the // records up to that point isParsed = true; HemfHeader[] header = new HemfHeader[1]; new HemfRecordIterator(stream).forEachRemaining(r -> { if (r instanceof HemfHeader) { header[0] = (HemfHeader) r; } r.setHeader(header[0]); if (r instanceof HwmfCharsetAware) { ((HwmfCharsetAware)r).setCharsetProvider(this::getDefaultCharset); } records.add(r); }); } return records; } @Override public Iterator<HemfRecord> iterator() { return getRecords().iterator(); } @Override public Spliterator<HemfRecord> spliterator() { return getRecords().spliterator(); } @Override public void forEach(Consumer<? super HemfRecord> action) { getRecords().forEach(action); } /** * Returns the bounding box in device-independent units - usually this is in .01 millimeter units * * @return the bounding box in device-independent units */ public Rectangle2D getBounds() { Rectangle2D dim = getHeader().getFrameRectangle(); boolean isInvalid = ReluctantRectangle2D.isEmpty(dim); if (isInvalid) { Rectangle2D lastDim = new ReluctantRectangle2D(); getInnerBounds(lastDim, new Rectangle2D.Double(), new Rectangle2D.Double()); if (!lastDim.isEmpty()) { return lastDim; } } return dim; } public void getInnerBounds(Rectangle2D window, Rectangle2D viewport, Rectangle2D bounds) { RenderBounds holder = new RenderBounds() { private HemfGraphics.EmfRenderState state = HemfGraphics.EmfRenderState.INITIAL; @Override public HemfGraphics.EmfRenderState getState() { return state; } @Override public void setState(HemfGraphics.EmfRenderState state) { this.state = state; } @Override public Rectangle2D getWindow() { return window; } @Override public Rectangle2D getViewport() { return viewport; } @Override public Rectangle2D getBounds() { return bounds; } }; for (HemfRecord r : getRecords()) { if ( (holder.getState() == EMF_ONLY && r instanceof HemfComment.EmfComment) || (holder.getState() == EMFPLUS_ONLY && !(r instanceof HemfComment.EmfComment)) ) { continue; } try { r.calcBounds(holder); } catch (RuntimeException ignored) { } // if (!window.isEmpty() && !viewport.isEmpty()) { // break; // } } } /** * Return the image bounds in points * * @return the image bounds in points */ public Rectangle2D getBoundsInPoints() { return Units.pixelToPoints(getHeader().getBoundsRectangle()); } /** * Return the image size in points * * @return the image size in points */ public Dimension2D getSize() { final Rectangle2D b = getBoundsInPoints(); return new Dimension2DDouble(abs(b.getWidth()), abs(b.getHeight())); } /** * @param ctx The Graphics-context to draw on * @param graphicsBounds A rectangle which describes the bounds * for drawing * @throws IllegalStateException if the draw fails */ public void draw(Graphics2D ctx, Rectangle2D graphicsBounds) { final Shape clip = ctx.getClip(); final AffineTransform at = ctx.getTransform(); try { Rectangle2D emfBounds = getHeader().getBoundsRectangle(); Rectangle2D winBounds = new ReluctantRectangle2D(); Rectangle2D viewBounds = new ReluctantRectangle2D(); Rectangle2D recBounds = new Rectangle2D.Double(); getInnerBounds(winBounds, viewBounds, recBounds); Boolean forceHeader = (Boolean)ctx.getRenderingHint(Drawable.EMF_FORCE_HEADER_BOUNDS); if (forceHeader == null) { forceHeader = false; } Rectangle2D b; if (forceHeader) { b = emfBounds; } else if (recBounds.isEmpty()) { // this is a compromise ... sometimes winBounds are totally off :( // but mostly they fit better than the header bounds b = !viewBounds.isEmpty() ? viewBounds : !winBounds.isEmpty() ? winBounds : emfBounds; } else { Optional<Rectangle2D> result = Stream.of(emfBounds, winBounds, viewBounds). min(comparingDouble(r -> diff(r, recBounds))); if (result.isPresent()) { b = result.get(); } else { throw new IllegalStateException("Failed to create Rectangle2D for drawing"); } } ctx.translate(graphicsBounds.getCenterX(), graphicsBounds.getCenterY()); ctx.scale( graphicsBounds.getWidth()/b.getWidth(), graphicsBounds.getHeight()/b.getHeight() ); ctx.translate(-b.getCenterX(),-b.getCenterY()); HemfGraphics g = new HemfGraphics(ctx, b); int idx = 0; for (HemfRecord r : getRecords()) { try { g.draw(r); } catch (RuntimeException ignored) { } idx++; } } finally { ctx.setTransform(at); ctx.setClip(clip); } } private static double diff(Rectangle2D bounds, Rectangle2D target) { double d = 0; for (int i=0; i<4; i++) { Function<Rectangle2D,Double> fx = (i < 2) ? Rectangle2D::getMinX : Rectangle2D::getMaxX; Function<Rectangle2D,Double> fy = (i % 2 == 0) ? Rectangle2D::getMinY : Rectangle2D::getMaxY; d += Point2D.distanceSq(fx.apply(bounds), fy.apply(bounds), fx.apply(target), fy.apply(target)); } return d; } public Iterable<HwmfEmbedded> getEmbeddings() { return () -> new HemfEmbeddedIterator(HemfPicture.this); } @Override public List<? extends GenericRecord> getGenericChildren() { return getRecords(); } @Override public Map<String, Supplier<?>> getGenericProperties() { return null; } public void setDefaultCharset(Charset defaultCharset) { this.defaultCharset = defaultCharset; } public Charset getDefaultCharset() { return defaultCharset; } private static class ReluctantRectangle2D extends Rectangle2D.Double { private boolean offsetSet = false; private boolean rangeSet = false; public ReluctantRectangle2D() { super(-1,-1,0,0); } @Override public void setRect(double x, double y, double w, double h) { if (offsetSet && rangeSet) { return; } super.setRect( offsetSet ? this.x : x, offsetSet ? this.y : y, rangeSet ? this.width : w, rangeSet ? this.height : h); offsetSet |= (x != -1 || y != -1); rangeSet |= (w != 0 || h != 0); } @Override public boolean isEmpty() { return isEmpty(this); } public static boolean isEmpty(Rectangle2D r) { double w = Math.rint(r.getWidth()); double h = Math.rint(r.getHeight()); return (w <= 0.0) || (h <= 0.0) || (r.getX() == -1 && r.getY() == -1) || // invalid emf bound have sometimes 1,1 as dimension (w == 1 && h == 1); } } }
⏎ org/apache/poi/hemf/usermodel/HemfPicture.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, 34495👍, 0💬
Popular Posts:
Apache Log4j API provides the interface that applications should code to and provides the adapter co...
If you are a Java developer, it is very often that you need to use some 3rd party libraries to perfo...
MXP1 is a stable XmlPull parsing engine that is based on ideas from XPP and in particular XPP2 but c...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
How to download and install ojdbc5.jar for Oracle 11g R1? ojdbc5.jar for Oracle 11g R1 is a Java 5 J...