mirror of https://github.com/GNOME/gimp.git
Bug 792453: Extend the raw data import plugin to open...
... .hdr files (RGBE images) Expose in GIMP GEGL RGBE file support
This commit is contained in:
parent
89445edee1
commit
9799032e4f
|
@ -69,6 +69,19 @@ static gboolean save_image (const gchar *filename,
|
|||
|
||||
static const FileFormat file_formats[] =
|
||||
{
|
||||
{
|
||||
N_("Radiance RGBE"),
|
||||
"image/vnd.radiance",
|
||||
"hdr",
|
||||
"0,string,?#RADIANCE\x0a",
|
||||
|
||||
"file-gegl-load-rgbe",
|
||||
"Load files in the RGBE file format",
|
||||
"This procedure loads images in the RGBE format, using gegl:load",
|
||||
|
||||
/* no RGBE saving */
|
||||
NULL, NULL, NULL
|
||||
},
|
||||
{
|
||||
N_("OpenEXR image"),
|
||||
"image/x-exr",
|
||||
|
|
Loading…
Reference in New Issue