(left, top, width, height int)
| 649 | } |
| 650 | |
| 651 | func (img *Image) Crop(left, top, width, height int) error { |
| 652 | var tmp *C.VipsImage |
| 653 | |
| 654 | if C.vips_extract_area_go(img.VipsImage, &tmp, C.int(left), C.int(top), C.int(width), C.int(height)) != 0 { |
| 655 | return Error() |
| 656 | } |
| 657 | |
| 658 | img.swapAndUnref(tmp) |
| 659 | return nil |
| 660 | } |
| 661 | |
| 662 | func (img *Image) Extract(out *Image, left, top, width, height int) error { |
| 663 | if C.vips_extract_area_go(img.VipsImage, &out.VipsImage, C.int(left), C.int(top), C.int(width), C.int(height)) != 0 { |
no test coverage detected