Is there any way to process an image and set transparency while using the Clipboard as the output (rather than PNG/GIF)?
For example, the following should read the Clipboard, process it to black-and-white, autocrop white pixels, set all the remaining white pixels to transparent, and then put the result back onto the Clipboard:
Code: Select all
nconvert.exe -clipboard -binary nodither -autocrop 0 255 255 255 -truecolors -set_alpha -transpcolor 255 255 255 -out clipboard
But this doesn't seem to work. My current workflow is to save a temporary PNG (same command as above, but using '-out png -o temp.png'), then copy the PNG to my clipboard outside of nconvert, and delete the temp file when I'm done. It
works, but isn't ideal. Being able to dump the PNG data straight onto the Clipboard would be amazing!