こんにちは皆さん、私は現在pptファイルを表示しているUIWebViewをビットマップイメージに変換しようとして立ち往生しています。
私はこのコードを持っています:
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 768, 708)];
NSString *path = [[NSBundle mainBundle] pathForResource:documentName ofType:nil];
NSURL *targetURL = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
[webView loadRequest:request];
NSLog(@"Ouverture du contexte image");
UIGraphicsBeginImageContext(webView.bounds.size);
[webView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
Webビューは実際にはうまく表示されていますが、画像へのレンダリングを作成することはできませんでした。問題がどこにあるかを誰かが知っている場合;)ありがとう