when I phindow into my qnx box and run hmi application which draws raw images, I can not see them. Can phindows not able to display Phimage/raw image widgets? Is there a setting in phindows to allow this?
Thanks
when I phindow into my qnx box and run hmi application which draws raw images, I can not see them. Can phindows not able to display Phimage/raw image widgets? Is there a setting in phindows to allow this?
Thanks
Make sure you application updates the CRC tag.
What version of QNX and phindows are you using?
version 2.20 and I have set the CRC tag and now I can see solitaire work but still I can’t not see my Phimage drawn with PgDrawPhImage() on my app. This seems to be related to this posting, but is there any other way besides using label widget?
Get in touch with QNX and try to obtain their alpha version of Phindows/phrelay.
it worked after putting
PhRect_t area;
area.ul.x = -5000;
area.ul.y = -5000;
area.lr.x = 5000;
area.lr.y = 5000;
PgSetClipping(1, &area);
just before I called PgDrawPhImage();
I guess a better solution is to use PtLabel widget instead of creating my own PhCreateImage().
Phindows 2.20 really should not be out there any more. But for some reason, QNX delays release of Phindows 3.x. I highly recommend asking QNX for a pre-release version of Phindows 3.x, I’ve seen it, it is so much better.
will do~ thanks