27 lines
945 B
TypeScript
Raw Normal View History

2025-04-02 03:46:42 +00:00
import { tool as resizeImage } from './resize/meta';
2025-04-02 19:18:20 +00:00
import { tool as compressImage } from './compress/meta';
2025-04-02 19:53:33 +00:00
import { tool as changeColors } from './change-colors/meta';
2025-04-02 20:48:00 +00:00
import { tool as removeBackground } from './remove-background/meta';
import { tool as cropImage } from './crop/meta';
import { tool as changeOpacity } from './change-opacity/meta';
import { tool as createTransparent } from './create-transparent/meta';
2025-04-03 19:55:29 +00:00
import { tool as imageToText } from './image-to-text/meta';
2025-06-05 19:13:43 +01:00
import { tool as qrCodeGenerator } from './qr-code/meta';
2025-07-03 17:07:38 +08:00
import { tool as rotateImage } from './rotate/meta';
2025-07-09 02:55:24 +01:00
import { tool as convertToJpg } from './convert-to-jpg/meta';
2025-07-09 04:34:43 +01:00
import { tool as imageEditor } from './editor/meta';
2025-04-02 20:48:00 +00:00
export const imageGenericTools = [
2025-07-09 04:34:43 +01:00
imageEditor,
2025-04-02 20:48:00 +00:00
resizeImage,
compressImage,
removeBackground,
cropImage,
changeOpacity,
changeColors,
2025-04-03 19:55:29 +00:00
createTransparent,
2025-06-05 19:13:43 +01:00
imageToText,
2025-07-03 17:07:38 +08:00
qrCodeGenerator,
2025-07-09 02:55:24 +01:00
rotateImage,
convertToJpg
2025-04-02 20:48:00 +00:00
];