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/render/intermediate/IFGraphicContext.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: IFGraphicContext.java 1616590 2014-08-07 20:27:59Z gadams $ */

package org.apache.fop.render.intermediate;

import java.awt.Dimension;
import java.awt.Rectangle;
import java.awt.geom.AffineTransform;
import java.util.ArrayList;

import org.apache.xmlgraphics.java2d.GraphicContext;

/**
 * Specialized graphic context class for the intermediate format renderer.
 */
public class IFGraphicContext extends GraphicContext {

    private static final AffineTransform[] EMPTY_TRANSFORM_ARRAY = new AffineTransform[0];

    private ArrayList groupList = new ArrayList();

    /**
     * Default constructor.
     */
    public IFGraphicContext() {
        super();
    }

    /**
     * Copy constructor.
     * @param graphicContext the graphic context to make a copy of
     */
    protected IFGraphicContext(IFGraphicContext graphicContext) {
        super(graphicContext);
        // N.B. do not perform deep copy on groupList; doing so causes
        // a junit regression... have not investigated cause... [GA]
        // groupList = (ArrayList) graphicContext.groupList.clone();
    }

    /**
     * {@inheritDoc}
     */
    // @SuppressFBWarnings("CN_IDIOM_NO_SUPER_CALL")
    public Object clone() {
        return new IFGraphicContext(this);
    }

    /** @param group a group */
    public void pushGroup(Group group) {
        this.groupList.add(group);
        for (int i = 0, c = group.getTransforms().length; i < c; i++) {
            transform(group.getTransforms()[i]);
        }
    }

    /** @return array of groups */
    public Group[] getGroups() {
        return (Group[])this.groupList.toArray(new Group[getGroupStackSize()]);
    }

    /** @return array of groups after clearing group list */
    public Group[] dropGroups() {
        Group[] groups = getGroups();
        this.groupList.clear();
        return groups;
    }

    /** @return size of group list */
    public int getGroupStackSize() {
        return this.groupList.size();
    }

    /** a group */
    public static class Group {

        private AffineTransform[] transforms;
        private String layer;

        /**
         * Construct a Group.
         * @param transforms an array of transforms
         */
        public Group(AffineTransform[] transforms) {
            this.transforms = transforms;
        }

        /**
         * Construct a Group.
         * @param transform a transform
         */
        public Group(AffineTransform transform) {
            this(new AffineTransform[] {transform});
        }

        /**
         * Construct a layer Group, i.e., a Group with no transforms
         * but with a optional content group layer label.
         * @param layer a layer label
         */
        public Group(String layer) {
            this();
            this.layer = layer;
        }

        /** Default constructor. */
        public Group() {
            this(EMPTY_TRANSFORM_ARRAY);
        }

        /** @return array of transforms */
        public AffineTransform[] getTransforms() {
            return this.transforms;
        }

        /** @return layer */
        public String getLayer() {
            return this.layer;
        }

        /**
         * @param painter a painter
         * @throws IFException in not caught
         */
        public void start(IFPainter painter) throws IFException {
            painter.startGroup(transforms, layer);
        }

        /**
         * @param painter a painter
         * @throws IFException in not caught
         */
        public void end(IFPainter painter) throws IFException {
            painter.endGroup();
        }

        /** {@inheritDoc} */
        public String toString() {
            StringBuffer sb = new StringBuffer("group: ");
            IFUtil.toString(getTransforms(), sb);
            if ((layer != null) && (layer.length() > 0)) {
                sb.append(" layer(");
                sb.append(layer);
                sb.append(')');
            }
            return sb.toString();
        }

    }

    /** a viewport */
    public static class Viewport extends Group {

        private Dimension size;
        private Rectangle clipRect;

        /**
         * Construct a viewport.
         * @param transforms an array of transforms
         * @param size a dimension
         * @param clipRect a clip rectangle
         */
        public Viewport(AffineTransform[] transforms, Dimension size, Rectangle clipRect) {
            super(transforms);
            this.size = size;
            this.clipRect = clipRect;
        }

        /**
         * Construct a viewport.
         * @param transform a transform
         * @param size a dimension
         * @param clipRect a clip rectangle
         */
        public Viewport(AffineTransform transform, Dimension size, Rectangle clipRect) {
            this(new AffineTransform[] {transform}, size, clipRect);
        }

        /** @return the viewport's size */
        public Dimension getSize() {
            return this.size;
        }

        /** @return the clip rectangle */
        public Rectangle getClipRect() {
            return this.clipRect;
        }

        /** {@inheritDoc} */
        public void start(IFPainter painter) throws IFException {
            painter.startViewport(getTransforms(), size, clipRect);
        }

        /** {@inheritDoc} */
        public void end(IFPainter painter) throws IFException {
            painter.endViewport();
        }

        /** {@inheritDoc} */
        public String toString() {
            StringBuffer sb = new StringBuffer("viewport: ");
            IFUtil.toString(getTransforms(), sb);
            sb.append(", ").append(getSize());
            if (getClipRect() != null) {
                sb.append(", ").append(getClipRect());
            }
            return sb.toString();
        }

    }

}

org/apache/fop/render/intermediate/IFGraphicContext.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

What Is fop-2.7-bin.zip

Download and Installing of FOP 2.x

⇑⇑ FAQ for FOP (Formatting Object Processor)

2016-07-07, 37846👍, 0💬