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:
Jehan 2021-12-17 16:56:43 +01:00
parent 24d6140782
commit d5164072e0
1 changed files with 1 additions and 1 deletions

View File

@ -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",