示例#1
0
 public void RenderImage(object nativeWidget, object nativeContext, Image img, double x, double y)
 {
     img.GetFixedSize();              // Ensure that it has a size
     backend.RenderImage(nativeWidget, nativeContext, img.ImageDescription, x, y);
 }
示例#2
0
 /// <summary>
 /// Renders an image to the provided native drawing context
 /// </summary>
 /// <param name="nativeWidget">The native widget.</param>
 /// <param name="nativeContext">The native context.</param>
 /// <param name="img">The Image to render.</param>
 /// <param name="x">The destinate x coordinate.</param>
 /// <param name="y">The destinate y coordinate.</param>
 public void RenderImage(object nativeWidget, object nativeContext, Image img, double x, double y)
 {
     ValidateObject(img);
     img.GetFixedSize();              // Ensure that it has a size
     backend.RenderImage(nativeWidget, nativeContext, img.GetImageDescription(this), x, y);
 }