OK thanks. There was one more thing I was struggling with if you are able to help:
I am trying now to adjust the colour of the fill that is applied, so instead of using black, I can define a custom colour using a ushort array within a list called RGBColValues:
I am trying now to adjust the colour of the fill that is applied, so instead of using black, I can define a custom colour using a ushort array within a list called RGBColValues:
image.Colorize(new MagickColor(RGBcolValues[k][0], RGBcolValues[k][1], RGBcolValues[k][2]), new Percentage(100));
However, it's always still giving me black within the image. Is there something that I'm missing?