QTextEncoder Class

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

Header: #include <QTextEncoder>
CMake: find_package(Qt6 REQUIRED COMPONENTS Core5Compat)
target_link_libraries(mytarget PRIVATE Qt6::Core5Compat)
qmake: QT += core5compat

Note: All functions in this class are reentrant.

Public Functions

QTextEncoder(const QTextCodec *codec)
QTextEncoder(const QTextCodec *codec, QTextCodec::ConversionFlags flags)
~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

[explicit] QTextEncoder::QTextEncoder(const QTextCodec *codec)

Constructs a text encoder for the given codec.

[explicit] QTextEncoder::QTextEncoder(const QTextCodec *codec, QTextCodec::ConversionFlags flags)

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

[noexcept] 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.

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.

© 2024 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.