The goal of my project is to resize any kind of image (jpeg/gif/png) in Delphi 6.
I have tried many ways but I could not get the ideal solution. Any clue of how to do that? It can be a simple command line tool, some code or a Delphi component.
I tried imagemagick: that's too heavy : 20 megas + dlls + registry.
I tried some snippet but mostly of them ONLY work for JPEG. I need gif/jpeg/png
I tried graphicEX but does not load my GIF
using GDI+ e.g. with http://www.progdigy.com/?page_id=7 should enable you writing a converter very fast for at least BMP, GIF, JPEG, PNG, TIFF, ICON, WMF, EMF. You'd just have to load the graphic an paint it to a desired HDC using scale and translate transforms.