我正在開發一個iOs 5 iPhone應用程序,我想以編程方式在用戶按下故事板中的視圖按鈕時截圖。我已經嘗試了很多代碼,但它們適用於舊版本的iOs。我怎樣才能做到這一點在iOs 5.謝謝!以編程方式採用屏幕截圖iOs 5
回答
- (void)drawRect:(CGRect)rect {
UIGraphicsBeginImageContext(self.bounds.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
}
其中是UIGraphicsEndImageContext(); ? – Gargo
修正了它,我的不好。 –
嗯,有編程
使用UIKit的http://developer.apple.com/library/ios/#qa/qa1703/_index.html
捕捉iPhone屏幕的一些方法使用AVFoundation框架http://developer.apple.com/library/ios/#qa/qa1702/_index.html
利用OpenGL ES http://developer.apple.com/library/ios/#qa/qa1704/_index.html
使用視圖
CGRect screenRect = [[UIScreen mainScreen] bounds]; UIGraphicsBeginImageContext(screenRect.size); CGContextRef ctx = UIGraphicsGetCurrentContext(); [[UIColor blackColor] set]; CGContextFillRect(ctx, screenRect); [self.window.layer renderInContext:ctx]; UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext();
使用窗
UIGraphicsBeginImageContext(self.view.frame.size); [self.view.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage *viImage=UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext();
在對這些5點的方法,我發現了第一選項的複製粘貼和用於壓縮的施加電平非常方便第一種方法爲圖像提供真實的像素數據。
由於這是一個老問題,我把代碼放在這裏,希望能幫助別人。 (代碼是從蘋果副本:http://developer.apple.com/library/ios/#qa/qa1703/_index.html)的
- (UIImage*)screenshot
{
// Create a graphics context with the target size
// On iOS 4 and later, use UIGraphicsBeginImageContextWithOptions to take the scale into consideration
// On iOS prior to 4, fall back to use UIGraphicsBeginImageContext
CGSize imageSize = [[UIScreen mainScreen] bounds].size;
if (NULL != UIGraphicsBeginImageContextWithOptions)
UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0);
else
UIGraphicsBeginImageContext(imageSize);
CGContextRef context = UIGraphicsGetCurrentContext();
// Iterate over every window from back to front
for (UIWindow *window in [[UIApplication sharedApplication] windows])
{
if (![window respondsToSelector:@selector(screen)] || [window screen] == [UIScreen mainScreen])
{
// -renderInContext: renders in the coordinate space of the layer,
// so we must first apply the layer's geometry to the graphics context
CGContextSaveGState(context);
// Center the context around the window's anchor point
CGContextTranslateCTM(context, [window center].x, [window center].y);
// Apply the window's transform about the anchor point
CGContextConcatCTM(context, [window transform]);
// Offset by the portion of the bounds left of and above the anchor point
CGContextTranslateCTM(context,
-[window bounds].size.width * [[window layer] anchorPoint].x,
-[window bounds].size.height * [[window layer] anchorPoint].y);
// Render the layer hierarchy to the current context
[[window layer] renderInContext:context];
// Restore the context
CGContextRestoreGState(context);
}
}
// Retrieve the screenshot image
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
- 1. 以屏幕截圖(以編程方式)
- 2. iOS以編程方式使用GPUImageview進行屏幕截圖
- 3. 以編程方式拍攝整個屏幕的屏幕截圖
- 4. 以Android編程的屏幕截圖問題以編程方式
- 5. iOS採取多個屏幕截圖
- 6. 以編程方式編輯屏幕截圖
- 7. 以編程方式關閉iOS屏幕
- 8. 以編程方式禁用App中的屏幕截圖
- 9. 以屏幕截圖並以編程方式發送
- 10. Android以編程方式拍攝屏幕截圖
- 11. 以編程方式獲取Java applet的屏幕截圖
- 12. 如何以編程方式獲取android設備屏幕截圖?
- 13. 以編程方式進行屏幕截圖,沒有狀態欄
- 14. 以編程方式限制屏幕截圖
- 15. Android - 如何以編程方式抓取屏幕截圖
- 16. 以編程方式抓取OSX中的屏幕截圖
- 17. 如何在Android中以編程方式拍攝屏幕截圖?
- 18. 以編程方式登錄論壇,然後屏幕截圖
- 19. 以編程方式在網絡中抓取屏幕截圖
- 20. 以編程方式在iOS7多任務屏幕中刷新屏幕截圖?
- 21. 以編程方式在Android設備上採取當前屏幕的屏幕截圖?
- 22. iOS - 在應用程序崩潰之前採取屏幕截圖
- 23. 編程式網站屏幕截圖
- 24. Android - 以編程方式截取屏幕截圖而不參考視圖/活動
- 25. 如何在Android中以編程方式截屏整個屏幕?
- 26. 以silverlight 5/xna拍攝屏幕截圖
- 27. 如何以編程方式在Sprite-Kit中截取屏幕截圖?
- 28. iOS以編程方式添加主屏幕快捷方式
- 29. 以編程方式採取位圖截圖Android
- 30. 任何方式在java中採取URL的屏幕截圖
可能重複[如何採取截圖編程(http://stackoverflow.com/questions/2200736/how-to-take-a-screenshot - 程序化) –
@ - 一二三,該帖子明確表示,用戶需要它的iOS5 – Satyam