i feel that the conert action in imagetoolbox has the same functionality.if there are any diffrences please let me know
Hello @YO KO,
In OutSystems, ImageMagick and the Image Toolbox are both tools/modules that enable image manipulation, but they differ in terms of functionality, implementation, and use cases.
ImageMagick is a third-party library integrated into OutSystems via extensions which provides a wide range of advanced image manipulation functionalities. While Image Toolbox is a native OutSystems Forge component designed to provide simpler image manipulation capabilities which may utilize native .NET libraries for processing (depending on its implementation).
Key Differences:
Aspect ImageMagick Image Toolbox
So you can choose ImageMagick if your application requires advanced image processing and you need to handle multiple formats or perform tasks like compositing or text overlays. Or choose Image Toolbox if you have basic image manipulation needs and you want a lightweight and easy-to-implement solution.
Hope this helps.
Hi @Sana Shaikh Thank u show me the detail.I've got it
Hi @YO KO
I'm glad you found the solution! Please mark it as the accepted answer so others with the same question can benefit from it.
Both provide the same functionality for image processing tasks like conversion, resizing, and cropping, using ImageMagick underneath (https://imagemagick.org). The difference lies in access: ImageMagick (using Magick.NET) relies on a .NET wrapper, while ImageToolbox uses static binaries directly (as per the respective Forge documentation).