Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
6k views

QGraphicsView scrolling and image scaling/cropping

I would like to have a background image in my QGraphicsView that is always scaled (and cropped if necessary) to the size of the viewport, without scrollbars and without scrolling with the keyboard and ...
2
votes
1answer
71 views

Qt Phonon & QPixmap::GrabWidget

I've been working for a couple of days on grabbing frames from a phonon media object. My aim is to capture frames at some interval specified by the user. I firstly tried to implement a slot for the ...
2
votes
3answers
164 views

Qt Screen Resolution Splash Screen

I have a splash screen image that I display with splash.showFullScreen() but it doesn't re size it to the screen resolution so it either comes out tiled or to large depending on the display. I have ...
2
votes
3answers
530 views

Convert iplImage to Qpixmap

how do we convert IplImage to a Qpixmap or Qimage ? if the only answer is save the Iplimage then load it to the Qpixma then how do we do that ?
2
votes
1answer
257 views

How to draw rectangle using Qt to Xlib window

Let say that i have id of another Xlib window and i want to draw over this window rectangle. Is there way to to draw it using Qt? I found on solution but it doesn't work for me: QPixmap pix = ...
2
votes
1answer
4k views

reading and writing QByteArrays

I'm having trouble reading and writing QByteArray data to a file. My goal is to save QPixmap data into a QByteArray and save that QByteArray to a file (with the ability to read this QByteArray back ...
2
votes
3answers
2k views

Saving QPixmap to JPEG failing (Qt 4.5)

I have the following code. QString fileName = QFileDialog::getSaveFileName( this, tr("Output Image file"), (""), tr("PNG (*.png);;JPEG (*.JPEG);;Windows Bitmap (*.bmp);;All Files (*.*)") ...
2
votes
3answers
561 views

What is the best way to get the hash of a QPixmap?

I am developing a graphics application using Qt 4.5 and am putting images in the QPixmapCache, I wanted to optimise this so that if a user inserts an image which is already in the cache it will use ...
1
vote
1answer
156 views

Saving QPixmap as JPEG results in vertical lines

A user installed our application to a server PC, shared the install directory as network drive Z: and now opens the app from different client PCs all over his shop. Everything works fine except for a ...
1
vote
3answers
251 views

QImage/QPixmap size limitations?

Are there any known size/space limitation of QPixmap and/or QImage objects documented? I did not find any useful information regarding this. I'm currently using Qt 4.7.3 on OSX and Windows. ...
1
vote
2answers
223 views

is there any way to insert QPixmap object in html?

Simple situation: I have an object, which has a QPixmap member. Object first created (pixmap is null now), then pixmap readed from data base and inserted in object. I need to insert that pixmap in ...
1
vote
0answers
71 views

Cant Get Touch Inputs ın QPixMap(image) in QView

I have a QScene object in QWidget and inside QWidget i have QGraphicsView. I convert images to QPixMap give it to QScene as an element and i defined touch events in QGraphicsView class. In ...
1
vote
1answer
260 views

How to interactively draw points onto a Pixmap that is on a QLabel in PyQT

I am building a small GUI interface and I have a QLabel that draws images from a directory onto itself by setting them as the pixmap. I want the user to be able to interactively click points on this ...
1
vote
1answer
414 views

PyQt: Create QPixmap with alpha channel and not premultiplied color channels

I would like to create a QPixmap to draw on using a QPainter. The QPixmap should support transparency without using premultiplied color channels. Currently I do this by creating a QPixmap with the ...
1
vote
1answer
1k views

Why doesn't setting the pixmap of a QLabel work?

I've created a subclass of QLabel that I intend to use in a QGraphicsView. It serves as a movable "point" that one can click on and drag around the graphics view. Creating the custom class and having ...
1
vote
1answer
755 views

How do I move a QPixMapImage around a qgraphicsview

I can add a QPixMapImage to a QGraphicsScene, but then I have two issues. First I cannot create a pointer to my QPixmapItem declared in the header, where i can with QGraphicsScene. I get an error ...
1
vote
1answer
546 views

QT- QImage and multi-threading problem

Greetings all, Please refer to image at : http://i48.tinypic.com/316qb78.jpg We are developing an application to extract cell edges from MRC images from electron microscope. MRC file format stores ...
1
vote
3answers
3k views

How to solve QPixmap::fromImage memory leak?

I have a problem with Qt. Here is a part of code that troubles me: void FullScreenImage::QImageIplImageCvt(IplImage *input) { help=cvCreateImage(cvGetSize(input), input->depth, ...
1
vote
3answers
3k views

Load blob image data into QPixmap

I am writing a program using PyQt4 for front-end GUI and this program accesses a back-end database (which can be either MySQL or SQLite). I need to store some image data in the database and below is ...
0
votes
2answers
55 views

Convert Leptonica Pix Object to QPixmap ( or other image object )

I'm using the Leptonica Library to process some pictures. After that I want to show them in my QT GUI. Leptonica is using their own format Pix for the images, while QT is using their own format ...
0
votes
1answer
30 views

Class that inherits QMovie and QPixmap functions

Is there any Qt Class that Inherits everything from QMovie and QPixmap?
0
votes
1answer
35 views

How can I capture maya 3d view with QPixmap?

I make a screen capture script for maya. So, I deal the job with QPixmap class. I write the script like that. from PyQt4 import QtCore, QtGui import sip import maya.cmds as cmds import ...
0
votes
1answer
169 views

Qt: update pixmap grid layout with 2d array values

I am undertaking a game using a combination of c++ in visual studios 2010 and Qt 4.7 (both windows). The game is a clone of battleship and is console input based. I have created my gui how I want it ...
0
votes
1answer
50 views

Decrease file size of QPixmap

when i resize a QPixmap with scaledToHeight and then transform it to an QByteArray, the size of this ByteArray is exactly the size of ByteArray from the unscaled QPixmap. Is there a possibility to ...
0
votes
0answers
94 views

QPixMap::grabWindow() not working in Qt 4.7.4 in OSX?

I develop a small QtGui Application that needs to be able to grab partial Screenshots from the Desktop by dividing the Screen into several subareas and storing the Screen contents as QPixMaps. For ...
0
votes
1answer
50 views

displaying image from sqlite error

I have saved an image in sqlite and i am trying to retrieve it and displaying it in a QLabel using this code. connect(ui.tableView->selectionModel(), ...
0
votes
0answers
119 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
92 views

How to declare and instantiate a variable in QT?

At first I want to appologize for this stupid question, but im fairly new to QT, so forgive me ;) Im drawing QPixmaps. But for performance issues I only want to load my QPixmaps once to use them over ...
0
votes
1answer
206 views

How to draw a QPixmap with transparency

I've got a QPixmap and I would like to draw it on a QWidget. However, I would like to make it 50% transparent so that the background can be seen below. How can I do that?
0
votes
1answer
159 views

QPixmap image loading problem

Basically I am trying to load the image as a texture using QPixmap: texture[T_WALL] = bindTexture(QPixmap(":/images/wall.png"), GL_TEXTURE_2D); The code works on my development machine, but not in ...
0
votes
2answers
63 views

Stitch together multiple QPixmaps

I'm looking for a method, no matter how roundabout, to horizontally stitch together three pixmaps into one (ie 20x20 + 20x20 + 20x20 -> 60x20). If it helps any, what I actually have is three png ...
0
votes
1answer
115 views

How to convert QPixmap into a Matrix

I have been looking for such answers. I found this method in QPixmap transformed() though I think it does not help me in my pursuit of searching a method to convert QPixmap Images (grayscale) into a ...
0
votes
1answer
268 views

How to add a QPixmap to QGraphicsView that is static?

hope someone of you can help me. I have a QGraphicsView, that is displaying a jpeg. The jpeg is much bigger than the QGraphicsView, so you can drag the jpeg (with the mouse). Over that jpeg I want to ...
0
votes
1answer
362 views

Drawing QPixmap Rects Over QWidget with QPainter

I'll get serialized QPixmap Rects over the socket. I'll unserialize them and draw the rects in a QWidget Now my question is which QWidget should I use for this purpose ? is there any recontamination ...
0
votes
1answer
429 views

QT: Painting bitmap/PNG images to a QWidget

I am building a game using QT in c++. I have extended the QWidget class as a painting surface and have set up a thread to refresh the screen. What I need now is to load the sprite sheets from file, ...
0
votes
1answer
153 views

QPixmap possible leak seen on Activity Monitor Mac OS X

I have a problem with QPixmap in Qt 4.7 on snow leopard 10.6.7 if it helps. QPixmap *pix = new QPixmap("image.png"); delete pix; Still, Activity Monitor shows me that the Real Memory usage for my ...
0
votes
2answers
426 views

Qt4: QLabel -> QPixmap -> click to open URL

I have a QLabel without any text but with a QPixmap image. I can not figure out a way to open a url when the user clicks the image. I can not use text in QLabel here.
0
votes
1answer
337 views

I am not using QPixmap, in PyQt. but I get QPixmap: It is not safe to use pixmaps outside the GUI thread in PyQt

I am using PyQt for a project. But not all of a sudden I am getting an error: QPixmap: It is not safe to use pixmaps outside the GUI thread in PyQt I am not using QPixmap anywhere in my code... ...
0
votes
2answers
559 views

Qt QPixmap QPainter problem

I have a piece of code that has this lines of code: int dsize = 100; QPainter *painter; QPixmap *img; QLabel *l_img; painter = new QPainter; img = new QPixmap(dsize, dsize); l_img = new QLabel; ...
0
votes
2answers
328 views

Transparent QLabel in QGraphicsView a good idea?

I'm trying to write a piece of software that allows one to click on a video frame and mark the x,y coordinates of a location in the frame. To design this, I've been wanting to use a QGraphicsView ...
0
votes
2answers
457 views

PyQt: How do I handle QPixmaps from a QThread?

This has to be the biggest nuisance I've encountered with PyQT: I've hacked together a thumbnailing thread for my application (I have to thumbnail tons of big images), and it looks like it would work ...
0
votes
1answer
483 views

Using QGraphicsView to display a local map

I'm trying to use QGraphicsView in order to display a map image and draw some items on top of it. The map boundaries are in a Cartesian coordinate system, for example NE(-500,200) to SW(600,-350). I ...
0
votes
1answer
887 views

Converting an image to text

I want to be able to save an image as text in a xml file and I can't manage to find a efficient way to do it ! So far I tried : QByteArray ImageAsByteArray; QBuffer ...
0
votes
2answers
332 views

jamvm1.5+classpath-0.96+qt4.3 QPixmap: It is not safe to use pixmaps outside the GUI thread

jamvm -Dawt.toolkit=gnu.java.awt.peer.qt test QPixmap: It is not safe to use pixmaps outside the GUI thread I'm new to Qt, I don't know how to deal with it.
0
votes
2answers
322 views

QPainter fails when calling begin

I'm trying to paint a PNG file on a QsplashScreen. Im' trying to do it via QPaitner. The reason I want to do it via QPainter is because I want it to minimize smoothly (until it disappear), When I'm ...
0
votes
1answer
481 views

“Python.exe” crashes when PyQt's setPixmap() is called with a Pixmap

I have a program that sends and receives images to each other using sockets. The server sends the image data using 'image.tostring()' and the client side receives it and turns it back into an image ...