Rotating a bitmap 90 degrees

前端 未结 9 1756
粉色の甜心
粉色の甜心 2021-02-04 05:49

I have a one 64-bit integer, which I need to rotate 90 degrees in 8 x 8 area (preferably with straight bit-manipulation). I cannot figure out any handy algorith

9条回答
  •  猫巷女王i
    2021-02-04 06:51

    probably something like that

    for(int i = 0; i < 8; i++)
    {
        for(int j = 0; j < 8; j++)
        {
            new_image[j*8+8-i] = image[i*8+j];
        }
    }
    

提交回复
热议问题