mirror of
https://github.com/unidoc/unipdf.git
synced 2025-04-26 13:48:55 +08:00
18 lines
496 B
Go
18 lines
496 B
Go
/*
|
|
* This file is subject to the terms and conditions defined in
|
|
* file 'LICENSE.md', which is part of this source code package.
|
|
*/
|
|
|
|
package optimize
|
|
|
|
// Options describes PDF optimization parameters.
|
|
type Options struct {
|
|
CombineDuplicateStreams bool
|
|
CombineDuplicateDirectObjects bool
|
|
ImageUpperPPI float64
|
|
ImageQuality int
|
|
UseObjectStreams bool
|
|
CombineIdenticalIndirectObjects bool
|
|
CompressStreams bool
|
|
}
|