2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6 % SSSSS TTTTT RRRR EEEEE AAA M M %
7 % SS T R R E A A MM MM %
8 % SSS T RRRR EEE AAAAA M M M %
10 % SSSSS T R R EEEEE A A M M %
13 % Stream image to a raw image format. %
20 % Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization %
21 % dedicated to making software imaging solutions freely available. %
23 % You may not use this file except in compliance with the License. You may %
24 % obtain a copy of the License at %
26 % http://www.imagemagick.org/script/license.php %
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. %
34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36 % Stream is a lightweight utility designed to extract pixels from large image
37 % files to a raw format using a minimum of system resources. The entire
38 % image or any regular portion of the image can be extracted.
46 #include "MagickWand/studio.h"
47 #include "MagickWand/MagickWand.h"
50 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
58 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
63 int StreamMain(int argc,char **argv)
74 MagickCoreGenesis(*argv,MagickTrue);
75 exception=AcquireExceptionInfo();
76 image_info=AcquireImageInfo();
77 status=MagickCommandGenesis(image_info,StreamImageCommand,argc,argv,
78 (char **) NULL,exception);
79 image_info=DestroyImageInfo(image_info);
80 exception=DestroyExceptionInfo(exception);
85 #if !defined(MAGICKCORE_WINDOWS_SUPPORT) || defined(__CYGWIN__) || defined(__MINGW32__)
86 int main(int argc,char **argv)
88 return(StreamMain(argc,argv));
91 int wmain(int argc,wchar_t *argv[])
102 utf8=NTArgvToUTF8(argc,argv);
103 status=StreamMain(argc,utf8);
104 for (i=0; i < argc; i++)
105 utf8[i]=DestroyString(utf8[i]);
106 utf8=(char **) RelinquishMagickMemory(utf8);