Problem: MagickDisplayImage()
Posted: 2008-01-21T08:42:06-07:00
Hallo,
i have a problem with MagickDisplayImage().
my image is displayed, but i only see 1/4 of the image at the right corner of my LCD Screen.
Looks like this.
-------------------------------
| |
| |
| |
| |
| |
| |------------ |
| | |
| | |
--------------------------------
Here is the code of my .c file
It yould be great if somebody could help me out.
i have a problem with MagickDisplayImage().
my image is displayed, but i only see 1/4 of the image at the right corner of my LCD Screen.
Looks like this.
-------------------------------
| |
| |
| |
| |
| |
| |------------ |
| | |
| | |
--------------------------------
Here is the code of my .c file
Code: Select all
#define ThrowWandException(wand) \
{ \
char *description; \
ExceptionType severity; \
description=MagickGetException(wand,&severity); \
(void) fprintf(stderr,"%s %s %ld %s\n",GetMagickModule(),description); \
description =(char *) MagickRelinquishMemory(description); \
exit(-1); \
}
int main()
{
MagickBooleanType status;
MagickWand *magick_wand;
MagickWandGenesis();
magick_wand=NewMagickWand();
status=MagickReadImage(magick_wand, "/usr/local/src/pod/images/pod_img/7.bmp");
if (status == MagickFalse)
{
ThrowWandException(magick_wand);
return 0;
}
else
{
MagickDisplayImage(magick_wand, ":0");
magick_wand=DestroyMagickWand(magick_wand);
MagickWandTerminus();
return 1;
}
}