ssap_app/node_modules/@expo/image-utils/build/Image.js

263 lines
10 KiB
JavaScript

"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.getMimeType = getMimeType;
exports.generateImageBackgroundAsync = generateImageBackgroundAsync;
exports.generateImageAsync = generateImageAsync;
exports.generateFaviconAsync = generateFaviconAsync;
exports.compositeImagesAsync = compositeImagesAsync;
exports.getPngInfo = getPngInfo;
const chalk_1 = __importDefault(require("chalk"));
const fs_1 = __importDefault(require("fs"));
const parse_png_1 = __importDefault(require("parse-png"));
const path_1 = __importDefault(require("path"));
const Cache = __importStar(require("./Cache"));
const Download = __importStar(require("./Download"));
const Ico = __importStar(require("./Ico"));
const env_1 = require("./env");
const Jimp = __importStar(require("./jimp"));
const Sharp = __importStar(require("./sharp"));
let hasWarned = false;
async function resizeImagesAsync(buffer, sizes) {
const sharp = await getSharpAsync();
if (!sharp) {
return Jimp.resizeBufferAsync(buffer, sizes);
}
return Sharp.resizeBufferAsync(buffer, sizes);
}
async function resizeAsync(imageOptions) {
const sharp = await getSharpAsync();
const { width, height, backgroundColor, resizeMode } = imageOptions;
if (!sharp) {
const inputOptions = { input: imageOptions.src, quality: 100 };
const jimp = await Jimp.resize(inputOptions, {
width,
height,
fit: resizeMode,
background: backgroundColor,
});
if (imageOptions.removeTransparency) {
jimp.colorType(2);
}
if (imageOptions.borderRadius) {
// TODO: support setting border radius with Jimp. Currently only support making the image a circle
await Jimp.circleAsync(jimp);
}
// Convert to png buffer
return jimp.getBufferAsync('image/png');
}
try {
let sharpBuffer = sharp(imageOptions.src)
.keepIccProfile()
.ensureAlpha()
.resize(width, height, { fit: resizeMode, background: 'transparent' });
// Skip an extra step if the background is explicitly transparent.
if (backgroundColor && backgroundColor !== 'transparent') {
// Add the background color to the image
sharpBuffer = sharpBuffer.composite([
{
// create a background color
input: {
create: {
width,
height,
// allow alpha colors
channels: imageOptions.removeTransparency ? 3 : 4,
background: backgroundColor,
},
},
// dest-over makes the first image (input) appear on top of the created image (background color)
blend: 'dest-over',
},
]);
}
else if (imageOptions.removeTransparency) {
sharpBuffer.flatten();
}
if (imageOptions.borderRadius) {
const mask = Buffer.from(`<svg><rect x="0" y="0" width="${width}" height="${height}"
rx="${imageOptions.borderRadius}" ry="${imageOptions.borderRadius}"
fill="${backgroundColor && backgroundColor !== 'transparent' ? backgroundColor : 'none'}" /></svg>`);
sharpBuffer.composite([{ input: mask, blend: 'dest-in' }]);
}
return await sharpBuffer.png().toBuffer();
}
catch (error) {
throw new Error(`It was not possible to generate splash screen '${imageOptions.src}'. ${error.message}`);
}
}
async function getSharpAsync() {
if (await Sharp.isAvailableAsync()) {
return await Sharp.findSharpInstanceAsync();
}
return null;
}
function getDimensionsId(imageOptions) {
return imageOptions.width === imageOptions.height
? `${imageOptions.width}`
: `${imageOptions.width}x${imageOptions.height}`;
}
async function maybeWarnAboutInstallingSharpAsync() {
if (env_1.env.EXPO_IMAGE_UTILS_NO_SHARP) {
return;
}
if (env_1.env.EXPO_IMAGE_UTILS_DEBUG && !hasWarned && !(await Sharp.isAvailableAsync())) {
hasWarned = true;
console.warn(chalk_1.default.yellow(`Using node to generate images. This is much slower than using native packages.\n\u203A Optionally you can stop the process and try again after successfully running \`npm install -g sharp-cli\`.\n`));
}
}
const types = {
png: 'image/png',
jpeg: 'image/jpeg',
jpg: 'image/jpeg',
jpe: 'image/jpeg',
webp: 'image/webp',
gif: 'image/gif',
};
const inverseMimeTypes = {
'image/png': 'png',
'image/jpeg': 'jpg',
'image/webp': 'webp',
'image/gif': 'gif',
};
function getMimeType(srcPath) {
if (typeof srcPath !== 'string')
return null;
try {
// If the path is a URL, use the pathname
const url = new URL(srcPath);
srcPath = url.pathname;
}
catch { }
const ext = path_1.default.extname(srcPath).replace(/^\./, '');
return types[ext] ?? null;
}
async function ensureImageOptionsAsync(imageOptions) {
const icon = {
...imageOptions,
src: await Download.downloadOrUseCachedImage(imageOptions.src),
};
// Default to contain
if (!icon.resizeMode) {
icon.resizeMode = 'contain';
}
const mimeType = getMimeType(icon.src);
if (!mimeType) {
throw new Error(`Invalid mimeType for image with source: ${icon.src}`);
}
if (!icon.name) {
icon.name = `icon_${getDimensionsId(imageOptions)}.${inverseMimeTypes[mimeType]}`;
}
return icon;
}
async function generateImageBackgroundAsync(imageOptions) {
const { width, height, backgroundColor, borderRadius } = imageOptions;
const sharp = await getSharpAsync();
if (!sharp) {
const jimp = await Jimp.createSquareAsync({
size: width,
color: backgroundColor,
});
if (borderRadius) {
const image = await Jimp.getJimpImageAsync(jimp);
// TODO: support setting border radius with Jimp. Currently only support making the image a circle
return await Jimp.circleAsync(image);
}
return jimp;
}
const sharpBuffer = sharp({
create: {
width,
height,
channels: 4,
// TODO(cedric): this background color has to be defined for Sharp, but it's optionally typed here
// When we rework `@expo/image-utils`, this needs to be taken into account.
background: backgroundColor,
},
});
if (imageOptions.borderRadius) {
const mask = Buffer.from(`<svg><rect x="0" y="0" width="${width}" height="${height}"
rx="${borderRadius}" ry="${borderRadius}"
fill="${backgroundColor && backgroundColor !== 'transparent' ? backgroundColor : 'none'}" /></svg>`);
sharpBuffer.composite([{ input: mask, blend: 'dest-in' }]);
}
return await sharpBuffer.png().toBuffer();
}
async function generateImageAsync(options, imageOptions) {
const icon = await ensureImageOptionsAsync(imageOptions);
if (!options.cacheType) {
await maybeWarnAboutInstallingSharpAsync();
return { name: icon.name, source: await resizeAsync(icon) };
}
const cacheKey = await Cache.createCacheKeyWithDirectoryAsync(options.projectRoot, options.cacheType, icon);
const name = icon.name;
let source = await Cache.getImageFromCacheAsync(name, cacheKey);
if (!source) {
await maybeWarnAboutInstallingSharpAsync();
source = await resizeAsync(icon);
await Cache.cacheImageAsync(name, source, cacheKey);
}
return { name, source };
}
async function generateFaviconAsync(pngImageBuffer, sizes = [16, 32, 48]) {
const buffers = await resizeImagesAsync(pngImageBuffer, sizes);
return await Ico.generateAsync(buffers);
}
/**
* Layers the provided foreground image over the provided background image.
*
* @param foregroundImageBuffer
* @param foregroundImageBuffer
* @param x pixel offset from the left edge, defaults to 0.
* @param y pixel offset from the top edge, defaults to 0.
*/
async function compositeImagesAsync({ foreground, background, x = 0, y = 0, }) {
const sharp = await getSharpAsync();
if (!sharp) {
const image = (await Jimp.getJimpImageAsync(background)).composite(await Jimp.getJimpImageAsync(foreground), x, y);
return await image.getBufferAsync(image.getMIME());
}
return await sharp(background)
.keepIccProfile()
.composite([{ input: foreground, left: x, top: y }])
.toBuffer();
}
async function getPngInfo(src) {
return await (0, parse_png_1.default)(fs_1.default.readFileSync(src));
}
//# sourceMappingURL=Image.js.map