/usr/share/gnudatalanguage/lib/query_tiff.pro is in libgnudatalanguage0 0.9.7-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ;
; by Sylwester Arabas <slayoo (at) igf.fuw.edu.pl>
;
function QUERY_TIFF, filename, info, image_index=image_index
;
ON_ERROR, 2
;
; Do we have access to ImageMagick functionnalities ??
;
if (MAGICK_EXISTS() EQ 0) then begin
MESSAGE, /continue, "GDL was compiled without ImageMagick support."
MESSAGE, "You must have ImageMagick support to use this functionaly."
endif
;
; TODO: GEOTIFF keyword
;
return, MAGICK_PING(filename, 'TIFF', info=info, image_index=image_index)
;
end
|