()
| 799 | } |
| 800 | |
| 801 | func (img *Image) RemoveColourProfile() error { |
| 802 | var tmp *C.VipsImage |
| 803 | |
| 804 | if C.vips_icc_remove(img.VipsImage, &tmp) == 0 { |
| 805 | img.swapAndUnref(tmp) |
| 806 | } else { |
| 807 | slog.Warn("Can't remove ICC profile", "error", Error()) |
| 808 | } |
| 809 | |
| 810 | return nil |
| 811 | } |
| 812 | |
| 813 | func (img *Image) LinearColourspace() error { |
| 814 | return img.Colorspace(C.VIPS_INTERPRETATION_scRGB) |
no test coverage detected