Is there a Filter that I can apply to convert an image from one type to another? I want to save a color image as black and white using VBA/WIA.
...
oIP.Filters.Add oIP.FilterInfos("Convert").FilterID
oIP.Filters(1).Properties("") = 4 'TextIntent
oWIA.LoadFile sInitialImage
Set oWIA = oIP.Apply(oWIA)
...
Thank you.
