Converting QPixmap to QByteArray: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
(Cleanup)
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''English''' [[Converting_QPixmap_to_QByteArray_Bulgarian|Български]]
{{LangSwitch}}
 
[[Category:snippets]]
= Convert QPixmap to QByteArray =
This is one way to convert {{DocLink|QPixmap}} to {{DocLink|QByteArray}}.
 
This is one way to convert "QPixmap":http://doc.qt.nokia.com/latest/qpixmap.html to "QByteArray":http://doc.qt.nokia.com/latest/qbytearray.html.


Useful when you want to store a pixmap in a database etc.
Useful when you want to store a pixmap in a database etc.


<code><br />QPixmap pixmap;<br />// Preparation of our QPixmap<br />QByteArray bArray;<br />QBuffer buffer( &amp;bArray );<br />buffer.open( QIODevice::WriteOnly );<br />pixmap.save( &amp;buffer, &quot;PNG&amp;quot; );<br /></code>
<code>
QPixmap pixmap;
// Preparation of our QPixmap
QByteArray bArray;
QBuffer buffer(&bArray);
buffer.open(QIODevice::WriteOnly);
pixmap.save(&buffer, "PNG");
</code>


Now variable ''bArray'' contains the byte array form of pixmap.
Now variable ''bArray'' contains the byte array form of pixmap.
'''Categories'''<br />[[snippets]]

Latest revision as of 12:51, 28 June 2015

En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh

This is one way to convert QPixmap to QByteArray.

Useful when you want to store a pixmap in a database etc.

QPixmap pixmap;
// Preparation of our QPixmap
QByteArray bArray;
QBuffer buffer(&bArray);
buffer.open(QIODevice::WriteOnly);
pixmap.save(&buffer, "PNG");

Now variable bArray contains the byte array form of pixmap.