Actually I have this command line for converting black to white from an image:
convert %1 -fuzz 0 -fill "#FFFFFF" -opaque "#000000" %1
now I need to do same but with the image source on clipboard.
(convert from clipboard and save on clipboard)
How I can do it?
thanks
Convert image from clipboard to clipboard (?)
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Convert image from clipboard to clipboard (?)
What version of IM, on what platform?
On Windows, you can use "clipboard:" for input or output, eg:
On Windows, you can use "clipboard:" for input or output, eg:
Code: Select all
convert %1 -fuzz 0 -fill "#FFFFFF" -opaque "#000000" clipboard:
convert clipbord: -fuzz 0 -fill "#FFFFFF" -opaque "#000000" %1
snibgo's IM pages: im.snibgo.com