All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.toucanpdf.pdf.syntax.PdfXObject Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package org.toucanpdf.pdf.syntax;

import org.toucanpdf.model.PdfNameValue;

/**
 * Represents an XObject stream in the PDF specification.
 * @author Dylan de Wolff
 *
 */
public abstract class PdfXObject extends PdfStream {

    /**
     * Creates a new instance of PdfXObject.
     */
    public PdfXObject() {
        super(PdfObjectType.XOBJECT);
        this.put(PdfNameValue.TYPE, PdfNameValue.XOBJECT);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy