GuessInterpretation returns the guessed colorspace interpretation of the image.
()
| 723 | |
| 724 | // GuessInterpretation returns the guessed colorspace interpretation of the image. |
| 725 | func (img *Image) GuessInterpretation() Interpretation { |
| 726 | return Interpretation(C.vips_image_guess_interpretation(img.VipsImage)) |
| 727 | } |
| 728 | |
| 729 | func (img *Image) IsRGB() bool { |
| 730 | format := C.vips_image_guess_interpretation(img.VipsImage) |
no test coverage detected