
org.toucanpdf.pdf.syntax.PdfXObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toucanpdf Show documentation
Show all versions of toucanpdf Show documentation
Java library for the creation of PDF files
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