CMYK to RGBA

1、 算法原理

我们首先来看算法原理:
CMYK to RGBA_第1张图片
显而易见,CMYK是存储起来的四个值,通过变换可以转换成RGBA值,其中A值始终为255

2、原始代码

// The original code uses a macro UNROLL8 to unroll code and
// each iteration processes eight pixels.
//
// The macro actually contains a for loop that iterates over a single line
// (the w parameter is the width of the image).

#define UNROLL8(w,

你可能感兴趣的:(性能优化,算法,arm开发)