mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-25 08:12:36 +02:00
81 lines
1.6 KiB
Go
81 lines
1.6 KiB
Go
/*
|
|
Image helpers to transform image.
|
|
*/
|
|
package epubimage
|
|
|
|
import (
|
|
"fmt"
|
|
"image"
|
|
)
|
|
|
|
type Image struct {
|
|
Id int
|
|
Part int
|
|
Raw image.Image
|
|
Width int
|
|
Height int
|
|
IsCover bool
|
|
DoublePage bool
|
|
Path string
|
|
Name string
|
|
}
|
|
|
|
// key name of the image
|
|
func (i *Image) Key(prefix string) string {
|
|
return fmt.Sprintf("%s_%d_p%d", prefix, i.Id, i.Part)
|
|
}
|
|
|
|
// key name of the blank plage after the image
|
|
func (i *Image) SpaceKey(prefix string) string {
|
|
return fmt.Sprintf("%s_%d_sp", prefix, i.Id)
|
|
}
|
|
|
|
// path of the blank page
|
|
func (i *Image) SpacePath() string {
|
|
return fmt.Sprintf("Text/%d_sp.xhtml", i.Id)
|
|
}
|
|
|
|
// text path linked to the image
|
|
func (i *Image) TextPath() string {
|
|
return fmt.Sprintf("Text/%d_p%d.xhtml", i.Id, i.Part)
|
|
}
|
|
|
|
// image path
|
|
func (i *Image) ImgPath() string {
|
|
return fmt.Sprintf("Images/%d_p%d.jpg", i.Id, i.Part)
|
|
}
|
|
|
|
// style to apply to the image.
|
|
//
|
|
// center by default.
|
|
// align to left or right if it's part of the splitted double page.
|
|
func (i *Image) ImgStyle(viewWidth, viewHeight int, manga bool) string {
|
|
marginW, marginH := float64(viewWidth-i.Width)/2, float64(viewHeight-i.Height)/2
|
|
left, top := marginW*100/float64(viewWidth), marginH*100/float64(viewHeight)
|
|
var align string
|
|
switch i.Part {
|
|
case 0:
|
|
align = fmt.Sprintf("left:%.2f%%", left)
|
|
case 1:
|
|
if manga {
|
|
align = "left:0"
|
|
} else {
|
|
align = "right:0"
|
|
}
|
|
case 2:
|
|
if manga {
|
|
align = "right:0"
|
|
} else {
|
|
align = "left:0"
|
|
}
|
|
}
|
|
|
|
return fmt.Sprintf(
|
|
"width:%dpx; height:%dpx; top:%.2f%%; %s;",
|
|
i.Width,
|
|
i.Height,
|
|
top,
|
|
align,
|
|
)
|
|
}
|