System::Text::ICUEncoder 클래스
내용물
[
숨다
]ICUEncoder class
Encoder that uses ICU for encoding. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.
class ICUEncoder : public System::Text::Encoder
메서드
| 메서드 | 설명 |
|---|---|
| virtual Convert(ArrayPtr<char_t>, int, int, ArrayPtr<uint8_t>, int, int, bool, int&, int&, bool&) | 문자를 바이트로 변환합니다. |
| virtual Convert(const char_t *, int, uint8_t *, int, bool, int&, int&, bool&) | 문자를 바이트로 변환합니다. |
| virtual GetByteCount(ArrayPtr<char_t>, int, int, bool) | 버퍼를 인코딩하는 데 필요한 바이트 수를 가져옵니다. |
| virtual GetByteCount(const char_t *, int, bool) | 버퍼를 인코딩하는 데 필요한 바이트 수를 가져옵니다. |
| virtual GetBytes(ArrayPtr<char_t>, int, int, ArrayPtr<uint8_t>, int, bool) | 버퍼를 인코딩한 결과 바이트를 가져옵니다. |
| virtual GetBytes(const char_t *, int, uint8_t *, int, bool) | 버퍼를 인코딩한 결과 바이트를 가져옵니다. |
| ICUEncoder(ICUEncoding *) | 생성자. |
| virtual Reset() | 내부 변수를 초기 상태로 설정합니다. |
| ~ICUEncoder() | 소멸자. |
Typedefs
| 타입 정의 | 설명 |
|---|---|
| Base | Base 유형. |
또 보기
- Class Encoder
- Namespace System::Text
- Library Aspose.Page for C++