Support copying Bitmap Data to the clipboard.
Currently we have support for:
clipboard.copyText("Hello world");
Request is for:
var bitmapData = selection.items[0].getBitmapData();
clipboard.copyBitmapData(bitmapData);
Use Case
Greg is a member of the graphic design community DDDrool. He wants to be able to copy parts of his designs to share with his community but he wants to add his watermark to it.
So he writes a plugin that adds his water mark, and then copies the design to the clipboard as bitmap data. He then logs into the community site and pastes the image to web submission form.