OSDN Git Service

MacGui: Remove Target Size as a rate control option as it doesn't really work correct...
[handbrake-jp/handbrake-jp-git.git] / gtk / src / icon_tools.h
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 2 of the License, or
5  * (at your option) any later version.
6  * 
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  * GNU Library General Public License for more details.
11  * 
12  * You should have received a copy of the GNU General Public License
13  * along with this program; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301,  USA
15  */
16 #if !defined(_ICON_TOOLS_H_)
17 #define _ICON_TOOLS_H_
18
19 #include <glib.h>
20 #include <gdk-pixbuf/gdk-pixbuf.h>
21 #include <gdk-pixbuf/gdk-pixdata.h>
22
23 GdkPixbuf* icon_deserialize(const guint8 *sd, guint len);
24 guint8* icon_serialize(const GdkPixbuf *pixbuf, guint *len);
25 guint8* icon_file_serialize(const gchar *filename, guint *len);
26 GdkPixbuf* base64_to_icon(const gchar *bd);
27 gchar* icon_to_base64(const GdkPixbuf *pixbuf);
28 gchar* icon_file_to_base64(const gchar *filename);
29
30 #endif // _ICON_TOOLS_H_