evas - saver - tiff - change types to remove deprecated warnings

This commit is contained in:
Carsten Haitzler 2021-05-03 17:02:33 +01:00
parent c855204271
commit a3510d5085
1 changed files with 5 additions and 5 deletions

View File

@ -14,11 +14,11 @@ static int
save_image_tiff(RGBA_Image *im, const char *file, int compress EINA_UNUSED, int interlace EINA_UNUSED) save_image_tiff(RGBA_Image *im, const char *file, int compress EINA_UNUSED, int interlace EINA_UNUSED)
{ {
TIFF *tif = NULL; TIFF *tif = NULL;
uint8 *buf = NULL; uint8_t *buf = NULL;
DATA32 pixel; DATA32 pixel;
DATA32 *data; DATA32 *data;
uint32 x, y; uint32_t x, y;
uint8 r, g, b, a = 0; uint8_t r, g, b, a = 0;
int i = 0; int i = 0;
int has_alpha; int has_alpha;
@ -48,7 +48,7 @@ save_image_tiff(RGBA_Image *im, const char *file, int compress EINA_UNUSED, int
if (has_alpha) if (has_alpha)
{ {
uint16 extras[] = { EXTRASAMPLE_ASSOCALPHA }; uint16_t extras[] = { EXTRASAMPLE_ASSOCALPHA };
TIFFSetField(tif, TIFFTAG_SAMPLESPERPIXEL, 4); TIFFSetField(tif, TIFFTAG_SAMPLESPERPIXEL, 4);
TIFFSetField(tif, TIFFTAG_EXTRASAMPLES, 1, extras); TIFFSetField(tif, TIFFTAG_EXTRASAMPLES, 1, extras);
} }
@ -60,7 +60,7 @@ save_image_tiff(RGBA_Image *im, const char *file, int compress EINA_UNUSED, int
TIFFSetField(tif, TIFFTAG_BITSPERSAMPLE, 8); TIFFSetField(tif, TIFFTAG_BITSPERSAMPLE, 8);
TIFFSetField(tif, TIFFTAG_ROWSPERSTRIP, TIFFDefaultStripSize(tif, 0)); TIFFSetField(tif, TIFFTAG_ROWSPERSTRIP, TIFFDefaultStripSize(tif, 0));
buf = (uint8 *) _TIFFmalloc(TIFFScanlineSize(tif)); buf = (uint8_t *) _TIFFmalloc(TIFFScanlineSize(tif));
if (!buf) if (!buf)
{ {
TIFFClose(tif); TIFFClose(tif);