Welcome to mirror list, hosted at ThFree Co, Russian Federation.

openimageio_api.h « oiio « intern « imbuf « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 523c28ddeab65517953df91b9ef2d9565dcd7f86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2013 Blender Foundation. All rights reserved. */

/** \file
 * \ingroup openimageio
 */

#pragma once

#include <stdio.h>

#ifdef __cplusplus
extern "C" {
#endif

struct ImBuf;

bool imb_is_a_photoshop(const unsigned char *mem, size_t size);

int imb_save_photoshop(struct ImBuf *ibuf, const char *name, int flags);

struct ImBuf *imb_load_photoshop(const char *name, int flags, char *colorspace);

int OIIO_getVersionHex(void);

#ifdef __cplusplus
}

#endif