blob: e20b0eb1faba8234d597a2912d7dfe3fe4c9716a [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
cristy4e82e512011-04-24 01:33:42 +00006% CCCC L IIIII PPPP BBBB OOO AAA RRRR DDDD %
7% C L I P P B B O O A A R R D D %
8% C L I PPP BBBB O O AAAAA RRRR D D %
9% C L I P B B O O A A R R D D %
10% CCCC LLLLL IIIII P BBBB OOO A A R R DDDD %
cristy3ed852e2009-09-05 21:47:34 +000011% %
12% %
13% Read/Write Windows Clipboard. %
14% %
15% Software Design %
16% Leonard Rosenthol %
17% May 2002 %
18% %
19% %
Cristy7ce65e72015-12-12 18:03:16 -050020% Copyright 1999-2016 ImageMagick Studio LLC, a non-profit organization %
cristy3ed852e2009-09-05 21:47:34 +000021% dedicated to making software imaging solutions freely available. %
22% %
23% You may not use this file except in compliance with the License. You may %
24% obtain a copy of the License at %
25% %
26% http://www.imagemagick.org/script/license.php %
27% %
28% Unless required by applicable law or agreed to in writing, software %
29% distributed under the License is distributed on an "AS IS" BASIS, %
30% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
31% See the License for the specific language governing permissions and %
32% limitations under the License. %
33% %
34%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35%
36%
37*/
38
39/*
40 Include declarations.
41*/
cristy4c08aed2011-07-01 19:47:50 +000042#include "MagickCore/studio.h"
cristy3ed852e2009-09-05 21:47:34 +000043#if defined(MAGICKCORE_WINGDI32_DELEGATE)
44# if defined(__CYGWIN__)
45# include <windows.h>
46# else
47 /* All MinGW needs ... */
cristyb5ae05b2012-10-02 18:17:25 +000048# include "MagickCore/nt-base-private.h"
cristy3ed852e2009-09-05 21:47:34 +000049# include <wingdi.h>
50# endif
51#endif
cristy4c08aed2011-07-01 19:47:50 +000052#include "MagickCore/blob.h"
53#include "MagickCore/blob-private.h"
54#include "MagickCore/cache.h"
55#include "MagickCore/exception.h"
56#include "MagickCore/exception-private.h"
57#include "MagickCore/image.h"
58#include "MagickCore/image-private.h"
59#include "MagickCore/list.h"
60#include "MagickCore/magick.h"
61#include "MagickCore/memory_.h"
cristyf7836bf2012-02-20 16:32:47 +000062#include "MagickCore/nt-feature.h"
cristyd3a48922011-08-05 14:20:50 +000063#include "MagickCore/pixel-accessor.h"
cristy4c08aed2011-07-01 19:47:50 +000064#include "MagickCore/quantum-private.h"
65#include "MagickCore/static.h"
66#include "MagickCore/string_.h"
67#include "MagickCore/module.h"
cristy3ed852e2009-09-05 21:47:34 +000068
69/*
70 Forward declarations.
71*/
72#if defined(MAGICKCORE_WINGDI32_DELEGATE)
73static MagickBooleanType
cristy1e178e72011-08-28 19:44:34 +000074 WriteCLIPBOARDImage(const ImageInfo *,Image *,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +000075#endif
76
77/*
78%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
79% %
80% %
81% %
82% R e a d C L I P B O A R D I m a g e %
83% %
84% %
85% %
86%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
87%
88% ReadCLIPBOARDImage() reads an image from the system clipboard and returns
89% it. It allocates the memory necessary for the new Image structure and
90% returns a pointer to the new image.
91%
92% The format of the ReadCLIPBOARDImage method is:
93%
94% Image *ReadCLIPBOARDImage(const ImageInfo *image_info,
95% ExceptionInfo exception)
96%
97% A description of each parameter follows:
98%
99% o image_info: the image info.
100%
101% o exception: return any errors or warnings in this structure.
102%
103*/
104#if defined(MAGICKCORE_WINGDI32_DELEGATE)
105static Image *ReadCLIPBOARDImage(const ImageInfo *image_info,
106 ExceptionInfo *exception)
107{
108 Image
109 *image;
110
dirk3ec328f2014-12-15 14:57:36 +0000111 MagickBooleanType
112 status;
113
cristybb503372010-05-27 20:51:26 +0000114 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000115 x;
116
cristy4c08aed2011-07-01 19:47:50 +0000117 register Quantum
cristy3ed852e2009-09-05 21:47:34 +0000118 *q;
119
cristy4e82e512011-04-24 01:33:42 +0000120 ssize_t
121 y;
122
cristy3ed852e2009-09-05 21:47:34 +0000123 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000124 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000125 if (image_info->debug != MagickFalse)
126 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
127 image_info->filename);
128 assert(exception != (ExceptionInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000129 assert(exception->signature == MagickCoreSignature);
cristy9950d572011-10-01 18:22:35 +0000130 image=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000131 {
132 HBITMAP
133 bitmapH;
134
135 HPALETTE
136 hPal;
137
138 OpenClipboard(NULL);
139 bitmapH=(HBITMAP) GetClipboardData(CF_BITMAP);
140 hPal=(HPALETTE) GetClipboardData(CF_PALETTE);
141 CloseClipboard();
142 if ( bitmapH == NULL )
143 ThrowReaderException(CoderError,"NoBitmapOnClipboard");
144 {
145 BITMAPINFO
146 DIBinfo;
147
148 BITMAP
149 bitmap;
150
151 HBITMAP
152 hBitmap,
153 hOldBitmap;
154
155 HDC
156 hDC,
157 hMemDC;
158
159 RGBQUAD
160 *pBits,
161 *ppBits;
162
163 /* create an offscreen DC for the source */
164 hMemDC=CreateCompatibleDC(NULL);
165 hOldBitmap=(HBITMAP) SelectObject(hMemDC,bitmapH);
166 GetObject(bitmapH,sizeof(BITMAP),(LPSTR) &bitmap);
167 if ((image->columns == 0) || (image->rows == 0))
168 {
cristy3ed852e2009-09-05 21:47:34 +0000169 image->columns=bitmap.bmWidth;
cristyacabb842014-12-14 23:36:33 +0000170 image->rows=bitmap.bmHeight;
cristy3ed852e2009-09-05 21:47:34 +0000171 }
cristyacabb842014-12-14 23:36:33 +0000172 status=SetImageExtent(image,image->columns,image->rows,exception);
173 if (status == MagickFalse)
174 return(DestroyImageList(image));
cristy3ed852e2009-09-05 21:47:34 +0000175 /*
176 Initialize the bitmap header info.
177 */
178 (void) ResetMagickMemory(&DIBinfo,0,sizeof(BITMAPINFO));
179 DIBinfo.bmiHeader.biSize=sizeof(BITMAPINFOHEADER);
cristyeaedf062010-05-29 22:36:02 +0000180 DIBinfo.bmiHeader.biWidth=(LONG) image->columns;
181 DIBinfo.bmiHeader.biHeight=(-1)*(LONG) image->rows;
cristy3ed852e2009-09-05 21:47:34 +0000182 DIBinfo.bmiHeader.biPlanes=1;
183 DIBinfo.bmiHeader.biBitCount=32;
184 DIBinfo.bmiHeader.biCompression=BI_RGB;
185 hDC=GetDC(NULL);
186 if (hDC == 0)
187 ThrowReaderException(CoderError,"UnableToCreateADC");
188 hBitmap=CreateDIBSection(hDC,&DIBinfo,DIB_RGB_COLORS,(void **) &ppBits,
189 NULL,0);
190 ReleaseDC(NULL,hDC);
191 if (hBitmap == 0)
192 ThrowReaderException(CoderError,"UnableToCreateBitmap");
193 /* create an offscreen DC */
194 hDC=CreateCompatibleDC(NULL);
195 if (hDC == 0)
196 {
197 DeleteObject(hBitmap);
198 ThrowReaderException(CoderError,"UnableToCreateADC");
199 }
200 hOldBitmap=(HBITMAP) SelectObject(hDC,hBitmap);
201 if (hOldBitmap == 0)
202 {
203 DeleteDC(hDC);
204 DeleteObject(hBitmap);
205 ThrowReaderException(CoderError,"UnableToCreateBitmap");
206 }
207 if (hPal != NULL)
208 {
209 /* Kenichi Masuko says this needed */
210 SelectPalette(hDC, hPal, FALSE);
211 RealizePalette(hDC);
212 }
213 /* bitblt from the memory to the DIB-based one */
cristyeaedf062010-05-29 22:36:02 +0000214 BitBlt(hDC,0,0,(int) image->columns,(int) image->rows,hMemDC,0,0,SRCCOPY);
cristy3ed852e2009-09-05 21:47:34 +0000215 /* finally copy the pixels! */
216 pBits=ppBits;
cristybb503372010-05-27 20:51:26 +0000217 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000218 {
219 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
cristyacd2ed22011-08-30 01:44:23 +0000220 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000221 break;
cristybb503372010-05-27 20:51:26 +0000222 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000223 {
cristy4c08aed2011-07-01 19:47:50 +0000224 SetPixelRed(image,ScaleCharToQuantum(pBits->rgbRed),q);
225 SetPixelGreen(image,ScaleCharToQuantum(pBits->rgbGreen),q);
226 SetPixelBlue(image,ScaleCharToQuantum(pBits->rgbBlue),q);
227 SetPixelAlpha(image,OpaqueAlpha,q);
cristy3ed852e2009-09-05 21:47:34 +0000228 pBits++;
cristyed231572011-07-14 02:18:59 +0000229 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000230 }
231 if (SyncAuthenticPixels(image,exception) == MagickFalse)
232 break;
233 }
234 DeleteDC(hDC);
235 DeleteObject(hBitmap);
236 }
237 }
238 (void) CloseBlob(image);
239 return(GetFirstImageInList(image));
240}
241#endif /* MAGICKCORE_WINGDI32_DELEGATE */
242
243/*
244%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
245% %
246% %
247% %
248% R e g i s t e r C L I P B O A R D I m a g e %
249% %
250% %
251% %
252%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
253%
254% RegisterCLIPBOARDImage() adds attributes for the clipboard "image format" to
255% the list of supported formats. The attributes include the image format
256% tag, a method to read and/or write the format, whether the format
257% supports the saving of more than one frame to the same file or blob,
258% whether the format supports native in-memory I/O, and a brief
259% description of the format.
260%
261% The format of the RegisterCLIPBOARDImage method is:
262%
cristybb503372010-05-27 20:51:26 +0000263% size_t RegisterCLIPBOARDImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000264%
265*/
cristybb503372010-05-27 20:51:26 +0000266ModuleExport size_t RegisterCLIPBOARDImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000267{
268 MagickInfo
269 *entry;
270
dirk06b627a2015-04-06 18:59:17 +0000271 entry=AcquireMagickInfo("CLIPBOARD","CLIPBOARD","The system clipboard");
cristy3ed852e2009-09-05 21:47:34 +0000272#if defined(MAGICKCORE_WINGDI32_DELEGATE)
273 entry->decoder=(DecodeImageHandler *) ReadCLIPBOARDImage;
274 entry->encoder=(EncodeImageHandler *) WriteCLIPBOARDImage;
275#endif
dirk08e9a112015-02-22 01:51:41 +0000276 entry->flags^=CoderAdjoinFlag;
cristy009d7392010-07-25 22:08:41 +0000277 entry->format_type=ImplicitFormatType;
cristy3ed852e2009-09-05 21:47:34 +0000278 (void) RegisterMagickInfo(entry);
279 return(MagickImageCoderSignature);
280}
281
282/*
283%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
284% %
285% %
286% %
287% U n r e g i s t e r C L I P B O A R D I m a g e %
288% %
289% %
290% %
291%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
292%
293% UnregisterCLIPBOARDImage() removes format registrations made by the
294% RGB module from the list of supported formats.
295%
296% The format of the UnregisterCLIPBOARDImage method is:
297%
298% UnregisterCLIPBOARDImage(void)
299%
300*/
301ModuleExport void UnregisterCLIPBOARDImage(void)
302{
303 (void) UnregisterMagickInfo("CLIPBOARD");
304}
305
306/*
307%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
308% %
309% %
310% %
311% W r i t e C L I P B O A R D I m a g e %
312% %
313% %
314% %
315%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
316%
317% WriteCLIPBOARDImage() writes an image to the system clipboard.
318%
319% The format of the WriteCLIPBOARDImage method is:
320%
321% MagickBooleanType WriteCLIPBOARDImage(const ImageInfo *image_info,
cristy1e178e72011-08-28 19:44:34 +0000322% Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000323%
324% A description of each parameter follows.
325%
326% o image_info: the image info.
327%
328% o image: The image.
329%
cristy1e178e72011-08-28 19:44:34 +0000330% o exception: return any errors or warnings in this structure.
331%
cristy3ed852e2009-09-05 21:47:34 +0000332*/
333#if defined(MAGICKCORE_WINGDI32_DELEGATE)
334static MagickBooleanType WriteCLIPBOARDImage(const ImageInfo *image_info,
cristy1e178e72011-08-28 19:44:34 +0000335 Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000336{
337 /*
338 Allocate memory for pixels.
339 */
340 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000341 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000342 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000343 assert(image->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000344 if (image->debug != MagickFalse)
345 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
346 {
347 HBITMAP
348 bitmapH;
349
cristy4e82e512011-04-24 01:33:42 +0000350 OpenClipboard(NULL);
cristy3ed852e2009-09-05 21:47:34 +0000351 EmptyClipboard();
cristya7540de2012-02-20 15:05:32 +0000352 bitmapH=(HBITMAP) ImageToHBITMAP(image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000353 SetClipboardData(CF_BITMAP,bitmapH);
354 CloseClipboard();
355 }
356 return(MagickTrue);
357}
358#endif /* MAGICKCORE_WINGDI32_DELEGATE */