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 fop.jar in fop-2.7-bin.zip
What Is fop.jar? I got it from the fop-2.7-bin.zip.
✍: FYIcenter.com
fop.jar in fop-2.7-bin.zip is the JAR file for FOP 2.7, which is a print formatter driven by XSL formatting objects (XSL-FO). You can obtain fop.jar from the build folder of the fop-2.7-bin.zip file.
Below is the information about the fop.jar (2.2) file:
JAR File Size and Download Location:
JAR name: fop.jar, fop-2.7.jar Target JDK version: 1.7 File name: fop.jar File size: 4442817 bytes Release date: 20-Jan-2022 Download: Apache FOP Website
Java source code files for fop.jar:
⏎ org/apache/fop/afp/modca/ImageObject.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. */ /* $Id: ImageObject.java 1643102 2014-12-03 12:16:16Z lbernardo $ */ package org.apache.fop.afp.modca; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.OutputStream; import org.apache.xmlgraphics.util.MimeConstants; import org.apache.fop.afp.AFPDataObjectInfo; import org.apache.fop.afp.AFPImageObjectInfo; import org.apache.fop.afp.Factory; import org.apache.fop.afp.ioca.BandImage; import org.apache.fop.afp.ioca.ImageSegment; import org.apache.fop.afp.ioca.Tile; import org.apache.fop.afp.ioca.TilePosition; import org.apache.fop.afp.ioca.TileSize; /** * An IOCA Image Data Object */ public class ImageObject extends AbstractDataObject { private static final int MAX_DATA_LEN = 8192; /** the image segment */ private ImageSegment imageSegment; /** * Constructor for the image object with the specified name, * the name must be a fixed length of eight characters. * * @param name The name of the image. * @param factory the resource manager */ public ImageObject(Factory factory, String name) { super(factory, name); } /** * Returns the image segment object associated with this image object. * @return the image segment */ public ImageSegment getImageSegment() { if (imageSegment == null) { this.imageSegment = factory.createImageSegment(); } return imageSegment; } /** {@inheritDoc} */ public void setViewport(AFPDataObjectInfo dataObjectInfo) { super.setViewport(dataObjectInfo); AFPImageObjectInfo imageObjectInfo = (AFPImageObjectInfo)dataObjectInfo; int dataWidth = imageObjectInfo.getDataWidth(); int dataHeight = imageObjectInfo.getDataHeight(); int dataWidthRes = imageObjectInfo.getDataWidthRes(); int dataHeightRes = imageObjectInfo.getDataWidthRes(); ImageDataDescriptor imageDataDescriptor = factory.createImageDataDescriptor(dataWidth, dataHeight, dataWidthRes, dataHeightRes); boolean setImageSize = true; if (MimeConstants.MIME_AFP_IOCA_FS45.equals(imageObjectInfo.getMimeType())) { imageDataDescriptor.setFunctionSet(ImageDataDescriptor.FUNCTION_SET_FS45); if (imageObjectInfo.getBitsPerPixel() == 32) { setImageSize = false; Tile tile = factory.createTile(); TilePosition tilePosition = factory.createTilePosition(); TileSize tileSize = factory.createTileSize(dataWidth, dataHeight, dataWidthRes, dataHeightRes); BandImage bandImage = factory.createBandImage(); tile.setPosition(tilePosition); tile.setSize(tileSize); tile.setBandImage(bandImage); getImageSegment().setTileTOC(); getImageSegment().addTile(tile); } } else if (imageObjectInfo.getBitsPerPixel() == 1) { imageDataDescriptor.setFunctionSet(ImageDataDescriptor.FUNCTION_SET_FS10); } getObjectEnvironmentGroup().setDataDescriptor(imageDataDescriptor); getObjectEnvironmentGroup().setMapImageObject( new MapImageObject(dataObjectInfo.getMappingOption())); if (setImageSize) { // not used for FS45 getImageSegment().setImageSize(dataWidth, dataHeight, dataWidthRes, dataHeightRes); } } /** * Sets the image encoding. * * @param encoding The image encoding. */ public void setEncoding(byte encoding) { getImageSegment().setEncoding(encoding); } /** * Sets the image compression. * * @param compression The image compression. */ public void setCompression(byte compression) { getImageSegment().setCompression(compression); } /** * Sets the image IDE size. * * @param size The IDE size. */ public void setIDESize(byte size) { getImageSegment().setIDESize(size); } /** * Sets the image IDE color model. * * @param colorModel the IDE color model. * @deprecated Use {@link org.apache.fop.afp.ioca.IDEStructureParameter#setColorModel(byte)} * instead. */ public void setIDEColorModel(byte colorModel) { getImageSegment().setIDEColorModel(colorModel); } /** * Set either additive or subtractive mode (used for ASFLAG). * @param subtractive true for subtractive mode, false for additive mode * @deprecated Use {@link org.apache.fop.afp.ioca.IDEStructureParameter#setSubtractive(boolean)} * instead. */ public void setSubtractive(boolean subtractive) { getImageSegment().setSubtractive(subtractive); } /** * Set the data of the image. * * @param imageData the image data */ public void setData(byte[] imageData) { getImageSegment().setData(imageData); } /** {@inheritDoc} */ protected void writeStart(OutputStream os) throws IOException { byte[] data = new byte[17]; copySF(data, Type.BEGIN, Category.IMAGE); os.write(data); } /** {@inheritDoc} */ protected void writeContent(OutputStream os) throws IOException { super.writeContent(os); if (imageSegment != null) { final byte[] dataHeader = new byte[9]; copySF(dataHeader, SF_CLASS, Type.DATA, Category.IMAGE); final int lengthOffset = 1; // TODO save memory! ByteArrayOutputStream baos = new ByteArrayOutputStream(); imageSegment.writeToStream(baos); byte[] data = baos.toByteArray(); writeChunksToStream(data, dataHeader, lengthOffset, MAX_DATA_LEN, os); } } /** {@inheritDoc} */ protected void writeEnd(OutputStream os) throws IOException { byte[] data = new byte[17]; copySF(data, Type.END, Category.IMAGE); os.write(data); } }
⏎ org/apache/fop/afp/modca/ImageObject.java
Or download all of them as a single archive file:
File name: fop-2.7-src.zip File size: 3401312 bytes Release date: 2022-01-20 Download
⇒ "fop" Command in fop-2.7-bin.zip
2016-07-07, 64358👍, 0💬
Popular Posts:
Where to find answers to frequently asked questions on Downloading and Using JDK (Java Development K...
Where to find answers to frequently asked questions on Downloading and Installing Connector/J - JDBC...
JDK 8 tools.jar is the JAR file for JDK 8 tools. It contains Java classes to support different JDK t...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
How to run "jar" command from JDK tools.jar file? "jar" is the JAR (Java Archive) file management co...