mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-25 08:12:36 +02:00
17 lines
360 B
Go
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
|
|
}
|