作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何将 PNG 图像读取到 NSImage。我尝试了以下方法,但是当我获得图像的宽度和大小时,我得到了一些奇怪的值..如果有人可以引导我走正确的道路..非常合适..
NSImage * picture = [[NSImage alloc] initWithContentsOfFile: [bundleRoot stringByAppendingString:tString]];
NSLog(@"sixe %d %d",picture.size.width, picture.size.height);
if( picture ){
NSLog(@"Picture is not null");
}else {
NSLog(@"Picture is null.");
}
谢谢
最佳答案
您加载图像的代码是正确的。
显示尺寸的代码不正确; NSSize 的成员是 CGFloat,应使用 %f 格式字符串打印:
NSLog(@"size %f %f",picture.size.width, picture.size.height);
关于cocoa - 如何将PNG图像读取到NSImage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2681630/
我是一名优秀的程序员,十分优秀!