Ho bisogno di aiuto per impostare un'immagine trasparente negli Appunti. Continuo a ricevere "handle non valido". Fondamentalmente, ho bisogno di un "secondo set di occhi" per esaminare il seguente codice. (Il progetto di lavoro completo a ftp://missico.net/ImageVisualizer.zip.)Serve aiuto per impostare un'immagine con sfondo trasparente negli Appunti
Questa è una libreria di classi Debug Visualizer di immagine, ma ho reso il progetto incluso da eseguire come eseguibile per il test. (Si noti che la finestra è una finestra degli strumenti e mostra nella barra delle applicazioni è impostata su false.) Ero stanco di dover eseguire una cattura della schermata nella finestra degli strumenti, aprire la cattura dello schermo con un editor di immagini e quindi eliminare lo sfondo aggiunto perché era una cattura dello schermo. Così ho pensato di mettere rapidamente l'immagine trasparente negli appunti. Bene, il problema è ... nessun supporto per la trasparenza per Clipboard.SetImage. Google in soccorso ... non del tutto.
Questo è quello che ho finora. Ho tirato da un certo numero di fonti. Vedi il codice per il riferimento principale. Il mio problema è "handle non valido" quando si utilizza CF_DIBV5. Devo usare BITMAPV5HEADER e CreateDIBitmap?
Qualsiasi aiuto da voi GDI/GDI + Wizards sarebbe molto apprezzato.
public static void SetClipboardData(Bitmap bitmap, IntPtr hDC) {
const uint SRCCOPY = 0x00CC0020;
const int CF_DIBV5 = 17;
const int CF_BITMAP = 2;
//'reference
//'http://social.msdn.microsoft.com/Forums/en-US/winforms/thread/816a35f6-9530-442b-9647-e856602cc0e2
IntPtr memDC = CreateCompatibleDC(hDC);
IntPtr memBM = CreateCompatibleBitmap(hDC, bitmap.Width, bitmap.Height);
SelectObject(memDC, memBM);
using (Graphics g = Graphics.FromImage(bitmap)) {
IntPtr hBitmapDC = g.GetHdc();
IntPtr hBitmap = bitmap.GetHbitmap();
SelectObject(hBitmapDC, hBitmap);
BitBlt(memDC, 0, 0, bitmap.Width, bitmap.Height, hBitmapDC, 0, 0, SRCCOPY);
if (!OpenClipboard(IntPtr.Zero)) {
throw new System.Runtime.InteropServices.ExternalException("Could not open Clipboard", new Win32Exception());
}
if (!EmptyClipboard()) {
throw new System.Runtime.InteropServices.ExternalException("Unable to empty Clipboard", new Win32Exception());
}
//IntPtr hClipboard = SetClipboardData(CF_BITMAP, memBM); //works but image is not transparent
//all my attempts result in SetClipboardData returning hClipboard = IntPtr.Zero
IntPtr hClipboard = SetClipboardData(CF_DIBV5, memBM);
//because
if (hClipboard == IntPtr.Zero) {
// InnerException: System.ComponentModel.Win32Exception
// Message="The handle is invalid"
// ErrorCode=-2147467259
// NativeErrorCode=6
// InnerException:
throw new System.Runtime.InteropServices.ExternalException("Could not put data on Clipboard", new Win32Exception());
}
if (!CloseClipboard()) {
throw new System.Runtime.InteropServices.ExternalException("Could not close Clipboard", new Win32Exception());
}
g.ReleaseHdc(hBitmapDC);
}
}
private void __copyMenuItem_Click(object sender, EventArgs e) {
using (Graphics g = __pictureBox.CreateGraphics()) {
IntPtr hDC = g.GetHdc();
MemoryStream ms = new MemoryStream();
__pictureBox.Image.Save(ms, ImageFormat.Png);
ms.Seek(0, SeekOrigin.Begin);
Image imag = Image.FromStream(ms);
// Derive BitMap object using Image instance, so that you can avoid the issue
//"a graphics object cannot be created from an image that has an indexed pixel format"
Bitmap img = new Bitmap(new Bitmap(imag));
SetClipboardData(img, hDC);
g.ReleaseHdc();
}
}
Puoi chiarire quale passaggio ti dà l'errore di handle non valido? –