gpt4 book ai didi

iphone - 是否可以在 iPhone 上保存带有 Core Graphics 的图像?

转载 作者:行者123 更新时间:2023-12-03 20:22:33 25 4
gpt4 key购买 nike

以下代码将 PDF 页面转换为 JPEG。它在 Snow Leopard 上按预期运行:

...
//get the image from the bitmap context
CGImageRef image = CGBitmapContextCreateImage(outContext);

//create the output destination
CGImageDestinationRef outfile = CGImageDestinationCreateWithURL(fileUrl, kUTTypeJPEG, 1, NULL);

//add the image to the output file
CGImageDestinationAddImage(outfile, image, NULL);
CGImageDestinationFinalize(outfile);
...

针对 iPhone 编译此代码时会失败,因为 iPhone 版本的 Core Graphics 不包含 CGImageDestinationRef。有没有办法使用 native iPhone 框架和库将 CFImageRef 保存为 jpeg?我能想到的唯一选择是放弃 Core Graphics 并使用 ImageMagick。

最佳答案

UIImage *myImage = [UIImage imageWithCGImage:image];
NSData *jpgData = UIImageJPEGRepresentation(myImage, 0.9f);
[jpgData writeToFile:...

关于iphone - 是否可以在 iPhone 上保存带有 Core Graphics 的图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2370786/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com