This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to make png completely black with a macro?

How to make png completely black with a macro?

With the transparent png, I want to make the image completely black so that later i can trace it easily. Manually with Hue/saturation/lightness, we can set all the negative values. But with the macro makes work faster. Any suggestions or help? Thx

Parents
No Data
Reply
  • pretty close. Works for X7. Unlikely to work in anything newer though.

    Sub BitmapToBlack()
    Dim OrigSelection As ShapeRange
    Set OrigSelection = ActiveSelectionRange
    OrigSelection.ApplyEffectHSL -180, -100, -100
    End Sub

Children