Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
2k views

Convert QString into QByteArray with either UTF-8 or Latin1 encoding

I would like to covert a QString into either a utf8 or a latin1 QByteArray, but today I get everything as utf8. And I am testing this with some char in the higher segment of latin1 higher than ...
3
votes
1answer
243 views

Read QByteArray setting written by QSetting within different QT version

QByteArray is serialized in different formats on the file system if the different version of QT library is used (say 4.5.2 against 4.7.1). I use the QSettings in my application to store the some ...
2
votes
2answers
81 views

QBitArray to QByteArray

When we create a text file with this text "ali ata bak", and we use this file as input for the program. The code is running normally. But when we enter "1111111111111111111111" this text in the ...
2
votes
1answer
90 views

Qt & Kinect: How do I convert BYTE* pBuffer to a QByteArray or const uchar*?

I'm currently combining the Qt library with the Kinect API, and attempting to show the video from the sensor in a QImage (being shown by a QLabel). In my Kinect handling library, the function that ...
0
votes
1answer
25 views

quint16 on qbytearray

i need add on firt position of qbytearray a quint16 and after read it: How can i to do it? I have try this: quint16 pos = 0; QFile file(m_pathFile); if (file.open(QFile::ReadOnly)) { qDebug() ...
0
votes
0answers
34 views

why does paserFromArray returns false?

I am writing a app that receive binary UDP datagram and parse it into values. I am using QT4 and google's protocol buffers under CentOS 6.0. Here is the .proto files: message packetHeader { ...
0
votes
3answers
86 views

converting QBitArray to QByteArray

This function doesnt work correctly for some inputs, So What is the mistake ? All Projects Codes here : link ps: I am using input that "bits.size()%8" equal to zero QByteArray ...
0
votes
1answer
72 views

Storing QByteArray data in QIODevice though write()

Well i have a QIODevice where i want to store data. But have issues with it. Everytime i try to create one i get errors. QIODevice dev; dev.open(QIODevice::ReadWrite); dev.write(md); dev.close(); ...
0
votes
1answer
55 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
1answer
197 views

Qt: QWebView and QByteArray cause encoding conflict

I have been sitting on the same problem for over three days now and I cannot figure out what is wrong with my code. Im my program, I use a QWebView window to represent HTML content. This HTML content ...
0
votes
2answers
188 views

How can I partition a QByteArray efficiently?

I want to partition a QByteArray message efficiently, so this function I implemented take the Bytes, the part I want to extract, and toEnd flag which tells if I want to extract part1 till the end of ...