blob: c9ca6d99b8753b1b3fe56dc562dee85adaf9612f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (c) the JPEG XL Project Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#ifndef PLUGINS_GIMP_FILE_JXL_LOAD_H_
#define PLUGINS_GIMP_FILE_JXL_LOAD_H_
#include "jxl/decode.h"
#include "jxl/decode_cxx.h"
#include "plugins/gimp/common.h"
namespace jxl {
bool LoadJpegXlImage(const gchar* filename, gint32* image_id);
} // namespace jxl
#endif // PLUGINS_GIMP_FILE_JXL_LOAD_H_
|