"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.methods = void 0; const core_1 = require("@jimp/core"); const utils_1 = require("@jimp/utils"); const plugin_resize_1 = require("@jimp/plugin-resize"); const plugin_blit_1 = require("@jimp/plugin-blit"); const zod_1 = require("zod"); const ContainOptionsSchema = zod_1.z.object({ /** the width to resize the image to */ w: zod_1.z.number(), /** the height to resize the image to */ h: zod_1.z.number(), /** A bitmask for horizontal and vertical alignment */ align: zod_1.z.number().optional(), /** a scaling method (e.g. Jimp.RESIZE_BEZIER) */ mode: zod_1.z.nativeEnum(plugin_resize_1.ResizeStrategy).optional(), }); exports.methods = { /** * Scale the image to the given width and height keeping the aspect ratio. Some parts of the image may be letter boxed. * @param w the width to resize the image to * @param h the height to resize the image to * @param align A bitmask for horizontal and vertical alignment * @param mode a scaling method (e.g. Jimp.RESIZE_BEZIER) * @example * ```ts * import { Jimp } from "jimp"; * * const image = await Jimp.read("test/image.png"); * * image.contain({ w: 150, h: 100 }); * ``` */ contain(image, options) { const { w, h, align = core_1.HorizontalAlign.CENTER | core_1.VerticalAlign.MIDDLE, mode, } = ContainOptionsSchema.parse(options); const hbits = align & ((1 << 3) - 1); const vbits = align >> 3; // check if more flags than one is in the bit sets if (!((hbits !== 0 && !(hbits & (hbits - 1))) || (vbits !== 0 && !(vbits & (vbits - 1))))) { throw new Error("only use one flag per alignment direction"); } const alignH = hbits >> 1; // 0, 1, 2 const alignV = vbits >> 1; // 0, 1, 2 const f = w / h > image.bitmap.width / image.bitmap.height ? h / image.bitmap.height : w / image.bitmap.width; const c = plugin_resize_1.methods.scale((0, utils_1.clone)(image), { f, mode }); image = plugin_resize_1.methods.resize(image, { w, h, mode }); image.scan((_, __, idx) => { image.bitmap.data.writeUInt32BE(image.background, idx); }); image = plugin_blit_1.methods.blit(image, { src: c, x: ((image.bitmap.width - c.bitmap.width) / 2) * alignH, y: ((image.bitmap.height - c.bitmap.height) / 2) * alignV, }); return image; }, }; //# sourceMappingURL=index.js.map