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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
/* vim: set sw=4: -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
/*
rsvg.h: SAX-based renderer for SVG files into a GdkPixbuf.
Copyright (C) 2000 Eazel, Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
This program 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 program; if not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
Author: Raph Levien <raph@artofcode.com>
*/
#ifndef RSVG_H
#define RSVG_H
#include <gdk-pixbuf/gdk-pixbuf.h>
G_BEGIN_DECLS
typedef enum {
RSVG_ERROR_FAILED
} RsvgError;
#define RSVG_ERROR (rsvg_error_quark ())
GQuark rsvg_error_quark (void) G_GNUC_CONST;
typedef struct RsvgHandle RsvgHandle;
/**
* RsvgSizeFunc ():
* @width: Pointer to where to set/store the width
* @height: Pointer to where to set/store the height
* @user_data: User data pointer
*
* Function to let a user of the library specify the SVG's dimensions
* @width: the ouput width the SVG should be
* @height: the output height the SVG should be
* @user_data: user data
*/
typedef void (* RsvgSizeFunc) (gint *width,
gint *height,
gpointer user_data);
void rsvg_set_default_dpi (double dpi);
RsvgHandle *rsvg_handle_new (void);
void rsvg_handle_set_dpi (RsvgHandle * handle, double dpi);
void rsvg_handle_set_size_callback (RsvgHandle *handle,
RsvgSizeFunc size_func,
gpointer user_data,
GDestroyNotify user_data_destroy);
gboolean rsvg_handle_write (RsvgHandle *handle,
const guchar *buf,
gsize count,
GError **error);
gboolean rsvg_handle_close (RsvgHandle *handle,
GError **error);
GdkPixbuf *rsvg_handle_get_pixbuf (RsvgHandle *handle);
void rsvg_handle_free (RsvgHandle *handle);
/* Convenience API */
GdkPixbuf *rsvg_pixbuf_from_file (const gchar *file_name,
GError **error);
GdkPixbuf *rsvg_pixbuf_from_file_at_zoom (const gchar *file_name,
double x_zoom,
double y_zoom,
GError **error);
GdkPixbuf *rsvg_pixbuf_from_file_at_size (const gchar *file_name,
gint width,
gint height,
GError **error);
GdkPixbuf *rsvg_pixbuf_from_file_at_max_size (const gchar *file_name,
gint max_width,
gint max_height,
GError **error);
GdkPixbuf *rsvg_pixbuf_from_file_at_zoom_with_max (const gchar *file_name,
double x_zoom,
double y_zoom,
gint max_width,
gint max_height,
GError **error);
/* Accessibility API */
G_CONST_RETURN char *rsvg_handle_get_title (RsvgHandle *handle);
G_CONST_RETURN char *rsvg_handle_get_desc (RsvgHandle *handle);
/* Extended Convenience API */
GdkPixbuf * rsvg_pixbuf_from_file_at_size_ex (RsvgHandle * handle,
const gchar *file_name,
gint width,
gint height,
GError **error);
GdkPixbuf * rsvg_pixbuf_from_file_ex (RsvgHandle * handle,
const gchar *file_name,
GError **error);
GdkPixbuf * rsvg_pixbuf_from_file_at_zoom_ex (RsvgHandle * handle,
const gchar *file_name,
double x_zoom,
double y_zoom,
GError **error);
GdkPixbuf * rsvg_pixbuf_from_file_at_max_size_ex (RsvgHandle * handle,
const gchar *file_name,
gint max_width,
gint max_height,
GError **error);
GdkPixbuf * rsvg_pixbuf_from_file_at_zoom_with_max_ex (RsvgHandle * handle,
const gchar *file_name,
double x_zoom,
double y_zoom,
gint max_width,
gint max_height,
GError **error);
G_END_DECLS
#endif /* RSVG_H */
|