java.lang.Object
org.sejda.sambox.pdmodel.common.PDStream
org.sejda.sambox.pdmodel.common.PDObjectStream
- All Implemented Interfaces:
COSObjectable
A PDStream represents a stream in a PDF document. Streams are tied to a single
PDF document.
- Author:
- Ben Litchfield
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic PDObjectStreamcreateStream(PDDocument document) This will create a new PDObjectStream object.A reference to an object stream, of which the current object stream is considered an extension.intThe byte offset (in the decoded stream) of the first compressed object.intGet the number of compressed object.getType()Get the type of this object, should always return "ObjStm".voidsetExtends(PDObjectStream stream) A reference to an object stream, of which the current object stream is considered an extension.voidsetFirstByteOffset(int n) The byte offset (in the decoded stream) of the first compressed object.voidsetNumberOfObjects(int n) Set the number of objects.Methods inherited from class org.sejda.sambox.pdmodel.common.PDStream
createInputStream, createOutputStream, createOutputStream, getCOSObject, getDecodedStreamLength, getDecodeParms, getFile, getFileDecodeParams, getFileFilters, getFilters, getLength, getMetadata, setDecodedStreamLength, setDecodeParms, setFile, setFileDecodeParams, setFileFilters, setFilters, setMetadata, toByteArray
-
Constructor Details
-
PDObjectStream
Constructor.- Parameters:
str- The stream parameter.
-
-
Method Details
-
createStream
This will create a new PDObjectStream object.- Parameters:
document- The document that the stream will be part of.- Returns:
- A new stream object.
-
getType
Get the type of this object, should always return "ObjStm".- Returns:
- The type of this object.
-
getNumberOfObjects
public int getNumberOfObjects()Get the number of compressed object.- Returns:
- The number of compressed objects.
-
setNumberOfObjects
public void setNumberOfObjects(int n) Set the number of objects.- Parameters:
n- The new number of objects.
-
getFirstByteOffset
public int getFirstByteOffset()The byte offset (in the decoded stream) of the first compressed object.- Returns:
- The byte offset to the first object.
-
setFirstByteOffset
public void setFirstByteOffset(int n) The byte offset (in the decoded stream) of the first compressed object.- Parameters:
n- The byte offset to the first object.
-
getExtends
A reference to an object stream, of which the current object stream is considered an extension.- Returns:
- The object that this stream is an extension.
-
setExtends
A reference to an object stream, of which the current object stream is considered an extension.- Parameters:
stream- The object stream extension.
-