#ifdef CAIRO_HAS_SVG_SURFACE
Â
  std::string filename = "image.svg";
  double width = 600;
  double height = 400;
  auto surface =
    Cairo::SvgSurface::create(filename, width, height);
Â
  auto cr = Cairo::Context::create(surface);
Â
  cr->save(); // save the state of the context
Â
Now, I want to load this SVG image into a GTKImage area. One GTKIMage named "image_svg" is the GTKImage widget into which I want to load the SVG image.
Â
How do I link the SVG image to the "image_svg" GTKImage widget?
Â
Yours sincerely,
Arvind.
Â