mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-26 17:08:25 +00:00 
			
		
		
		
	* Consolidate Logos and update README header - Remove unused `logo-lg.png`, `logo-sm.png` and `logo-192.png`. - Consolidate `favicon.svg` and `logo.svg` to just `logo.svg`. - Remove Safari Mask icon, it seems to work fine with just `favicon.png` (no SVG support). - Remove Fluid Icon. It only served Firefox and SVG works just fine there. - Update customization instructions. - Update README.md to use SVG icon, increase logo size and center it and badges. * Update README_ZH.md Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> * Update README_ZH.md Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
		
			
				
	
	
		
			83 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env node
 | |
| 'use strict';
 | |
| 
 | |
| const imageminZopfli = require('imagemin-zopfli');
 | |
| const Svgo = require('svgo');
 | |
| const {fabric} = require('fabric');
 | |
| const {readFile, writeFile} = require('fs').promises;
 | |
| const {resolve} = require('path');
 | |
| 
 | |
| const logoFile = resolve(__dirname, '../assets/logo.svg');
 | |
| 
 | |
| function exit(err) {
 | |
|   if (err) console.error(err);
 | |
|   process.exit(err ? 1 : 0);
 | |
| }
 | |
| 
 | |
| function loadSvg(svg) {
 | |
|   return new Promise((resolve) => {
 | |
|     fabric.loadSVGFromString(svg, (objects, options) => {
 | |
|       resolve({objects, options});
 | |
|     });
 | |
|   });
 | |
| }
 | |
| 
 | |
| async function generate(svg, outputFile, {size, bg}) {
 | |
|   if (outputFile.endsWith('.svg')) {
 | |
|     const svgo = new Svgo({
 | |
|       plugins: [
 | |
|         {removeDimensions: true},
 | |
|         {addAttributesToSVGElement: {attributes: [{width: size}, {height: size}]}},
 | |
|       ],
 | |
|     });
 | |
| 
 | |
|     const {data} = await svgo.optimize(svg);
 | |
|     await writeFile(outputFile, data);
 | |
|     return;
 | |
|   }
 | |
| 
 | |
|   const {objects, options} = await loadSvg(svg);
 | |
|   const canvas = new fabric.Canvas();
 | |
|   canvas.setDimensions({width: size, height: size});
 | |
|   const ctx = canvas.getContext('2d');
 | |
|   ctx.scale(options.width ? (size / options.width) : 1, options.height ? (size / options.height) : 1);
 | |
| 
 | |
|   if (bg) {
 | |
|     canvas.add(new fabric.Rect({
 | |
|       left: 0,
 | |
|       top: 0,
 | |
|       height: size * (1 / (size / options.height)),
 | |
|       width: size * (1 / (size / options.width)),
 | |
|       fill: 'white',
 | |
|     }));
 | |
|   }
 | |
| 
 | |
|   canvas.add(fabric.util.groupSVGElements(objects, options));
 | |
|   canvas.renderAll();
 | |
| 
 | |
|   let png = Buffer.from([]);
 | |
|   for await (const chunk of canvas.createPNGStream()) {
 | |
|     png = Buffer.concat([png, chunk]);
 | |
|   }
 | |
| 
 | |
|   png = await imageminZopfli({more: true})(png);
 | |
|   await writeFile(outputFile, png);
 | |
| }
 | |
| 
 | |
| async function main() {
 | |
|   const gitea = process.argv.slice(2).includes('gitea');
 | |
|   const svg = await readFile(logoFile, 'utf8');
 | |
| 
 | |
|   await Promise.all([
 | |
|     generate(svg, resolve(__dirname, '../public/img/logo.svg'), {size: 32}),
 | |
|     generate(svg, resolve(__dirname, '../public/img/logo.png'), {size: 512}),
 | |
|     generate(svg, resolve(__dirname, '../public/img/favicon.png'), {size: 180}),
 | |
|     generate(svg, resolve(__dirname, '../public/img/avatar_default.png'), {size: 200}),
 | |
|     generate(svg, resolve(__dirname, '../public/img/apple-touch-icon.png'), {size: 180, bg: true}),
 | |
|     gitea && generate(svg, resolve(__dirname, '../public/img/gitea.svg'), {size: 32}),
 | |
|   ]);
 | |
| }
 | |
| 
 | |
| main().then(exit).catch(exit);
 | |
| 
 |