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-5.2.3.jar?
What Is poi-5.2.3.jar?
✍: FYIcenter.com
poi-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-5.2.3.jar supports Apache POI components that read and write Microsoft's OLE 2 Compound document format, which is used in early versions of Microsoft Office tools like Word 97, Excel 97, PowerPoint 97, etc.
poi-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-5.2.3.jar Target JDK version: 9 File name: poi.jar, poi-5.2.3.jar File size: 2964641 bytes Release date: 09-09-2022 Download: Apache POI Website
Here are Java Source Code files for poi-5.2.3.jar:
⏎ org/apache/poi/sl/draw/BitmapImageRenderer.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.sl.draw; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.Insets; import java.awt.Shape; import java.awt.geom.AffineTransform; import java.awt.geom.Dimension2D; import java.awt.geom.Rectangle2D; import java.awt.image.AffineTransformOp; import java.awt.image.BufferedImage; import java.awt.image.RescaleOp; import java.io.IOException; import java.io.InputStream; import java.util.Iterator; import java.util.stream.Stream; import java.util.stream.StreamSupport; import javax.imageio.ImageIO; import javax.imageio.ImageReadParam; import javax.imageio.ImageReader; import javax.imageio.ImageTypeSpecifier; import javax.imageio.stream.ImageInputStream; import javax.imageio.stream.MemoryCacheImageInputStream; import org.apache.commons.collections4.iterators.IteratorIterable; import org.apache.commons.io.input.UnsynchronizedByteArrayInputStream; import org.apache.commons.io.output.UnsynchronizedByteArrayOutputStream; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.apache.poi.sl.usermodel.PictureData.PictureType; import org.apache.poi.util.IOUtils; /** * For now this class renders only images supported by the javax.imageio.ImageIO framework. **/ public class BitmapImageRenderer implements ImageRenderer { private static final Logger LOG = LogManager.getLogger(BitmapImageRenderer.class); private static final ImageLoader[] IMAGE_LOADERS = { BitmapImageRenderer::loadColored, BitmapImageRenderer::loadGrayScaled, BitmapImageRenderer::loadTruncated }; private static final String UNSUPPORTED_IMAGE_TYPE = "Unsupported Image Type"; private static final PictureType[] ALLOWED_TYPES = { PictureType.JPEG, PictureType.PNG, PictureType.BMP, PictureType.GIF }; protected BufferedImage img; private boolean doCache; private byte[] cachedImage; private String cachedContentType; private interface ImageLoader { BufferedImage load(ImageReader reader, ImageInputStream iis, ImageReadParam param) throws IOException; } @Override public boolean canRender(String contentType) { return Stream.of(ALLOWED_TYPES).anyMatch(t -> t.contentType.equalsIgnoreCase(contentType)); } @Override public void loadImage(InputStream data, String contentType) throws IOException { InputStream in = data; if (doCache) { try (UnsynchronizedByteArrayOutputStream bos = new UnsynchronizedByteArrayOutputStream()) { IOUtils.copy(data, bos); cachedImage = bos.toByteArray(); cachedContentType = contentType; in = bos.toInputStream(); } } img = readImage(in, contentType); } @Override public void loadImage(byte[] data, String contentType) throws IOException { if (data == null) { return; } if (doCache) { cachedImage = data.clone(); cachedContentType = contentType; } img = readImage(new UnsynchronizedByteArrayInputStream(data), contentType); } /** * Read the image data via ImageIO and optionally try to workaround metadata errors. * The resulting image is of image type {@link BufferedImage#TYPE_INT_ARGB} * * @param data the data stream * @param contentType the content type * @return the bufferedImage or null, if there was no image reader for this content type * @throws IOException thrown if there was an error while processing the image */ private static BufferedImage readImage(final InputStream data, final String contentType) throws IOException { IOException lastException = null; BufferedImage img = null; // currently don't use FileCacheImageInputStream, // because of the risk of filling the file handles (see #59166) try (ImageInputStream iis = new MemoryCacheImageInputStream(data)) { Iterator<ImageReader> iter = ImageIO.getImageReaders(iis); while (img==null && iter.hasNext()) { lastException = null; ImageReader reader = iter.next(); ImageReadParam param = reader.getDefaultReadParam(); for (ImageLoader il : IMAGE_LOADERS) { iis.reset(); iis.mark(); try { img = il.load(reader, iis, param); if (img != null) { break; } } catch (IOException e) { lastException = e; if (UNSUPPORTED_IMAGE_TYPE.equals(e.getMessage())) { // fail early break; } } catch (RuntimeException e) { lastException = new IOException("ImageIO runtime exception", e); } } reader.dispose(); } } // If you don't have an image at the end of all readers if (img == null) { if (lastException != null) { // rethrow exception - be aware that the exception source can be in // multiple locations above ... throw lastException; } LOG.atWarn().log("Content-type: {} is not supported. Image ignored.", contentType); return null; } if (img.getColorModel().hasAlpha()) { return img; } // add alpha channel BufferedImage argbImg = new BufferedImage(img.getWidth(), img.getHeight(), BufferedImage.TYPE_INT_ARGB); Graphics g = argbImg.getGraphics(); g.drawImage(img, 0, 0, null); g.dispose(); return argbImg; } private static BufferedImage loadColored(ImageReader reader, ImageInputStream iis, ImageReadParam param) throws IOException { reader.setInput(iis, false, true); return reader.read(0, param); } private static BufferedImage loadGrayScaled(ImageReader reader, ImageInputStream iis, ImageReadParam param) throws IOException { // try to load picture in gray scale mode // fallback mode for invalid image band metadata Iterable<ImageTypeSpecifier> specs = new IteratorIterable<>(reader.getImageTypes(0)); StreamSupport.stream(specs.spliterator(), false). filter(its -> its.getBufferedImageType() == BufferedImage.TYPE_BYTE_GRAY).findFirst(). ifPresent(param::setDestinationType); reader.setInput(iis, false, true); return reader.read(0, param); } private static BufferedImage loadTruncated(ImageReader reader, ImageInputStream iis, ImageReadParam param) throws IOException { // try to load truncated pictures by supplying a BufferedImage // and use the processed data up till the point of error reader.setInput(iis, false, true); int height = reader.getHeight(0); int width = reader.getWidth(0); Iterator<ImageTypeSpecifier> imageTypes = reader.getImageTypes(0); if (!imageTypes.hasNext()) { // unable to load even a truncated version of the image // implicitly throwing previous error return null; } ImageTypeSpecifier imageTypeSpecifier = imageTypes.next(); BufferedImage img = imageTypeSpecifier.createBufferedImage(width, height); param.setDestination(img); try { reader.read(0, param); } catch (IOException ignored) { } if (img.getColorModel().hasAlpha()) { return img; } int y = findTruncatedBlackBox(img, width, height); if (y >= height) { return img; } BufferedImage argbImg = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB); Graphics2D g = argbImg.createGraphics(); g.clipRect(0, 0, width, y); g.drawImage(img, 0, 0, null); g.dispose(); img.flush(); return argbImg; } private static int findTruncatedBlackBox(BufferedImage img, int width, int height) { // scan through the image to find the black box after the truncated data int h = height-1; for (; h > 0; h--) { for (int w = width-1; w > 0; w-=width/10) { int p = img.getRGB(w, h); if (p != 0xff000000) { return h+1; } } } return 0; } @Override public BufferedImage getImage() { return img; } @Override public BufferedImage getImage(Dimension2D dim) { if (img == null) { return null; } double w_old = img.getWidth(); double h_old = img.getHeight(); double w_new = dim.getWidth(); double h_new = dim.getHeight(); if (w_old == w_new && h_old == h_new) { return img; } BufferedImage scaled = new BufferedImage((int)w_new, (int)h_new, BufferedImage.TYPE_INT_ARGB); AffineTransform at = new AffineTransform(); at.scale(w_new/w_old, h_new/h_old); AffineTransformOp scaleOp = new AffineTransformOp(at, AffineTransformOp.TYPE_BILINEAR); scaleOp.filter(img, scaled); return scaled; } @Override public Rectangle2D getBounds() { return (img == null) ? new Rectangle2D.Double() : new Rectangle2D.Double(0, 0, img.getWidth(), img.getHeight()); } @Override public void setAlpha(double alpha) { img = setAlpha(img, alpha); } public static BufferedImage setAlpha(BufferedImage image, double alpha) { if (image == null) { return new BufferedImage(1, 1, BufferedImage.TYPE_INT_ARGB); } if (alpha == 0) { return image; } float[] scalefactors = {1, 1, 1, (float)alpha}; float[] offsets = {0,0,0,0}; RescaleOp op = new RescaleOp(scalefactors, offsets, null); return op.filter(image, null); } @Override public boolean drawImage( Graphics2D graphics, Rectangle2D anchor) { return drawImage(graphics, anchor, null); } @Override public boolean drawImage( Graphics2D graphics, Rectangle2D anchor, Insets clip) { if (img == null) return false; boolean isClipped = true; if (clip == null) { isClipped = false; clip = new Insets(0,0,0,0); } int iw = img.getWidth(); int ih = img.getHeight(); double cw = (100000-clip.left-clip.right) / 100000.0; double ch = (100000-clip.top-clip.bottom) / 100000.0; double sx = anchor.getWidth()/(iw*cw); double sy = anchor.getHeight()/(ih*ch); double tx = anchor.getX()-(iw*sx*clip.left/100000.0); double ty = anchor.getY()-(ih*sy*clip.top/100000.0); AffineTransform at = new AffineTransform(sx, 0, 0, sy, tx, ty) ; Shape clipOld = graphics.getClip(); if (isClipped) { graphics.clip(anchor.getBounds2D()); } graphics.drawRenderedImage(img, at); graphics.setClip(clipOld); return true; } @Override public Rectangle2D getNativeBounds() { return new Rectangle2D.Double(0, 0, img.getWidth(), img.getHeight()); } @Override public void setCacheInput(boolean enable) { doCache = enable; if (!enable) { cachedContentType = null; cachedImage = null; } } @Override public byte[] getCachedImage() { return cachedImage; } @Override public String getCachedContentType() { return cachedContentType; } }
⏎ org/apache/poi/sl/draw/BitmapImageRenderer.java
Or download all of them as a single archive file:
File name: poi-5.2.3-src.zip File size: 2479830 bytes Release date: 2022-09-09 Download
⇒ What Is poi-ooxml-5.2.3.jar?
⇐ What Is poi-bin-5.2.3-20220909.zip?
2017-04-04, 95431👍, 0💬
Popular Posts:
How to download and install JDK (Java Development Kit) 8? If you want to write Java applications, yo...
HttpComponents Core Source Code Files are provided in the source package file, httpcomponents-core-5...
What Is jms.jar? I heard it's related to JMS (Java Message Service) 1.1? The if you have an jms.jar ...
What Is junit-3.8.1.jar? junit-3.8.1.jar is the version 3.8.1 of JUnit JAR library file. JUnit is a ...
JDK 11 jdk.compiler.jmod is the JMOD file for JDK 11 Compiler tool, which can be invoked by the "jav...