gpt4 book ai didi

cocoa - 获取 NSBitmapImageRep 的像素大小?

转载 作者:行者123 更新时间:2023-12-03 16:24:17 25 4
gpt4 key购买 nike

获取 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,这是图像的真实像素宽度)。

最佳答案

关于cocoa - 获取 NSBitmapImageRep 的像素大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/664944/

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