I am trying to exploit mupdf library (Qt4 app). I have taken some code from pdfdraw.c. I was able to create a pixmap (fz_pixmap) from a pdf page. Now I need to display the pixmap. It is likely I can use QPixmap but I ask how to do so.

link|improve this question

62% accept rate
1  
Read the Qt docs for QPixmap, and read the tutorials/examples. They are very good. – Mat Sep 15 '11 at 5:53
Cannot help me? I didn't find anything. – P5music Sep 16 '11 at 9:14
size.setWidth(pix->w); size.setHeight(pix->h); //size 531 648 - 4 bytes per pixel bitmap.fromData(size,pix->samples); if ((pix->samples)) qDebug("NOT NULL\n"); //yields NOT NULL qDebug("bm %i %i \n",bitmap.width(),bitmap.height()); //yields 0,0 – P5music Sep 18 '11 at 9:21
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.