// Copyright (c) 2023-2024 David Vogel // // This software is released under the MIT License. // https://opensource.org/licenses/MIT package main import ( "fmt" "os" "path/filepath" "strings" "github.com/cheggaaa/pb/v3" ) func exportDZIStitchedImage(stitchedImage *StitchedImage, outputPath string, bar *pb.ProgressBar, dziTileSize, dziOverlap int, webPLevel int) error { descriptorPath := outputPath extension := filepath.Ext(outputPath) outputTilesPath := strings.TrimSuffix(outputPath, extension) + "_files" dzi := NewDZI(stitchedImage, dziTileSize, dziOverlap) // Create base directory of all DZI files. if err := os.MkdirAll(outputTilesPath, 0755); err != nil { return fmt.Errorf("failed to create output directory: %w", err) } // Export DZI descriptor. if err := dzi.ExportDZIDescriptor(descriptorPath); err != nil { return fmt.Errorf("failed to export DZI descriptor: %w", err) } // Export DZI tiles. if err := dzi.ExportDZITiles(outputTilesPath, bar, webPLevel); err != nil { return fmt.Errorf("failed to export DZI tiles: %w", err) } return nil }