1

我有一个 UIWebView,其中包含由 Google Charts 生成的图形(呈现的 JavaScript)

屏幕不是pdf或png。

是否可以捕获屏幕上的内容并将其发送到 AirPrint?

4

3 回答 3

5

截取 web 视图并将其发送到 AirPrint。

// TAKE SCREENSHOT
CGRect myRect = [self.view bounds];
UIGraphicsBeginImageContext(myRect.size);   
CGContextRef ctx = UIGraphicsGetCurrentContext();
[[UIColor blackColor] set];
CGContextFillRect(ctx, myRect);
[self.view.layer renderInContext:ctx];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
NSData *imageData = UIImageJPEGRepresentation(viewImage, 1.0);
UIGraphicsEndImageContext();
于 2011-06-11T01:22:47.023 回答
3

这是翻译成 Monotouch .NET c# 的答案

  public static UIImage TakeScreenShot (UIView view)
{
    try
    {
        RectangleF canvasRect = view.Bounds;
        UIGraphics.BeginImageContext (canvasRect.Size);

        CGContext ctx = UIGraphics.GetCurrentContext ();
        ctx.FillRect (canvasRect);
        view.Layer.RenderInContext (ctx);

        UIImage newImage = UIGraphics.GetImageFromCurrentImageContext ();

        UIGraphics.EndImageContext ();

        return newImage;
    }
    catch
    {
        return null;
    }
}
于 2011-06-12T03:18:04.907 回答
0

应在 UIWebView.LoadFinished 之后调用函数“UIGetWebViewPrintScreen”

void main()
{
  RectangleF rect(0, 0, 100, 100);
  UIWebView = new UIWebView();
  UIImage Img = null;
  string sHtml = "test string";
  WebView.LoadHtmlString(sHtml, null);
  WebView.Frame = rect;
  WebView.LoadFinished += delegate
  {
    if (UIGetWebViewPrintScreen (WebVIew, Img))
    {
      //doing with Img what you want.
    }
  }
}


public bool UIGetWebViewPrintScreen(UIWebView WebView, out UIImage Img)
    {
      bool bSuccess = false;
      //Should be call after event uiWebView.LoadFinished
      UIGraphics.BeginImageContext(WebView.ScrollView.Bounds.Size);
      CGContext cnt = UIGraphics.GetCurrentContext();
      if (cnt != null)
      {
        WebView.Layer.RenderInContext(cnt);
        Img = UIGraphics.GetImageFromCurrentImageContext();
        bSuccess = true;
      }
      else
        Img = null;
      UIGraphics.EndImageContext();

      return bSuccess;
    }
于 2013-11-18T08:55:30.100 回答