UIImageWriteToSavedPhotosAlbum保存为PNG透明度?

时间:2009-09-28 20:41:36

标签: iphone uiimage quartz-graphics

我正在使用UIImageWriteToSavedPhotosAlbum将UIImage保存到用户的相册中。问题是图像没有透明度并且是JPG。我已经正确地将像素数据设置为具有透明度,但似乎没有办法以透明度支持的格式进行保存。想法?

编辑:没有办法实现这一点,但是还有其他方法可以向用户提供PNG图像。其中之一是将图像保存在Documents目录中(如下所述)。完成后,您可以通过电子邮件发送,将其保存在数据库中等等。除非它是一个有损的非透明JPG,否则您无法将其放入相册(现在)。

5 个答案:

答案 0 :(得分:38)

正如在this问题所指出的那样 是一种在相册中保存png的简单方法:

UIImage* image = ...;                                     // produce your image
NSData* imageData =  UIImagePNGRepresentation(image);     // get png representation
UIImage* pngImage = [UIImage imageWithData:imageData];    // rewrap
UIImageWriteToSavedPhotosAlbum(pngImage, nil, nil, nil);  // save to photo album

答案 1 :(得分:13)

这是我之前注意到的一个问题,并在大约一年前在Apple Developer Forums报道。据我所知,它仍然是一个悬而未决的问题。

如果您有时间,请花时间在Apple Bug Report处提交功能请求。如果有更多人报告此问题,Apple更有可能会修复此方法以输出无损,支持alpha的PNG。

修改

如果您可以在内存中撰写图像,我认为以下内容可以起作用或者至少可以帮助您开始:

- (UIImage *) composeImageWithWidth:(NSInteger)_width andHeight:(NSInteger)_height {
    CGSize _size = CGSizeMake(_width, _height);
    UIGraphicsBeginImageContext(_size);

    // Draw image with Quartz 2D routines over here...

    UIImage *_compositeImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return _compositeImage;
}

//
// cf. https://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/FilesandNetworking/FilesandNetworking.html#//apple_ref/doc/uid/TP40007072-CH21-SW20
//

- (BOOL) writeApplicationData:(NSData *)data toFile:(NSString *)fileName {
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    if (!documentsDirectory) {
        NSLog(@"Documents directory not found!");
        return NO;
    }
    NSString *appFile = [documentsDirectory stringByAppendingPathComponent:fileName];
    return ([data writeToFile:appFile atomically:YES]);
}

// ...

NSString *_imageName = @"myImageName.png";
NSData *_imageData = [NSData dataWithData:UIImagePNGRepresentation([self composeImageWithWidth:100 andHeight:100)];

if (![self writeApplicationData:_imageData toFile:_imageName]) {
    NSLog(@"Save failed!");
}

答案 2 :(得分:2)

作为为UIImageWriteToSavedPhotosAlbum创建辅助UIImage的替代方法,可以使用PHPhotoLibrary直接写入PNG数据。

这是一个名为“ saveToPhotos”的UIImage扩展,它可以执行以下操作:

extension UIImage {

    func saveToPhotos(completion: @escaping (_ success:Bool) -> ()) {

        if let pngData = self.pngData() {

            PHPhotoLibrary.shared().performChanges({ () -> Void in

                let creationRequest = PHAssetCreationRequest.forAsset()
                let options = PHAssetResourceCreationOptions()

                creationRequest.addResource(with: PHAssetResourceType.photo, data: pngData, options: options)

            }, completionHandler: { (success, error) -> Void in

                if success == false {

                    if let errorString = error?.localizedDescription  {
                        print("Photo could not be saved: \(errorString))")
                    }

                    completion(false)
                }
                else {
                    print("Photo saved!")

                    completion(true)
                }
            })
        }
        else {
            completion(false)
        }

    }
}

要使用:

    if let image = UIImage(named: "Background.png") {
        image.saveToPhotos { (success) in
            if success {
                // image saved to photos
            }
            else {
                // image not saved
            }
        }
    }

答案 3 :(得分:0)

在Swift 5中:

func pngFrom(image: UIImage) -> UIImage {
    let imageData = image.pngData()!
    let imagePng = UIImage(data: imageData)!
    return imagePng
}

答案 4 :(得分:0)

我创建了具有安全展开功能的UIImage扩展:

扩展

extension UIImage {
    func toPNG() -> UIImage? {
        guard let imageData = self.pngData() else {return nil}
        guard let imagePng = UIImage(data: imageData) else {return nil}
        return imagePng
    }
}

用法

let image = //your UIImage
if let pngImage = image.toPNG() {
     UIImageWriteToSavedPhotosAlbum(pngImage, nil, nil, nil)
}