The patch is attached. Adam Buchbinder
Author: Adam Buchbinder <[email protected]> Description: Add Radiance and PFS support. (Closes: #520416)
diff -Naurp file.orig/magic/Magdir/images file/magic/Magdir/images --- file.orig/magic/Magdir/images 2009-02-20 10:43:12.000000000 -0500 +++ file/magic/Magdir/images 2009-03-19 10:08:48.000000000 -0400 @@ -600,3 +600,20 @@ # Wavelet Scalar Quantization format used in gray-scale fingerprint images # From Tano M Fotang <[email protected]> 0 string \xff\xa0\xff\xa8\x00 Wavelet Scalar Quantization image data + +# From: Adam Buchbinder <[email protected]> +# URL: http://local.wasp.uwa.edu.au/~pbourke/dataformats/pic/ +# Radiance HDR; usually has .pic or .hdr extension. +0 string #?RADIANCE\n Radiance HDR image data +#!mime image/vnd.radiance + +# From: Adam Buchbinder <[email protected]> +# URL: http://www.mpi-inf.mpg.de/resources/pfstools/pfs_format_spec.pdf +# Used by the pfstools packages. The regex matches for the image size could +# probably use some work. The MIME type is made up; if there's one in +# actual common use, it should replace the one below. +0 string PFS1\x0a PFS HDR image data +#!mime image/x-pfs +>1 regex [0-9]*\ \b, %s +>>1 regex \ [0-9]{4} \bx%s +

