1

我是 iPhone 开发的新手,我使用 UIImagePickerController 手动捕获图像,但我想自动捕获图像,是否可以这样做。请帮我。

提前致谢

4

2 回答 2

0

尝试这个。在此我已将屏幕截图保存在相册中

-(void)screenShotCapture
{

    //-- Screen Capture --------------------------------------------------------------------//

    UIImage *image = nil;

    UIGraphicsBeginImageContext(loginBgImgVw.frame.size);

    NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
    [formatter setDateFormat:@"MM-dd-yyyy hh:mm:ss"];
    [formatter setTimeZone:[NSTimeZone localTimeZone]];

    NSString *dateToday = [formatter stringFromDate:[NSDate date]];

    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(375, 0, 600, 44)];
    [label setText:dateToday];
    NSString *fileNameStr = [NSString stringWithFormat:@"%@_Login_%@",providerIdStr,dateToday];

    [label setText:fileNameStr];
    label.backgroundColor = [UIColor clearColor];
    [loginBgImgVw addSubview:label];
    [formatter release];

    loginBgImgVw.frame = CGRectMake(10, 0, 1006, 669);

    [loginBgImgVw.layer renderInContext: UIGraphicsGetCurrentContext()];     
    image = UIGraphicsGetImageFromCurrentImageContext();        
    UIGraphicsEndImageContext();        
    [label removeFromSuperview];

    //=--

    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

    NSString *docspath = [paths objectAtIndex:0];
    NSLog(@"path=--%@",paths);

    NSString *dataPath = [docspath stringByAppendingPathComponent:[NSString stringWithFormat:@"ProviderID_%@",providerIdStr]];
    if (![[NSFileManager defaultManager] fileExistsAtPath:dataPath])
    {
        [[NSFileManager defaultManager] createDirectoryAtPath:dataPath withIntermediateDirectories:NO attributes:nil error:nil];
    }

    NSString *savedImagePath = [dataPath stringByAppendingPathComponent:@"Login_Provider.png"];
    NSData *imageData = UIImageJPEGRepresentation(image, 0.2);

    if ([screenCapturNameAry count] != 0)
    {
        if ([screenCapturNameAry containsObject:@"Login"])
        {
            [imageData writeToFile:savedImagePath atomically:NO];

        }

    }
    UIImageWriteToSavedPhotosAlbum([self loadImage:@"Login_Provider"],self,@selector(image:didFinishSavingWithError:contextInfo:),NULL);


    //--------------------------------------------------------------------------------------//

}
- (void)image:(UIImage*)image didFinishSavingWithError:(NSError*)error contextInfo:(void*)contextInfo
{
    if (error == nil)
    {
        NSLog(@"Login Image saved successfully.");
    }
    else
    {
        NSLog(@"Error occurred:%@",[error localizedDescription]);
    }
}

您可以使用以下方法获取保存的图像

- (UIImage*)loadImage:(NSString*)imageName 
{

    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *dataPath = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"ProviderID_%@",providerIdStr]];

    NSString *fullPath = [dataPath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.png",imageName]];

    return [UIImage imageWithContentsOfFile:fullPath];

}
于 2013-01-07T10:13:54.250 回答
0

要截取屏幕截图,您可以使用以下代码。

UIGraphicsBeginImageContext(self.window.bounds.size);
[self.window.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
NSData * data = UIImagePNGRepresentation(image);
[data writeToFile:@"screen.png" atomically:YES];

对于 Ratina 显示设备,您必须检查:

if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)])
    UIGraphicsBeginImageContextWithOptions(self.window.bounds.size, NO, [UIScreen mainScreen].scale);
else
    UIGraphicsBeginImageContext(self.window.bounds.size);
于 2013-01-07T10:16:48.797 回答