root/ImageMagick/trunk/utilities/display.c
| Revision 455, 4.9 KB (checked in by cristy, 4 weeks ago) |
|---|
| Line | |
|---|---|
| 1 | /* |
| 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 3 | % % |
| 4 | % % |
| 5 | % % |
| 6 | % DDDD IIIII SSSSS PPPP L AAA Y Y % |
| 7 | % D D I SS P P L A A Y Y % |
| 8 | % D D I SSS PPPP L AAAAA Y % |
| 9 | % D D I SS P L A A Y % |
| 10 | % DDDD IIIII SSSSS P LLLLL A A Y % |
| 11 | % % |
| 12 | % % |
| 13 | % Interactively Display an Image. % |
| 14 | % % |
| 15 | % Software Design % |
| 16 | % John Cristy % |
| 17 | % July 1992 % |
| 18 | % % |
| 19 | % % |
| 20 | % Copyright 1999-2009 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 | % Display is a machine architecture independent image processing |
| 37 | % and display program. It can display any image in the MIFF format on |
| 38 | % any workstation display running X. Display first determines the |
| 39 | % hardware capabilities of the workstation. If the number of unique |
| 40 | % colors in the image is less than or equal to the number the workstation |
| 41 | % can support, the image is displayed in an X window. Otherwise the |
| 42 | % number of colors in the image is first reduced to match the color |
| 43 | % resolution of the workstation before it is displayed. |
| 44 | % |
| 45 | % This means that a continuous-tone 24 bits-per-pixel image can display on a |
| 46 | % 8 bit pseudo-color device or monochrome device. In most instances the |
| 47 | % reduced color image closely resembles the original. Alternatively, a |
| 48 | % monochrome or pseudo-color image can display on a continuous-tone 24 |
| 49 | % bits-per-pixel device. |
| 50 | % |
| 51 | % |
| 52 | % |
| 53 | */ |
| 54 | |
| 55 | /* |
| 56 | Include declarations. |
| 57 | */ |
| 58 | #include "wand/studio.h" |
| 59 | #include "wand/MagickWand.h" |
| 60 | |
| 61 | /* |
| 62 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 63 | % % |
| 64 | % % |
| 65 | % % |
| 66 | % M a i n % |
| 67 | % % |
| 68 | % % |
| 69 | % % |
| 70 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 71 | % |
| 72 | % |
| 73 | */ |
| 74 | |
| 75 | #if defined(__WINDOWS__) |
| 76 | int WINAPI WinMain(HINSTANCE instance,HINSTANCE last,LPSTR command,int state) |
| 77 | { |
| 78 | char |
| 79 | **argv; |
| 80 | |
| 81 | int |
| 82 | argc, |
| 83 | main(int,char **); |
| 84 | |
| 85 | argv=StringToArgv(command,&argc); |
| 86 | return(main(argc,argv)); |
| 87 | } |
| 88 | #endif |
| 89 | |
| 90 | int main(int argc,char **argv) |
| 91 | { |
| 92 | ExceptionInfo |
| 93 | *exception; |
| 94 | |
| 95 | ImageInfo |
| 96 | *image_info; |
| 97 | |
| 98 | MagickBooleanType |
| 99 | status; |
| 100 | |
| 101 | MagickCoreGenesis(*argv,MagickTrue); |
| 102 | exception=AcquireExceptionInfo(); |
| 103 | image_info=AcquireImageInfo(); |
| 104 | status=MagickCommandGenesis(image_info,DisplayImageCommand,argc,argv, |
| 105 | (char **) NULL,exception); |
| 106 | image_info=DestroyImageInfo(image_info); |
| 107 | exception=DestroyExceptionInfo(exception); |
| 108 | MagickCoreTerminus(); |
| 109 | return(status); |
| 110 | } |
Note: See TracBrowser
for help on using the browser.
