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.
| QTextEncoder(const QTextCodec *codec) | |
| QTextEncoder(const QTextCodec *codec, int flags) | |
| ~QTextEncoder() | |
| QByteArray | fromUnicode(const QString &str) |
| QByteArray | fromUnicode(QStringView str) |
| QByteArray | fromUnicode(const QChar *uc, int len) |
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.
[explicit] QTextEncoder::QTextEncoder(const QTextCodec *codec)
Constructs a text encoder for the given codec.
[explicit] QTextEncoder::QTextEncoder(const QTextCodec *codec, int flags)
Constructs a text encoder for the given codec and conversion flags.
[noexcept] QTextEncoder::~QTextEncoder()
Destroys the encoder.
Converts the Unicode string str into an encoded QByteArray.
Converts the Unicode string str into an encoded QByteArray.
This is an overloaded function.
Converts len characters (not bytes) from uc, and returns the result in a QByteArray.
This is an overloaded function.
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.9/qtextencoder.html