Chrome copia l'immagine negli Appunti in un formato 24 bpp. Che trasforma la trasparenza in nero. È possibile ottenere un formato 32bpp dagli Appunti ma è necessario gestire il formato DIB. Non c'è alcun supporto integrato per quella in System.Drawing, hai bisogno di una funzione di supporto poco che rendono la conversione: utilizzo
private Image GetImageFromClipboard() {
if (Clipboard.GetDataObject() == null) return null;
if (Clipboard.GetDataObject().GetDataPresent(DataFormats.Dib)) {
var dib = ((System.IO.MemoryStream)Clipboard.GetData(DataFormats.Dib)).ToArray();
var width = BitConverter.ToInt32(dib, 4);
var height = BitConverter.ToInt32(dib, 8);
var bpp = BitConverter.ToInt16(dib, 14);
if (bpp == 32) {
var gch = GCHandle.Alloc(dib, GCHandleType.Pinned);
Bitmap bmp = null;
try {
var ptr = new IntPtr((long)gch.AddrOfPinnedObject() + 40);
bmp = new Bitmap(width, height, width * 4, System.Drawing.Imaging.PixelFormat.Format32bppArgb, ptr);
return new Bitmap(bmp);
}
finally {
gch.Free();
if (bmp != null) bmp.Dispose();
}
}
}
return Clipboard.ContainsImage() ? Clipboard.GetImage() : null;
}
Esempio:
protected override void OnPaint(PaintEventArgs e) {
using (var bmp = GetImageFromClipboard()) {
if (bmp != null) e.Graphics.DrawImage(bmp, 0, 0);
}
}
che ha prodotto questo screen-shot con la forma del BackgroundImage insieme di proprietà di uno stock bitmap:
fonte
2012-06-30 12:34:42
in realtà, sembra Chrome in realtà non mettere valida 'Format17' sul suo appunti, e non lo fa manag e per incollare 'Format17' quando lo metto negli appunti a livello di programmazione. – Nyerguds