2024-06-25 07:44:36 +01:00
import { defineTool } from '@tools/defineTool' ;
import { lazy } from 'react' ;
2025-04-02 20:48:00 +00:00
export const tool = defineTool ( 'image-generic' , {
2025-07-14 13:55:01 +01:00
i18n : {
name : 'image:createTransparent.title' ,
description : 'image:createTransparent.description' ,
shortDescription : 'image:createTransparent.shortDescription'
} ,
2024-06-25 07:44:36 +01:00
name : 'Create transparent PNG' ,
path : 'create-transparent' ,
2025-02-25 06:17:10 +00:00
icon : 'mdi:circle-transparent' ,
2025-04-02 20:48:00 +00:00
shortDescription : 'Quickly make an image transparent' ,
2024-06-25 07:44:36 +01:00
description :
2025-04-02 20:48:00 +00:00
"World's simplest online Portable Network Graphics transparency maker. Just import your image in the editor on the left and you will instantly get a transparent PNG on the right. Free, quick, and very powerful. Import an image – get a transparent PNG." ,
2024-06-25 07:44:36 +01:00
keywords : [ 'create' , 'transparent' ] ,
component : lazy ( ( ) = > import ( './index' ) )
} ) ;