Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从图像中获取像素信息,并且已经达到了我的void*数据对象的地步,该对象是指向图像数据的指针。
void*
这个对象到底是什么?我试过迭代它,希望它是一个像素信息数组,但它似乎不起作用。
我想获取每个像素的 rgb 值。
它是指向位图数据的指针。如果您在解释它时遇到问题,那么位图可能不是您认为的格式(CoreGraphics 在加载外部位图时会自动进行一些转换)。
使用 .检查位图格式信息CGBitmapContextGetBitmapInfo()。
CGBitmapContextGetBitmapInfo()