我正在尝试用skia做一些基本的绘图。由于我正在处理灰度图像,因此我想使用相应的颜色类型。我想使用的最小示例是:
int main(int argc, char * const argv[])
{
int width = 1000;
int heigth = 1000;
float linewidth = 10.0f;
SkImageInfo info = SkImageInfo::Make(
width,
heigth,
SkColorType::kAlpha_8_SkColorType,
SkAlphaType::kPremul_SkAlphaType
);
SkBitmap img;
img.allocPixels(info);
SkCanvas canvas(img);
canvas.drawColor(SK_ColorBLACK);
SkPaint paint;
paint.setColor(SK_ColorWHITE);
paint.setAlpha(255);
paint.setAntiAlias(false);
paint.setStrokeWidth(linewidth);
paint.setStyle(SkPaint::kStroke_Style);
canvas.drawCircle(500.0f, 500.0f, 100.0f, paint);
bool success = SkImageEncoder::EncodeFile("B:\\img.png", img,
SkImageEncoder::kPNG_Type, 100);
return 0;
}
但保存的图像不包含绘制的圆圈。如果我替换kAlpha_8_SkColorType
为kN32_SkColorType
我得到预期的结果。如何在 8 位灰度图像上绘制圆圈?我在 64 位 Windows 机器上使用 Visual Studio 2013。