blob: dab0948cdb861eb5d9f8728e7acf86803f910a46 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% X X TTTTT RRRR N N %
7% X X T R R NN N %
8% X T RRRR N N N %
9% X X T R R N NN %
10% X X T R R N N %
11% %
12% %
13% ImageMagickObject BLOB Interface. %
14% %
15% Software Design %
16% William Radcliffe %
17% May 2001 %
18% %
19% %
20% Copyright 1999-2007 ImageMagick Studio LLC, a non-profit organization %
21% 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% This coder is a kind of backdoor used by the COM object that allows it to %
38% pass blobs back and forth using the coder interface. It simply encodes and %
39% decodes the filename as a comma delimited string and extracts the info it %
40% needs. The five methods of passing images are: %
41% %
42% FILE - same thing as filename so it should be a NOP %
43% IMAGE - passes an image and image info structure %
44% BLOB - passes binary blob containining the image %
45% STREAM - passes pointers to stream hooks in and does the hooking %
46% ARRAY - passes a pointer to a Win32 smart array and streams to it %
47% %
48% Of all of these, the only one getting any real use at the moment is the %
49% ARRAY handler. It is the primary way that images are shuttled back and %
50% forth as blobs via COM since this is what VB and VBSCRIPT use internally %
51% for this purpose. %
52%
53%
54*/
55
56/*
57 Include declarations.
58*/
59#if defined(_VISUALC_)
60#include "magick/studio.h"
61#include "magick/blob.h"
62#include "magick/blob-private.h"
63#include "magick/constitute.h"
64#include "magick/delegate.h"
65#include "magick/exception.h"
66#include "magick/exception-private.h"
67#include "magick/image.h"
68#include "magick/image-private.h"
69#include "magick/list.h"
70#include "magick/magick.h"
71#include "magick/memory_.h"
72#include "magick/string_.h"
73#define WIN32_LEAN_AND_MEAN
74#define VC_EXTRALEAN
75#include <windows.h>
76#include <ole2.h>
77
78/*
79 Forward declarations.
80*/
81static MagickBooleanType
82 WriteXTRNImage(const ImageInfo *,Image *);
83
84/*
85%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
86% %
87% %
88% %
89% R e a d X T R N I m a g e %
90% %
91% %
92% %
93%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
94%
95% ReadXTRNImage() reads a XTRN image file and returns it. It
96% allocates the memory necessary for the new Image structure and returns a
97% pointer to the new image.
98%
99% The format of the ReadXTRNImage method is:
100%
101% Image *ReadXTRNImage(const ImageInfo *image_info,
102% ExceptionInfo *exception)
103%
104% A description of each parameter follows:
105%
106% o image_info: Specifies a pointer to an ImageInfo structure.
107%
108% o exception: return any errors or warnings in this structure.
109%
110*/
111static Image *ReadXTRNImage(const ImageInfo *image_info,
112 ExceptionInfo *exception)
113{
114 Image
115 *image;
116
117 ImageInfo
118 *clone_info;
119
120 void
121 *param1,
122 *param2,
123 *param3;
124
125 param1 = param2 = param3 = (void *) NULL;
126 image = (Image *) NULL;
127 clone_info=CloneImageInfo(image_info);
128 if (clone_info->filename == NULL)
129 {
130 clone_info=DestroyImageInfo(clone_info);
131 ThrowReaderException(FileOpenWarning,"No filename specified");
132 }
133 if (LocaleCompare(image_info->magick,"XTRNFILE") == 0)
134 {
135 image=ReadImage(clone_info,exception);
136 CatchException(exception);
137 }
138 else if (LocaleCompare(image_info->magick,"XTRNIMAGE") == 0)
139 {
140 Image
141 **image_ptr;
142
143#ifdef ALL_IMAGEINFO
144 ImageInfo
145 **image_info_ptr;
146#endif
147
148 (void) sscanf(clone_info->filename,"%lx,%lx",&param1,&param2);
149 image_ptr=(Image **) param2;
150 if (*image_ptr != (Image *)NULL)
151 image=CloneImage(*image_ptr,0,0,MagickFalse,&(*image_ptr)->exception);
152#ifdef ALL_IMAGEINFO
153 image_info_ptr=(ImageInfo **) param1;
154 if (*image_info_ptr != (ImageInfo *)NULL)
155 image_info=*image_info_ptr;
156#endif
157 }
158 else if (LocaleCompare(image_info->magick,"XTRNBLOB") == 0)
159 {
160 char
161 **blob_data;
162
163 size_t
164 *blob_length;
165
166 char
167 filename[MaxTextExtent];
168
169 (void) sscanf(clone_info->filename,"%lx,%lx,%s",&param1,&param2,&filename);
170 blob_data=(char **) param1;
171 blob_length=(size_t *) param2;
172 image=BlobToImage(clone_info,*blob_data,*blob_length,exception);
173 CatchException(exception);
174 }
cristy3ed852e2009-09-05 21:47:34 +0000175 else if (LocaleCompare(image_info->magick,"XTRNARRAY") == 0)
176 {
cristy3ed852e2009-09-05 21:47:34 +0000177 char
cristyd05120d2011-04-22 13:00:41 +0000178 *blob_data,
179 filename[MaxTextExtent];
cristy3ed852e2009-09-05 21:47:34 +0000180
cristyd05120d2011-04-22 13:00:41 +0000181 HRESULT
182 hr;
cristy3ed852e2009-09-05 21:47:34 +0000183
cristy32f69122011-04-22 02:26:00 +0000184 long
cristy3ed852e2009-09-05 21:47:34 +0000185 lBoundl,
186 lBoundu;
187
cristyd05120d2011-04-22 13:00:41 +0000188 SAFEARRAY
189 *pSafeArray;
cristy3ed852e2009-09-05 21:47:34 +0000190
cristyd05120d2011-04-22 13:00:41 +0000191 size_t
192 blob_length;
cristy3ed852e2009-09-05 21:47:34 +0000193
cristyd05120d2011-04-22 13:00:41 +0000194 *filename='\0';
cristy3ed852e2009-09-05 21:47:34 +0000195 (void) sscanf(clone_info->filename,"%lx,%s",&param1,&filename);
cristyd05120d2011-04-22 13:00:41 +0000196 hr=S_OK;
197 pSafeArray=(SAFEARRAY *) param1;
cristy3ed852e2009-09-05 21:47:34 +0000198 if (pSafeArray)
199 {
cristy4231d782011-04-22 02:18:34 +0000200 hr = SafeArrayGetLBound(pSafeArray, 1, &lBoundl);
cristy3ed852e2009-09-05 21:47:34 +0000201 if (SUCCEEDED(hr))
cristy4231d782011-04-22 02:18:34 +0000202 hr = SafeArrayGetUBound(pSafeArray, 1, &lBoundu);
cristy3ed852e2009-09-05 21:47:34 +0000203 if (SUCCEEDED(hr))
204 {
cristy4231d782011-04-22 02:18:34 +0000205 blob_length = lBoundu - lBoundl + 1;
cristyd05120d2011-04-22 13:00:41 +0000206 hr = SafeArrayAccessData(pSafeArray,(void**) &blob_data);
cristy4231d782011-04-22 02:18:34 +0000207 if(SUCCEEDED(hr))
cristy3ed852e2009-09-05 21:47:34 +0000208 {
cristyd05120d2011-04-22 13:00:41 +0000209 *clone_info->filename='\0';
210 *clone_info->magick='\0';
cristy4231d782011-04-22 02:18:34 +0000211 if (*filename != '\0')
cristyd05120d2011-04-22 13:00:41 +0000212 (void) CopyMagickString(clone_info->filename,filename,
213 MaxTextExtent);
cristy3ed852e2009-09-05 21:47:34 +0000214 image=BlobToImage(clone_info,blob_data,blob_length,exception);
cristyd05120d2011-04-22 13:00:41 +0000215 hr=SafeArrayUnaccessData(pSafeArray);
cristy3ed852e2009-09-05 21:47:34 +0000216 CatchException(exception);
217 }
218 }
219 }
220 }
cristy3ed852e2009-09-05 21:47:34 +0000221 clone_info=DestroyImageInfo(clone_info);
222 return(image);
223}
224
225/*
226%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
227% %
228% %
229% %
230% R e g i s t e r X T R N I m a g e %
231% %
232% %
233% %
234%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
235%
236% RegisterXTRNImage() adds attributes for the XTRN image format to
237% the list of supported formats. The attributes include the image format
238% tag, a method to read and/or write the format, whether the format
239% supports the saving of more than one frame to the same file or blob,
240% whether the format supports native in-memory I/O, and a brief
241% description of the format.
242%
243% The format of the RegisterXTRNImage method is:
244%
245% RegisterXTRNImage(void)
246%
247*/
248ModuleExport void RegisterXTRNImage(void)
249{
250 MagickInfo
251 *entry;
252
253 entry=SetMagickInfo("XTRNFILE");
254 entry->decoder=ReadXTRNImage;
255 entry->encoder=WriteXTRNImage;
256 entry->adjoin=MagickFalse;
257 entry->stealth=MagickTrue;
258 entry->description=ConstantString("External transfer of a file");
259 entry->module=ConstantString("XTRN");
260 RegisterMagickInfo(entry);
cristy3ed852e2009-09-05 21:47:34 +0000261 entry=SetMagickInfo("XTRNIMAGE");
262 entry->decoder=ReadXTRNImage;
263 entry->encoder=WriteXTRNImage;
264 entry->adjoin=MagickFalse;
265 entry->stealth=MagickTrue;
266 entry->description=ConstantString("External transfer of a image in memory");
267 entry->module=ConstantString("XTRN");
268 RegisterMagickInfo(entry);
cristy3ed852e2009-09-05 21:47:34 +0000269 entry=SetMagickInfo("XTRNBLOB");
270 entry->decoder=ReadXTRNImage;
271 entry->encoder=WriteXTRNImage;
272 entry->adjoin=MagickFalse;
273 entry->stealth=MagickTrue;
274 entry->description=ConstantString("IExternal transfer of a blob in memory");
275 entry->module=ConstantString("XTRN");
276 RegisterMagickInfo(entry);
cristy3ed852e2009-09-05 21:47:34 +0000277 entry=SetMagickInfo("XTRNARRAY");
278 entry->decoder=ReadXTRNImage;
279 entry->encoder=WriteXTRNImage;
280 entry->adjoin=MagickFalse;
281 entry->stealth=MagickTrue;
cristyd05120d2011-04-22 13:00:41 +0000282 entry->description=ConstantString(
283 "External transfer via a smart array interface");
cristy3ed852e2009-09-05 21:47:34 +0000284 entry->module=ConstantString("XTRN");
285 RegisterMagickInfo(entry);
cristy3ed852e2009-09-05 21:47:34 +0000286}
287
288/*
289%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
290% %
291% %
292% %
293% U n r e g i s t e r X T R N I m a g e %
294% %
295% %
296% %
297%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
298%
299% UnregisterXTRNImage() removes format registrations made by the
300% XTRN module from the list of supported formats.
301%
302% The format of the UnregisterXTRNImage method is:
303%
304% UnregisterXTRNImage(void)
305%
306*/
307ModuleExport void UnregisterXTRNImage(void)
308{
309 UnregisterMagickInfo("XTRNFILE");
310 UnregisterMagickInfo("XTRNIMAGE");
311 UnregisterMagickInfo("XTRNBLOB");
cristy3ed852e2009-09-05 21:47:34 +0000312 UnregisterMagickInfo("XTRNARRAY");
cristy3ed852e2009-09-05 21:47:34 +0000313}
314
315/*
316%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
317% %
318% %
319% %
320% W r i t e X T R N I m a g e %
321% %
322% %
323% %
324%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
325%
326% WriteXTRNImage() writes an image in the XTRN encoded image format.
327% We use GIF because it is the only format that is compressed without
328% requiring addition optional delegates (TIFF, ZIP, etc).
329%
330% The format of the WriteXTRNImage method is:
331%
332% MagickBooleanType WriteXTRNImage(const ImageInfo *image_info,Image *image)
333%
334% A description of each parameter follows.
335%
336% o image_info: Specifies a pointer to an ImageInfo structure.
337%
338% o image: A pointer to a Image structure.
339%
340%
341*/
342
343size_t SafeArrayFifo(const Image *image,const void *data,const size_t length)
344{
345 SAFEARRAYBOUND NewArrayBounds[1]; /* 1 Dimension */
346 size_t tlen=length;
347 SAFEARRAY *pSafeArray = (SAFEARRAY *)image->client_data;
348 if (pSafeArray != NULL)
349 {
cristydf354f92011-04-22 02:40:55 +0000350 long lBoundl, lBoundu, lCount;
351 HRESULT hr = S_OK;
cristy3ed852e2009-09-05 21:47:34 +0000352 /* First see how big the buffer currently is */
cristydf354f92011-04-22 02:40:55 +0000353 hr = SafeArrayGetLBound(pSafeArray, 1, &lBoundl);
cristy3ed852e2009-09-05 21:47:34 +0000354 if (FAILED(hr))
355 return MagickFalse;
cristydf354f92011-04-22 02:40:55 +0000356 hr = SafeArrayGetUBound(pSafeArray, 1, &lBoundu);
cristy3ed852e2009-09-05 21:47:34 +0000357 if (FAILED(hr))
358 return MagickFalse;
cristydf354f92011-04-22 02:40:55 +0000359 lCount = lBoundu - lBoundl + 1;
cristy3ed852e2009-09-05 21:47:34 +0000360
361 if (length>0)
362 {
cristydf354f92011-04-22 02:40:55 +0000363 unsigned char *pReturnBuffer = NULL;
cristy3ed852e2009-09-05 21:47:34 +0000364 NewArrayBounds[0].lLbound = 0; /* Start-Index 0 */
cristycee97112010-05-28 00:44:52 +0000365 NewArrayBounds[0].cElements = (unsigned long) (length+lCount); /* # Elemente */
cristy3ed852e2009-09-05 21:47:34 +0000366 hr = SafeArrayRedim(pSafeArray, NewArrayBounds);
367 if (FAILED(hr))
368 return 0;
369 hr = SafeArrayAccessData(pSafeArray, (void**)&pReturnBuffer);
cristydf354f92011-04-22 02:40:55 +0000370 if( FAILED(hr) )
371 return 0;
cristyd05120d2011-04-22 13:00:41 +0000372 (void) memcpy(pReturnBuffer+lCount,(unsigned char *) data,length);
373 hr=SafeArrayUnaccessData(pSafeArray);
374 if(FAILED(hr))
cristydf354f92011-04-22 02:40:55 +0000375 return 0;
cristy3ed852e2009-09-05 21:47:34 +0000376 }
377 else
378 {
379 /* Adjust the length of the buffer to fit */
380 }
cristyddbc41b2011-04-24 14:27:48 +0000381 }
cristy3ed852e2009-09-05 21:47:34 +0000382 return(tlen);
383}
384
385static MagickBooleanType WriteXTRNImage(const ImageInfo *image_info,Image *image)
386{
387 Image *
388 p;
389
390 ImageInfo
391 *clone_info;
392
393 int
394 scene;
395
396 MagickBooleanType
397 status;
398
399 void
400 *param1,
401 *param2,
402 *param3;
403
404 param1 = param2 = param3 = (void *) NULL;
405 if (LocaleCompare(image_info->magick,"XTRNFILE") == 0)
406 {
407 clone_info=CloneImageInfo(image_info);
408 status=WriteImage(image_info,image);
409 if (status == MagickFalse)
410 CatchImageException(image);
411 clone_info=DestroyImageInfo(clone_info);
412 }
413 else if (LocaleCompare(image_info->magick,"XTRNIMAGE") == 0)
414 {
415 Image
416 **image_ptr;
417
418 ImageInfo
419 **image_info_ptr;
420
421 clone_info=CloneImageInfo(image_info);
422 if (clone_info->filename[0])
423 {
424 (void) sscanf(clone_info->filename,"%lx,%lx",&param1,&param2);
425 image_info_ptr=(ImageInfo **) param1;
426 image_ptr=(Image **) param2;
427 if ((image_info_ptr != (ImageInfo **) NULL) &&
428 (image_ptr != (Image **) NULL))
429 {
430 *image_ptr=CloneImage(image,0,0,MagickFalse,&(image->exception));
431 *image_info_ptr=clone_info;
432 }
433 }
434 }
435 else if (LocaleCompare(image_info->magick,"XTRNBLOB") == 0)
436 {
437 char
438 **blob_data;
439
440 ExceptionInfo
441 exception;
442
443 size_t
444 *blob_length;
445
446 char
447 filename[MaxTextExtent];
448
449 clone_info=CloneImageInfo(image_info);
450 if (clone_info->filename[0])
451 {
452 (void) sscanf(clone_info->filename,"%lx,%lx,%s",
453 &param1,&param2,&filename);
454
455 blob_data=(char **) param1;
456 blob_length=(size_t *) param2;
cristy3ed852e2009-09-05 21:47:34 +0000457 scene = 0;
458 (void) CopyMagickString(clone_info->filename,filename,MaxTextExtent);
459 for (p=image; p != (Image *) NULL; p=GetNextImageInList(p))
460 {
461 (void) CopyMagickString(p->filename,filename,MaxTextExtent);
462 p->scene=scene++;
463 }
cristyd965a422010-03-03 17:47:35 +0000464 SetImageInfo(clone_info,1,&image->exception);
cristy3ed852e2009-09-05 21:47:34 +0000465 (void) CopyMagickString(image->magick,clone_info->magick,
466 MaxTextExtent);
467 GetExceptionInfo(&exception);
468 if (*blob_length == 0)
469 *blob_length=8192;
470 *blob_data=(char *) ImageToBlob(clone_info,image,blob_length,
471 &exception);
472 if (*blob_data == NULL)
473 status=MagickFalse;
474 if (status == MagickFalse)
475 CatchImageException(image);
476 }
477 clone_info=DestroyImageInfo(clone_info);
478 }
cristy3ed852e2009-09-05 21:47:34 +0000479 else if (LocaleCompare(image_info->magick,"XTRNARRAY") == 0)
480 {
481 char
482 filename[MaxTextExtent];
483
cristydf354f92011-04-22 02:40:55 +0000484 size_t
cristy1652a652011-04-24 14:34:50 +0000485 blob_length;
cristydf354f92011-04-22 02:40:55 +0000486
487 unsigned char
488 *blob_data;
489
cristy3ed852e2009-09-05 21:47:34 +0000490 clone_info=CloneImageInfo(image_info);
cristydf354f92011-04-22 02:40:55 +0000491 if (*clone_info->filename != '\0')
cristy3ed852e2009-09-05 21:47:34 +0000492 {
cristydf354f92011-04-22 02:40:55 +0000493 (void) sscanf(clone_info->filename,"%lx,%s",&param1,&filename);
cristy3ed852e2009-09-05 21:47:34 +0000494 image->client_data=param1;
cristydf354f92011-04-22 02:40:55 +0000495 scene=0;
cristy3ed852e2009-09-05 21:47:34 +0000496 (void) CopyMagickString(clone_info->filename,filename,MaxTextExtent);
497 for (p=image; p != (Image *) NULL; p=GetNextImageInList(p))
498 {
499 (void) CopyMagickString(p->filename,filename,MaxTextExtent);
500 p->scene=scene++;
501 }
cristyd965a422010-03-03 17:47:35 +0000502 SetImageInfo(clone_info,1,&image->exception);
cristy3ed852e2009-09-05 21:47:34 +0000503 (void) CopyMagickString(image->magick,clone_info->magick,
504 MaxTextExtent);
cristydf354f92011-04-22 02:40:55 +0000505 blob_data=ImageToBlob(clone_info,image,&blob_length,
506 &image->exception);
507 if (blob_data == (unsigned char *) NULL)
cristy1652a652011-04-24 14:34:50 +0000508 status=MagickFalse;
cristydf354f92011-04-22 02:40:55 +0000509 else
510 SafeArrayFifo(image,blob_data,blob_length);
cristy3ed852e2009-09-05 21:47:34 +0000511 if (status == MagickFalse)
512 CatchImageException(image);
513 }
514 clone_info=DestroyImageInfo(clone_info);
515 }
516 return(MagickTrue);
517}
518#endif