()
| 775 | } |
| 776 | |
| 777 | func (img *Image) ExportColourProfile() error { |
| 778 | var tmp *C.VipsImage |
| 779 | |
| 780 | if C.vips_icc_export_go(img.VipsImage, &tmp) == 0 { |
| 781 | img.swapAndUnref(tmp) |
| 782 | } else { |
| 783 | slog.Warn("Can't export ICC profile", "error", Error()) |
| 784 | } |
| 785 | |
| 786 | return nil |
| 787 | } |
| 788 | |
| 789 | func (img *Image) TransformColourProfileToStandard() error { |
| 790 | var tmp *C.VipsImage |
no test coverage detected