noita-mapcap/bin/stitch/stitch.go

66 lines
1.5 KiB
Go
Raw Normal View History

2019-10-21 00:07:39 +00:00
// Copyright (c) 2019 David Vogel
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
package main
import (
"image"
"image/png"
2019-10-21 00:07:39 +00:00
"log"
"os"
2019-10-21 00:07:39 +00:00
"path/filepath"
)
var inputPath = filepath.Join(".", "..", "..", "output")
func main() {
log.Printf("Starting to read tile information at \"%v\"", inputPath)
2019-10-21 00:07:39 +00:00
tiles, err := loadImages(inputPath)
if err != nil {
log.Panic(err)
}
log.Printf("Got %v tiles", len(tiles))
2019-10-21 00:07:39 +00:00
/*profFile, err := os.Create("cpu.prof")
if err != nil {
log.Panicf("could not create CPU profile: %v", err)
}
defer profFile.Close()
if err := pprof.StartCPUProfile(profFile); err != nil {
log.Panicf("could not start CPU profile: %v", err)
}
defer pprof.StopCPUProfile()*/
// TODO: Flags / Program arguments
outputRect := image.Rect(-35000, -35000, 35000, 35000)
log.Printf("Creating output image with a size of %v", outputRect.Size())
outputImage := image.NewRGBA(outputRect)
log.Printf("Stitching %v tiles into an image at %v", len(tiles), outputImage.Bounds())
tp := make(tilePairs)
if err := tp.StitchGrid(tiles, outputImage, 1024); err != nil {
log.Panic(err)
}
log.Printf("Creating output file \"%v\"", "output.png")
f, err := os.Create("output.png")
if err != nil {
log.Panic(err)
}
if err := png.Encode(f, outputImage); err != nil {
f.Close()
log.Panic(err)
}
if err := f.Close(); err != nil {
log.Panic(err)
2019-10-21 00:07:39 +00:00
}
log.Printf("Created output file \"%v\"", "output.png")
2019-10-21 00:07:39 +00:00
}