Code

Filters. Custom predefined filters update and new ABC filters.
[inkscape.git] / src / svg / svg-color.h
1 #ifndef SVG_SVG_COLOR_H_SEEN
2 #define SVG_SVG_COLOR_H_SEEN
4 #include <glib/gtypes.h>
6 class SVGICCColor;
8 guint32 sp_svg_read_color(gchar const *str, unsigned int dfl);
9 guint32 sp_svg_read_color(gchar const *str, gchar const **end_ptr, guint32 def);
10 void sp_svg_write_color(char *buf, unsigned int buflen, unsigned int rgba32);
12 bool sp_svg_read_icc_color( gchar const *str, gchar const **end_ptr, SVGICCColor* dest );
13 bool sp_svg_read_icc_color( gchar const *str, SVGICCColor* dest );
14 void icc_color_to_sRGB(SVGICCColor* dest, guchar* r, guchar* g, guchar* b);
16 #endif /* !SVG_SVG_COLOR_H_SEEN */