forked from unidoc/unidoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doc.go
41 lines (40 loc) · 1.98 KB
/
doc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* This file is subject to the terms and conditions defined in
* file 'LICENSE.md', which is part of this source code package.
*/
// OssDoc is a comprehensive PDF library for Go (golang). The library has advanced capabilities for generating,
// processing and modifying PDFs. OssDoc is a fork of UniDoc (https://github.com/unidoc/unidoc).
//
// Getting More Information
//
// The godoc for ossdoc provides a detailed breakdown of the API and documentation for packages, types and methods.
// https://godoc.org/github.com/gtrafimenkov/ossdoc
//
// Overview of Major Packages
//
// The API is composed of a few major packages:
//
// - common: Provides common shared types such as Logger and utilities to check
// license validity.
//
// - pdf/core: The core package defines the primitive PDF object types and handles
// the file reading I/O and parsing the primitive objects.
//
// - pdf/model: The model package builds on the core package, to represent the PDF as
// a structured model of the PDF primitive types. It has a reader and a writer to
// read and process a PDF file based on the structured model. This serves as a basis
// to perform a number of numerous tasks and can be used to work with a PDF in a
// medium to high level interface, although it does require an understanding of the
// PDF format and structure.
//
// - pdf/creator: The PDF creator makes it easy to create new PDFs or modify existing
// PDFs. It can also enable loading a template PDF, adding text/images and
// generating an output PDF. It can be used to add text, images, and generate text
// and graphical reports. It is designed with simplicity in mind, with the goal of
// making it easy to create reports without needing any knowledge about the PDF
// format or specifications.
//
// - pdf/extractor: Package extractor is used for quickly extracting PDF content
// through a simple interface. Currently offers functionality for extracting textual
// content.
package unidoc