000
06.03.2006, 08:44 Uhr
kleineSchildy
|
Hallo,
ich bins mal wieder Nachdem mein Progrämmchen nun soweit funktioniert, möchte ich es ein wenig erweitern. Ich möchte mittels eines Buttons das TIFF ins Clipboard speichern. Ich habe schon folgenden Ansatz:
C++: |
HGLOBAL hClipboardData;
if (OpenClipboard()) { EmptyClipboard();
hClipboardData = GlobalAlloc()
SetClipboardData(CF_TIFF, hClipboardData); CloseClipboard(); }
|
Probleme habe ich mit GlobalAlloc. Ich habe schon viel gefunden, wie das ganze Prozedere mit Text funktioniert, aber leider nicht für Bilder. Mein Bild ist vom Typ Image.
Hat das vllt. schon jemand von euch gemacht?
Viele Grüße Jana |