|
Hi mudnug,
I have solved.
In my project I use gdalwarp utility, I run this command:
gdalwarp -t_srs epsg:32633 -tps -dstnodata 0 -co COMPRESS=JPEG -co JPEG_QUALITY=80 -tr 0.5 0.5 input.tif output.tif
If I load the output image using GDAL extension, DotSpatial maps no-data value. If I remove GDAL extension it does not map properly no-data value.
I have changed my command in:
gdalwarp -t_srs epsg:32633 -tps -dstalpha -co COMPRESS=DEFLATE -tr 0.5 0.5 input.tif output.tif
Now I load my output.tif as IImageData, and no-data value is properly mapped.
Thank you very very much,
Andrea
|