blob: c9d0e8091f95e2b8c8d8c63d6846fe70d9602b5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// 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_SAVE_H_
#define PLUGINS_GIMP_FILE_JXL_SAVE_H_
#include "plugins/gimp/common.h"
namespace jxl {
bool SaveJpegXlImage(gint32 image_id, gint32 drawable_id, gint32 orig_image_id,
const gchar* filename);
} // namespace jxl
#endif // PLUGINS_GIMP_FILE_JXL_SAVE_H_
|