Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Co ¶
Co is the main function doing the image manipulation. It uses pattern to find matched images, combines them to the given side, and creates an output file to the given destination.
Types ¶
type Direction ¶
type Direction int
Direction describes which side the image is appended to.
const ( // Top indicates that the newer image will be appended to the top of the older image. Top Direction = iota // Left indicates that the newer image will be appended to the left of the older image. Left // Bottom indicates that the newer image will be appended to the bottom of the older image. Bottom // Right indicates that the newer image will be appended to the right of the older image. Right )
Click to show internal directories.
Click to hide internal directories.