[问题] 想请大家翻译这段

楼主: neocc (neo)   2015-06-11 22:27:37
各位好
我是objective-c 初学者
想请各位翻译一下这段
谢谢
=======================
main (){
int width = 100;
int height=100;
byte[] rawData = new byte[width*height*4];
int byteIndex = 0;
for(int x=0; x<width;x++)
{
for(int y=0;y<height;y++)
{
run(ref rawData, x, y, byteIndex)
byteIndex += 4;
}
}
}
void run(ref byte[] _rawData,int _x, int _y, int _byteIndex)
{
int outputColor =
(rawData[byteIndex] + rawData[byteIndex+1] + rawData[byteIndex+2]) / 3;
rawData[byteIndex] = (char) (outputColor);
rawData[byteIndex+1] = (char) (outputColor);
rawData[byteIndex+2] = (char) (outputColor);
}
作者: darktt (小朱)   2015-06-11 22:34:00
你确定它是Objective-C的Code?我么看它都想是C的Code阿^像
楼主: neocc (neo)   2015-06-11 22:39:00
我是想要翻译成objective-c thanks~
作者: darktt (小朱)   2015-06-11 22:50:00
你确定?这个用OC的NSData来做会复杂很多
作者: abcdefghi   2015-06-12 01:57:00
obj-c里处理bitmap也只是用纯C的做法而已

Links booklink

Contact Us: admin [ a t ] ucptt.com