go-comic-converter/internal/epub/image/epub_image_options.go
2023-04-26 16:23:38 +02:00

17 lines
360 B
Go

package epubimage
// options for image transformation
type Options struct {
Crop bool
ViewWidth int
ViewHeight int
Quality int
Brightness int
Contrast int
AutoRotate bool
AutoSplitDoublePage bool
NoBlankPage bool
Manga bool
HasCover bool
}