feat(new tool): Images Formats Converter

Fix #1313
This commit is contained in:
sharevb 2024-10-02 22:27:41 +02:00 committed by ShareVB
parent 1c35ac3704
commit bac8c8dc15
7 changed files with 198 additions and 17 deletions

View file

@ -0,0 +1,12 @@
import { PictureInPicture } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Image Formats Converter',
path: '/image-converter',
description: 'Convert images from one format to another',
keywords: ['image', 'bmp', 'gif', 'ico', 'jpg', 'png', 'tga', 'pvr', 'tiff', 'pnm', 'pbm', 'pgm', 'ppm', 'psd', 'webp', 'converter'],
component: () => import('./image-converter.vue'),
icon: PictureInPicture,
createdAt: new Date('2024-08-15'),
});