将图像从* image.YCbCr转换为* image.RGBA

时间:2017-11-28 15:42:09

标签: go

我正在从磁盘加载一个jpeg,我想对它进行一些RGBA操作。

但是,由于jpeg不是RGBA,当我尝试使用它时会出现错误:

thumbnail,err:=jpeg.Decode(imageAsReader)
...
return thumbnail.(*image.RGBA)

错误地说:

interface conversion: image.Image is *image.YCbCr, not *image.RGBA

将图像加载到内存后,有没有简单的方法将图像转换为RGBA? (稍后其他操作在RGBA中,因此这是我想在内存中使用的颜色模型。)

0 个答案:

没有答案