Surrounds the image with a border of the color defined by the bordercolor pixel wand.
(borderColor *PixelWand, width, height uint)
| 237 | // Surrounds the image with a border of the color defined by the bordercolor |
| 238 | // pixel wand. |
| 239 | func (mw *MagickWand) BorderImage(borderColor *PixelWand, width, height uint) error { |
| 240 | C.MagickBorderImage(mw.mw, borderColor.pw, C.size_t(width), C.size_t(height)) |
| 241 | return mw.GetLastError() |
| 242 | } |
| 243 | |
| 244 | // Use this to change the brightness and/or contrast of an image. It converts |
| 245 | // the brightness and contrast. |
no test coverage detected