feat: edit image

This commit is contained in:
Ibrahima G. Coulibaly
2025-07-09 04:34:43 +01:00
parent 1250c8f4c3
commit 90e0389156
7 changed files with 522 additions and 63 deletions

View File

@@ -0,0 +1,28 @@
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('image-generic', {
name: 'Image Editor',
path: 'editor',
icon: 'mdi:image-edit',
description:
'Advanced image editor with tools for cropping, rotating, annotating, adjusting colors, and adding watermarks. Edit your images with professional-grade tools directly in your browser.',
shortDescription: 'Edit images with advanced tools and features',
keywords: [
'image',
'editor',
'edit',
'crop',
'rotate',
'annotate',
'adjust',
'watermark',
'text',
'drawing',
'filters',
'brightness',
'contrast',
'saturation'
],
component: lazy(() => import('./index'))
});