module Magick::RVG::ImageConstructors

def image(image, width = nil, height = nil, x = 0, y = 0)

viewport and centered within the viewport.
viewport. By default, the image is scaled to fit inside the
control the placement and scaling of the image within the
of the image. Use the RVG::PreserveAspectRatio#preserve_aspect_ratio method to
If not specified, the width and height are the width and height
in a viewport of the specified width and height.
Composite a raster image at [x,y]
def image(image, width = nil, height = nil, x = 0, y = 0)
  img = Image.new(image, width, height, x, y)
  @content << img
  img
end