()
| 815 | } |
| 816 | |
| 817 | func (img *Image) RgbColourspace() error { |
| 818 | return img.Colorspace(C.VIPS_INTERPRETATION_sRGB) |
| 819 | } |
| 820 | |
| 821 | func (img *Image) Colorspace(colorspace Interpretation) error { |
| 822 | if img.Type() == colorspace { |
no test coverage detected