/usr/include/libgoffice-0.8/goffice/utils/go-image.h is in libgoffice-0.8-dev 0.8.17-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* go-image.h - Image formats
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License, version 2, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA.
*/
#ifndef GO_IMAGE_H
#define GO_IMAGE_H
#include <goffice/goffice.h>
#include <gsf/gsf-libxml.h>
#include <cairo.h>
#ifdef GOFFICE_WITH_GTK
# include <gdk-pixbuf/gdk-pixbuf.h>
#endif
G_BEGIN_DECLS
typedef enum {
GO_IMAGE_FORMAT_SVG,
GO_IMAGE_FORMAT_PNG,
GO_IMAGE_FORMAT_JPG,
GO_IMAGE_FORMAT_PDF,
GO_IMAGE_FORMAT_PS,
GO_IMAGE_FORMAT_EMF,
GO_IMAGE_FORMAT_WMF,
GO_IMAGE_FORMAT_EPS,
GO_IMAGE_FORMAT_UNKNOWN
} GOImageFormat;
typedef struct {
GOImageFormat format;
char *name;
char *desc;
char *ext;
gboolean has_pixbuf_saver;
gboolean is_dpi_useful;
gboolean alpha_support;
} GOImageFormatInfo;
char *go_mime_to_image_format (char const *mime_type);
char *go_image_format_to_mime (char const *format);
GOImageFormatInfo const *go_image_get_format_info (GOImageFormat format);
GOImageFormat go_image_get_format_from_name (char const *name);
GSList *go_image_get_formats_with_pixbuf_saver (void);
/******************
* GOImage object *
******************/
#define GO_TYPE_IMAGE (go_image_get_type ())
#define GO_IMAGE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GO_TYPE_IMAGE, GOImage))
#define GO_IS_IMAGE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GO_TYPE_IMAGE))
GType go_image_get_type (void);
cairo_t *go_image_get_cairo (GOImage *image);
cairo_pattern_t *go_image_create_cairo_pattern (GOImage *image);
#ifdef GOFFICE_WITH_GTK
GOImage *go_image_new_from_pixbuf (GdkPixbuf *pixbuf);
GdkPixbuf *go_image_get_pixbuf (GOImage *image);
GdkPixbuf *go_image_get_thumbnail (GOImage *image);
#endif
GOImage *go_image_new_from_file (const char *filename, GError **error);
guint8 *go_image_get_pixels (GOImage *image);
int go_image_get_rowstride (GOImage *image);
void go_image_fill (GOImage *image, GOColor color);
void go_image_set_name (GOImage *image, char const *name);
char const *go_image_get_name (GOImage *image);
gboolean go_image_same_pixbuf (GOImage *first, GOImage *second);
void go_image_save (GOImage *image, GsfXMLOut *output);
void go_image_load_attrs (GOImage *image, GsfXMLIn *xin, xmlChar const **attrs);
void go_image_load_data (GOImage *image, GsfXMLIn *xin);
G_END_DECLS
#endif /* GO_IMAGE_H */
|