1234567891011121314151617181920212223242526 |
- Author: Adam Buchbinder <adam.buchbinder@gmail.com>
- Description: Adding new magics for HDR formats (Closes: #520416).
- diff -Naurp file.orig/magic/Magdir/images file/magic/Magdir/images
- --- file.orig/magic/Magdir/images 2009-12-05 18:35:08.000000000 +0100
- +++ file/magic/Magdir/images 2009-12-05 18:40:05.000000000 +0100
- @@ -639,3 +639,19 @@
- # Extension: .cpi
- # From: Alexander Danilov <alexander.a.danilov@gmail.com>
- 0 string HDMV0100 AVCHD Clip Information
- +
- +# From: Adam Buchbinder <adam.buchbinder@gmail.com>
- +# 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 <adam.buchbinder@gmail.com>
- +# 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
|