2018-09-29 17:22:53 +03:00
|
|
|
/*
|
|
|
|
* 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
|
2020-06-16 21:19:10 +00:00
|
|
|
CleanFonts bool
|
|
|
|
SubsetFonts bool
|
|
|
|
CleanContentstream bool
|
2018-09-29 17:22:53 +03:00
|
|
|
}
|