(lines int)
| 399 | } |
| 400 | |
| 401 | func (img *Image) LineCache(lines int) error { |
| 402 | var tmp *C.VipsImage |
| 403 | |
| 404 | if C.vips_linecache_seq(img.VipsImage, &tmp, C.int(lines)) != 0 { |
| 405 | return Error() |
| 406 | } |
| 407 | |
| 408 | img.swapAndUnref(tmp) |
| 409 | return nil |
| 410 | } |
| 411 | |
| 412 | func (img *Image) Arrayjoin(in []*Image) error { |
| 413 | var tmp *C.VipsImage |
nothing calls this directly
no test coverage detected