Co-authored-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.tech> Reviewed-on: https://git.avroid.tech/Conan/conan_build/pulls/14
9 lines
112 B
C
9 lines
112 B
C
#include <tiffio.h>
|
|
|
|
int main()
|
|
{
|
|
TIFF* tif = TIFFOpen("foo.tif", "w");
|
|
TIFFClose(tif);
|
|
return 0;
|
|
}
|