2025-04-02 03:46:42 +00:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('image-generic', {
|
|
|
|
|
name: 'Resize Image',
|
|
|
|
|
path: 'resize',
|
2025-07-12 11:02:15 -07:00
|
|
|
icon: 'mdi:resize',
|
2025-04-02 03:46:42 +00:00
|
|
|
description:
|
2025-07-12 11:02:15 -07:00
|
|
|
'Resize images to different dimensions while maintaining aspect ratio or custom sizes.',
|
|
|
|
|
shortDescription: 'Resize images to different dimensions',
|
|
|
|
|
keywords: ['resize', 'image', 'dimensions', 'scale', 'aspect ratio'],
|
|
|
|
|
userTypes: ['General Users', 'Students', 'Developers'],
|
2025-04-02 03:46:42 +00:00
|
|
|
component: lazy(() => import('./index'))
|
|
|
|
|
});
|