QTextEncoder Class

The QTextEncoder class provides a state-based encoder. More...

Header: #include <QTextEncoder>
qmake: QT += core

Note: All functions in this class are reentrant.

Public Functions

QTextEncoder(const QTextCodec *codec, QTextCodec::ConversionFlags flags)
QTextEncoder(const QTextCodec *codec)
~QTextEncoder()
QByteArray fromUnicode(const QString &str)
QByteArray fromUnicode(QStringView str)
QByteArray fromUnicode(const QChar *uc, int len)

Detailed Description

A text encoder converts text from Unicode into an encoded text format using a specific codec.

The encoder converts Unicode into another format, remembering any state that is required between calls.

See also QTextCodec::makeEncoder() and QTextDecoder.

Member Function Documentation

QTextEncoder::QTextEncoder(const QTextCodec *codec, QTextCodec::ConversionFlags flags)

Constructs a text encoder for the given codec and conversion flags.

This function was introduced in Qt 4.7.

QTextEncoder::QTextEncoder(const QTextCodec *codec)

Constructs a text encoder for the given codec.

QTextEncoder::~QTextEncoder()

Destroys the encoder.

QByteArray QTextEncoder::fromUnicode(const QString &str)

Converts the Unicode string str into an encoded QByteArray.

QByteArray QTextEncoder::fromUnicode(QStringView str)

This is an overloaded function.

Converts the Unicode string str into an encoded QByteArray.

This function was introduced in Qt 5.10.

QByteArray QTextEncoder::fromUnicode(const QChar *uc, int len)

This is an overloaded function.

Converts len characters (not bytes) from uc, and returns the result in a QByteArray.

© 2023 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.