How to create GIF file from another format file in C ++

I want to create 2-bit GIF files in a VC environment from a TIFF file.

Is there a free library or source that can help me?

Or how can I do it myself?

+3
source share
2 answers

You can use OpenIL ( http://openil.sourceforge.net/ ), which is a C library, or if you really only want a C ++ solution, Magick ++ ( http://www.imagemagick.org/www/ Magick ++ / )

+2
source

Assuming "VC environment" means using VC ++ to create a win32 executable:

ImageMagick, CreateProcess().

0

Source: https://habr.com/ru/post/1744298/


All Articles