Files
2024-12-26 16:03:17 +03:00

9 lines
112 B
C

#include <tiffio.h>
int main()
{
TIFF* tif = TIFFOpen("foo.tif", "w");
TIFFClose(tif);
return 0;
}