(name string, value int)
| 529 | } |
| 530 | |
| 531 | func (img *Image) SetInt(name string, value int) { |
| 532 | C.vips_image_set_int(img.VipsImage, cachedCString(name), C.int(value)) |
| 533 | } |
| 534 | |
| 535 | func (img *Image) SetIntSlice(name string, value []int) { |
| 536 | in := make([]C.int, len(value)) |
no test coverage detected