Namespace: BitMiracle.Docotic.Pdf
public sealed class CosStream : CosObject
Public NotInheritable Class CosStream Inherits CosObject
The CosStream type exposes the following members.
Name | Description | |
---|---|---|
![]() | Dictionary |
Gets the dictionary part of this stream.
|
![]() | Type |
Gets the type of this CosObject.
(Overrides CosObject.Type.) |
Name | Description | |
---|---|---|
![]() | Equals | (Inherited from Object.) |
![]() | GetFilters |
This method retrieves all filters that should be applied to the encoded stream data to
reproduce the original data.
|
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | ToString | (Inherited from Object.) |
A stream object consists of a dictionary followed by a sequence of bytes. A stream may be of unlimited length. Objects with potentially large amounts of data, such as images, are represented as streams.
An example of a stream object in a PDF file:
<< /Filter /FlateDecode /Length 88 >>
stream
...
endstream
WARNING: Changes to a low-level PDF stream object might break the owning PDF document.
Use high-level Docotic.Pdf API to edit a document. Don't edit a low-level PDF stream object unless you completely understand what you are doing.