github.com/unidoc/unidoc@v2.2.0+incompatible/pdf/contentstream/doc.go (about) 1 /* 2 * This file is subject to the terms and conditions defined in 3 * file 'LICENSE.md', which is part of this source code package. 4 */ 5 6 // The contentstream package provides functionality for parsing and creating content streams for PDF files. 7 // 8 // For processing and manipulating content streams, it allows parse the content stream into a list of 9 // operands that can then be processed further for rendering or extraction of information. 10 // The ContentStreamProcessor offers a basic engine for processing the content stream and can be used 11 // to render or modify the contents. 12 // 13 // For creating content streams, see NewContentCreator. It allows adding multiple operands and then can 14 // be converted to a string for embedding in a PDF file. 15 // 16 // The contentstream package uses the core and model packages. 17 package contentstream