作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在设备上运行我的应用时遇到以下错误(我没有在模拟器中运行它):
CGImageCreateWithImageProvider`:无效的图片尺寸:180 x 180。
- (IBAction)choosePic:(id)sender {
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {
self.imageOne = [[UIImagePickerController alloc] init];
self.imageOne.sourceType = UIImagePickerControllerSourceTypeCamera;
self.imageOne.delegate = self;
}
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary]) {
self.imageOne = [[UIImagePickerController alloc] init];
self.imageOne.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
self.imageOne.delegate = self;
}
[self presentViewController:self.imageOne animated:YES completion:nil];
}
最佳答案
按照answer
此错误可能与iOS版本较低的设备有关。由于某些iOS版本不支持调整图像大小。并且也可能是JPG
图片的问题。尝试使用PNG
图片。
关于ios - CGImageCreateWithImageProvider:无效的图像尺寸:180 x 180,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17365005/
我在设备上运行我的应用时遇到以下错误(我没有在模拟器中运行它): CGImageCreateWithImageProvider`:无效的图片尺寸:180 x 180。 - (IBAction)choo
当我在设备(8.0.2)(而不是模拟器)上运行我的应用程序时,同时存在两个错误。 一个是 : CGImageCreateWithImageProvider: invalid image size: 1
我在 NSImage 扩展中有一个方法 cgImageSlice,它应该返回包含每个图像切片的 [CGImage]。运行代码时,在第 18 行的第一个循环后,我收到错误 CGImageCreateWi
我是一名优秀的程序员,十分优秀!