%PDF- %PDF-
Direktori : /var/www/html/node_modules/next/dist/shared/lib/ |
Current File : /var/www/html/node_modules/next/dist/shared/lib/image-blur-svg.js |
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getImageBlurSvg = getImageBlurSvg; function getImageBlurSvg({ widthInt , heightInt , blurWidth , blurHeight , blurDataURL }) { const std = blurWidth && blurHeight ? '1' : '20'; const svgWidth = blurWidth || widthInt; const svgHeight = blurHeight || heightInt; const feComponentTransfer = blurDataURL.startsWith('data:image/jpeg') ? `%3CfeComponentTransfer%3E%3CfeFuncA type='discrete' tableValues='1 1'/%3E%3C/feComponentTransfer%3E%` : ''; return `%3Csvg xmlns='http%3A//www.w3.org/2000/svg' viewBox='0 0 ${svgWidth} ${svgHeight}'%3E%3Cfilter id='b' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='${std}'/%3E${feComponentTransfer}%3C/filter%3E%3Cimage filter='url(%23b)' x='0' y='0' height='100%25' width='100%25' href='${blurDataURL}'/%3E%3C/svg%3E`; } //# sourceMappingURL=image-blur-svg.js.map