2012-03-16 5 views
1

특정 영역의 스크린 샷을 찍는 데 문제가 있습니다. 하단에는 툴바가 있고 상단에는 툴바가 있습니다. 이 두 막대 사이에서 화면의 스크린 샷을 찍고 싶습니다. 아래는 제 코드입니다. 막대를 자르려면 코드를 어떻게 향상시킬 수 있습니까?응용 프로그램의 스크린 샷 크기 조정

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(); 




UIImageWriteToSavedPhotosAlbum(image, self, @selector(imageSavedToPhotosAlbum: didFinishSavingWithError: contextInfo:), nil); 
+0

확인이 post..http : //stackoverflow.com/questions/9694806/how-to-take-a-screenshot-of-a-part-of-an-apps-window/9696309#9696309 –

답변

3

나는 당신이 최종있는 UIImage를 생성 한 후 필요한 부분을 자르기 시도 할 수도있을 것 같군요.

CGRect contentRectToCrop = CGRectMake(0, 44, 320, 392); 
UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); 

CGImageRef imageRef = CGImageCreateWithImageInRect([image CGImage], contentRectToCrop); 
UIImage *croppedImage = [UIImage imageWithCGImage:imageRef]; 
+0

감사합니다. 좋은데,이 코드는 어디에 둘 수 있습니까? 나는 저축 방법 앞에 넣으려고했으나 제대로 작동하지 않는 것 같습니다. – Clarence

+0

단일 행을 대체 해보십시오. UIImage * image = UIGraphicsGetImageFromCurrentImageContext(); 이 블록을 사용하는 코드에서 'image'대신 'croppedImage'를 UIImageWriteToSavedPhotosAlbum 메소드에 전달해야합니다. – Madhu

+0

문제 해결 .... 감사합니다 – Clarence

0

안된 sugestion

감사 :

imageSize.origin.y+=44; //toolbar size 
imageSize.size.height-=88; //tabbar+toolbar size 
관련 문제