mirror of https://github.com/GNOME/gimp.git
plug-ins: fix Radiance RGBE magic number.
Note that the full magic should be "#?RADIANCE". Not sure why we only use the first 2 characters. Do some software create these RGBE files with just "#?" and we want to be able to read these? No other image format use these 2 characters as the start of their own magic numbers? Anyway let's keep like this for now. We'll see. If it makes a problem, we might update to more accurate magic later.
This commit is contained in:
parent
24d6140782
commit
d5164072e0
|
@ -109,7 +109,7 @@ static const FileFormat file_formats[] =
|
|||
N_("Radiance RGBE"),
|
||||
"image/vnd.radiance",
|
||||
"hdr",
|
||||
"0,string,?#",
|
||||
"0,string,#?",
|
||||
|
||||
"file-load-rgbe",
|
||||
"Load files in the RGBE file format",
|
||||
|
|
Loading…
Reference in New Issue