+static void
+grpt_canvas_image_print_line (cairo_t *cr, const RptPoint *from_p, const RptPoint *to_p, const RptStroke *stroke)
+{
+ if (from_p == NULL || to_p == NULL) return;
+
+ if (stroke != NULL)
+ {
+ /* TO DO */
+ /*cairo_set_line_width (priv->cr, stroke.width);*/
+ if (stroke->color != NULL)
+ {
+ cairo_set_source_rgba (cr, stroke->color->r, stroke->color->g, stroke->color->b, stroke->color->a);
+ }
+ else
+ {
+ cairo_set_source_rgba (cr, 0.0, 0.0, 0.0, 1.0);
+ }
+ if (stroke->style != NULL)
+ {
+ gdouble *dash = rpt_common_style_to_array (stroke->style);
+ cairo_set_dash (cr, dash, stroke->style->len, 0.0);
+ }
+ }
+ else
+ {
+ cairo_set_source_rgba (cr, 0.0, 0.0, 0.0, 1.0);
+ }
+
+ cairo_move_to (cr, from_p->x, from_p->y);
+ cairo_line_to (cr, to_p->x, to_p->y);
+ cairo_stroke (cr);
+
+ if (stroke != NULL && stroke->style != NULL)
+ {
+ cairo_set_dash (cr, NULL, 0, 0.0);
+ }
+}
+
+static void
+grpt_canvas_image_print_border (cairo_t *cr, const RptPoint *position, const RptSize *size, const RptBorder *border)
+{
+ if (position == NULL || size == NULL || border == NULL) return;
+
+ RptPoint *from_p = (RptPoint *)g_malloc0 (sizeof (RptPoint));
+ RptPoint *to_p = (RptPoint *)g_malloc0 (sizeof (RptPoint));
+ RptStroke *stroke = (RptStroke *)g_malloc0 (sizeof (RptStroke));
+
+ if (border->top_width != 0.0)
+ {
+ from_p->x = position->x;
+ from_p->y = position->y;
+ to_p->x = position->x + size->width;
+ to_p->y = position->y;
+ stroke->width = border->top_width;
+ stroke->color = border->top_color;
+ stroke->style = border->top_style;
+ grpt_canvas_image_print_line (cr, from_p, to_p, stroke);
+ }
+ if (border->right_width != 0.0)
+ {
+ from_p->x = position->x + size->width;
+ from_p->y = position->y;
+ to_p->x = position->x + size->width;
+ to_p->y = position->y + size->height;
+ stroke->width = border->right_width;
+ stroke->color = border->right_color;
+ stroke->style = border->right_style;
+ grpt_canvas_image_print_line (cr, from_p, to_p, stroke);
+ }
+ if (border->bottom_width != 0.0)
+ {
+ from_p->x = position->x;
+ from_p->y = position->y + size->height;
+ to_p->x = position->x + size->width;
+ to_p->y = position->y + size->height;
+ stroke->width = border->bottom_width;
+ stroke->color = border->bottom_color;
+ stroke->style = border->bottom_style;
+ grpt_canvas_image_print_line (cr, from_p, to_p, stroke);
+ }
+ if (border->left_width != 0.0)
+ {
+ from_p->x = position->x;
+ from_p->y = position->y;
+ to_p->x = position->x;
+ to_p->y = position->y + size->height;
+ stroke->width = border->left_width;
+ stroke->color = border->left_color;
+ stroke->style = border->left_style;
+ grpt_canvas_image_print_line (cr, from_p, to_p, stroke);
+ }
+}
+