Files
spotizerr-dev/spotizerr-ui/scripts/generate-icons.js
2025-07-27 12:36:08 -06:00

199 lines
6.2 KiB
JavaScript

import sharp from 'sharp';
import { existsSync, writeFileSync } from 'fs';
import { join, dirname } from 'path';
import { fileURLToPath } from 'url';
import toIco from 'to-ico';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const publicDir = join(__dirname, '../public');
const pngPath = join(publicDir, 'spotizerr.png');
async function generateIcons() {
try {
// Check if the PNG file exists
if (!existsSync(pngPath)) {
throw new Error(`PNG file not found at ${pngPath}. Please ensure spotizerr.png exists in the public directory.`);
}
console.log('🎨 Generating PWA icons from PNG...');
// Since the source is already 1667x1667 (square), we don't need to worry about aspect ratio
const sourceSize = 1667;
// Define icon configurations
const iconConfigs = [
{
size: 16,
name: 'favicon-16x16.png',
padding: 0.1, // 10% padding for small icons
},
{
size: 32,
name: 'favicon-32x32.png',
padding: 0.1,
},
{
size: 180,
name: 'apple-touch-icon-180x180.png',
padding: 0.05, // 5% padding for Apple (they prefer less padding)
},
{
size: 192,
name: 'pwa-192x192.png',
padding: 0.1,
},
{
size: 512,
name: 'pwa-512x512.png',
padding: 0.1,
}
];
// Load the source PNG
const sourceImage = sharp(pngPath);
for (const config of iconConfigs) {
const { size, name, padding } = config;
if (padding > 0) {
// Create icon with padding by compositing on a background
const paddedSize = Math.round(size * (1 - padding * 2));
const offset = Math.round((size - paddedSize) / 2);
// Create a black background and composite the resized logo on top
await sharp({
create: {
width: size,
height: size,
channels: 4,
background: { r: 15, g: 23, b: 42, alpha: 1 } // #0f172a in RGB
}
})
.composite([{
input: await sourceImage.resize(paddedSize, paddedSize).png().toBuffer(),
top: offset,
left: offset
}])
.png()
.toFile(join(publicDir, name));
} else {
// Direct resize without padding
await sourceImage
.resize(size, size)
.png()
.toFile(join(publicDir, name));
}
console.log(`✅ Generated ${name} (${size}x${size}) - padding: ${padding * 100}%`);
}
// Create maskable icon (less padding, solid background)
const maskableSize = 512;
const maskablePadding = 0.05; // 5% padding for maskable icons
const maskablePaddedSize = Math.round(maskableSize * (1 - maskablePadding * 2));
const maskableOffset = Math.round((maskableSize - maskablePaddedSize) / 2);
await sharp({
create: {
width: maskableSize,
height: maskableSize,
channels: 4,
background: { r: 15, g: 23, b: 42, alpha: 1 } // Solid background for maskable
}
})
.composite([{
input: await sourceImage.resize(maskablePaddedSize, maskablePaddedSize).png().toBuffer(),
top: maskableOffset,
left: maskableOffset
}])
.png()
.toFile(join(publicDir, 'pwa-512x512-maskable.png'));
console.log(`✅ Generated pwa-512x512-maskable.png (${maskableSize}x${maskableSize}) - maskable`);
// Generate additional favicon sizes for ICO compatibility
const additionalSizes = [48, 64, 96, 128, 256];
for (const size of additionalSizes) {
const padding = size <= 48 ? 0.05 : 0.1;
const paddedSize = Math.round(size * (1 - padding * 2));
const offset = Math.round((size - paddedSize) / 2);
await sharp({
create: {
width: size,
height: size,
channels: 4,
background: { r: 15, g: 23, b: 42, alpha: 1 }
}
})
.composite([{
input: await sourceImage.resize(paddedSize, paddedSize).png().toBuffer(),
top: offset,
left: offset
}])
.png()
.toFile(join(publicDir, `favicon-${size}x${size}.png`));
console.log(`✅ Generated favicon-${size}x${size}.png (${size}x${size}) - padding: ${padding * 100}%`);
}
// Generate favicon.ico with multiple sizes
console.log('🎯 Generating favicon.ico...');
const icoSizes = [16, 32, 48];
const icoBuffers = [];
for (const size of icoSizes) {
const padding = 0.1; // 10% padding for ICO
const paddedSize = Math.round(size * (1 - padding * 2));
const offset = Math.round((size - paddedSize) / 2);
const buffer = await sharp({
create: {
width: size,
height: size,
channels: 4,
background: { r: 15, g: 23, b: 42, alpha: 1 }
}
})
.composite([{
input: await sourceImage.resize(paddedSize, paddedSize).png().toBuffer(),
top: offset,
left: offset
}])
.png()
.toBuffer();
icoBuffers.push(buffer);
}
// Create the ICO file
const icoBuffer = await toIco(icoBuffers);
writeFileSync(join(publicDir, 'favicon.ico'), icoBuffer);
console.log(`✅ Generated favicon.ico (${icoSizes.join('x, ')}x sizes) - multi-size ICO`);
console.log('🎉 All PWA icons generated successfully!');
console.log('');
console.log('📋 Generated files:');
iconConfigs.forEach(config => {
console.log(`${config.name} (${config.size}x${config.size})`);
});
console.log(' • pwa-512x512-maskable.png (512x512)');
additionalSizes.forEach(size => {
console.log(` • favicon-${size}x${size}.png (${size}x${size})`);
});
console.log(' • favicon.ico (multi-size: 16x16, 32x32, 48x48)');
console.log('');
console.log('💡 The icons are generated with appropriate padding and the dark theme background.');
console.log('💡 The source PNG already has the perfect background, so no additional styling needed.');
console.log('💡 favicon.ico contains multiple sizes for optimal browser compatibility.');
} catch (error) {
console.error('❌ Error generating PWA icons:', error);
process.exit(1);
}
}
generateIcons();