PIL rotate image colors (BGR -> RGB)

后端 未结 11 2189
深忆病人
深忆病人 2020-11-29 21:21

I have an image where the colors are BGR. How can I transform my PIL image to swap the B and R elements of each pixel in an efficient manner?

11条回答
  •  庸人自扰
    2020-11-29 22:10

    You should be able to do this with the ImageMath module.

    Edit:

    Joe's solution is even better, I was overthinking it. :)

提交回复
热议问题