UNPKG

@dada78641/bwmapimage

Version:

Generates images of StarCraft: Brood War and Remastered maps

23 lines (20 loc) 664 B
// @dada78641/bwmapimage <https://github.com/msikma/bwmapimage> // © MIT license import {getRecommendedFileExtension} from './util.js' /** * Combines metadata from the raw bitmap and from the final image into one object. */ export function wrapMetadata(imgMetadata, bmpMetadata, filetype, options) { return { type: filetype, extension: getRecommendedFileExtension(options.encoderType), format: imgMetadata.format, channels: imgMetadata.channels, size: imgMetadata.size, width: imgMetadata.width, height: imgMetadata.height, fullWidth: bmpMetadata.width, fullHeight: bmpMetadata.height, resolvedOptions: options } }