当前位置:  开发笔记 > 编程语言 > 正文

获取NSBitmapImageRep的像素大小?

如何解决《获取NSBitmapImageRep的像素大小?》经验,为你挑选了1个好方法。

获取NSBitmapImageRep的大小(宽度和高度)的最佳方法是什么?

这就是我现在正在做的事情:

NSBitmapImageRep *bitmap;

NSInteger samplesPerPixel = [bitmap samplesPerPixel];
NSInteger bytesPerPlane = [bitmap bytesPerPlane];
NSInteger bytesPerRow = [bitmap bytesPerRow];
NSInteger numberOfPlanes = [bitmap numberOfPlanes];

NSUInteger numPixels = numberOfPlanes * bytesPerPlane / samplesPerPixel;
NSUInteger width = bytesPerRow / samplesPerPixel;
NSUInteger height = numPixels / width;

对于那些应该像[bitmap getWidth]一样简单的东西来说,似乎有很多打字...

我在互联网上看到一些查询大小的帖子(这不在文档中):

NSSize imageSize = [bitmap size];

但这些值似乎并不代表图像的像素尺寸(例如,我得到的浮点值为122.869835而不是256,这是图像的实际像素宽度).



1> Peter Hosey..:

[rep pixelsWide]

[rep pixelsHigh]

推荐阅读
云聪京初瑞子_617
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有