2025-07-09 04:34:43 +01:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('image-generic', {
|
2025-07-14 13:55:01 +01:00
|
|
|
i18n: {
|
|
|
|
|
name: 'image:editor.title',
|
|
|
|
|
description: 'image:editor.description',
|
|
|
|
|
shortDescription: 'image:editor.shortDescription'
|
|
|
|
|
},
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2025-07-09 04:34:43 +01:00
|
|
|
path: 'editor',
|
|
|
|
|
icon: 'mdi:image-edit',
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2025-07-09 04:34:43 +01:00
|
|
|
keywords: [
|
|
|
|
|
'image',
|
|
|
|
|
'editor',
|
|
|
|
|
'edit',
|
|
|
|
|
'crop',
|
|
|
|
|
'rotate',
|
|
|
|
|
'annotate',
|
|
|
|
|
'adjust',
|
|
|
|
|
'watermark',
|
|
|
|
|
'text',
|
|
|
|
|
'drawing',
|
|
|
|
|
'filters',
|
|
|
|
|
'brightness',
|
|
|
|
|
'contrast',
|
|
|
|
|
'saturation'
|
|
|
|
|
],
|
|
|
|
|
component: lazy(() => import('./index'))
|
|
|
|
|
});
|