The pixmap tag has no wiki summary.
2
votes
2answers
276 views
How to extract the pixel data Use R's pixmap package?
How to extract the pixel data Use R's pixmap package?
so I read the image file using:
picture <- read.pnm("picture.pgm")
picture
Pixmap image
Type : pixmapGrey
Size ...
2
votes
1answer
372 views
What is the format of Xlib ZPixmap format
does anyone know what is XLib ZPixmap format for 32/24bit images/pixmaps. Is it RGB(A) or BGR(A), etc. or highly implementation dependent?
1
vote
1answer
257 views
Python - PyQT - How to detect mouse events when clicking text/points in a pixmap
Suppose I have drawn simple text (say just the letter 'x') with some font parameters (like size 20 font, etc.) onto an (x,y) location in a QLabel that holds a QPixmap. What are the relevant methods ...
1
vote
4answers
671 views
How to shift pixels of a pixmap efficient in Qt4
I have implemented a marquee text widget using Qt4. I painted the text content onto a pixmap first. And then paint a portion of this pixmap onto a paint device by calling ...
0
votes
1answer
54 views
Qt/PyQt(/Other?): How do I change specific colors in a pixmap?
How do I change specific colors in a pixmap? For example, I have a pixmap with white and black pixels, and I want to change all white pixels to blue, but leave the black ones alone. Or maybe change ...
0
votes
1answer
45 views
faster redraw of pygtk drawing area?
I'm creating paint program based on this program. Dragging the mouse faster results in spotty brush strokes, so I'm wondering if there is a faster way to redraw the drawing area.
This is the current ...
0
votes
1answer
32 views
How do you save a .pnm plot in R interactive session?
I'm using the pixmap library here. For instance, I have some grid.pnm file I want to save in interactive mode. It seems like there are only save options for more common extensions such as jpeg, png, ...
0
votes
0answers
133 views
mupdf: how to put a fz_pixmap into Qt4 QPixmap
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 ...
0
votes
2answers
194 views
Qt: Rotating a label with a Pixmap on it
I have a label with a pixmap on it
Code looks like this:
Label = new QLabel (dialog, Qt::Widget);
Label -> setGeometry( xPosition, yPosition, 25, 87 );
QPixmap pixmap;
...
0
votes
0answers
67 views
gtk# Disable pixmap background defined by theme
I'm having a problem using gtk themes, some themes set bgPixmaps and I want a range of different buttons each having different bgPixmaps (at least I need two different Buttons), I've tried to ...
0
votes
1answer
410 views
QGraphicsView - slow scale performance under Linux
I'm making a program that will display a few images from a directory beside each other.
When I scale the images to fit within the height of the window (ie - QGraphicsPixmapItem->scale(...)), it runs ...