Coin Logo Coin3D is Free Software,
published under the BSD 3-clause license.
https://coin3d.github.io
https://www.kongsberg.com/en/kogt/
simage_eps.h
Go to the documentation of this file.
1 #ifndef _SIMAGE_EPS_H_
2 #define _SIMAGE_EPS_H_
3 
4 /*
5  * Copyright (c) Kongsberg Oil & Gas Technologies
6  *
7  * Permission to use, copy, modify, and distribute this software for any
8  * purpose with or without fee is hereby granted, provided that the above
9  * copyright notice and this permission notice appear in all copies.
10  *
11  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18  */
19 
20 #ifdef HAVE_CONFIG_H
21 #include <config.h>
22 #endif /* HAVE_CONFIG_H */
23 
24 #ifndef SIMAGE_EPS_SUPPORT
25 #error "This file should not be used under the current configuration!"
26 #endif /* !SIMAGE_EPS_SUPPORT */
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
32  int simage_eps_save(const char * filename,
33  const unsigned char * bytes,
34  int width,
35  int height,
36  int numcomponents);
37  int simage_eps_error(char * buffer, int bufferlen);
38 
39 #ifdef __cplusplus
40 }
41 #endif
42 
43 #endif /* _SIMAGE_EPS_H_ */
char * filename
Definition: stream.c:38
int simage_eps_error(char *buffer, int bufferlen)
Definition: simage_eps.c:34
int simage_eps_save(const char *filename, const unsigned char *bytes, int width, int height, int numcomponents)
Definition: simage_eps.c:127