その上にUIImageViewを取りましたいくつかのラベルを取りました今、このUIImageViewをUIImageまたはPDFに変換したいのですが、可能ですか??
質問する
132 次
1 に答える
0
ご質問のとおり、ビューのスクリーンショットを撮り、画像または pdf として保存したいようです。次のコードを使用して、ビューのスクリーンショットを撮り、フォト ギャラリーに保存できます。
UIGraphicsBeginImageContext(self.view.bounds.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *screenShotimage = UIGraphicsGetImageFromCurrentImageContext();
UIImageWriteToSavedPhotosAlbum(screenShotimage, nil, nil, nil);
UIGraphicsEndImageContext();
于 2012-09-11T07:58:53.143 に答える