System::Text::Encoding::GetBytes 메서드
내용물
[
숨다
]Encoding::GetBytes(ArrayPtr<char_t>) method
문자 버퍼를 인코딩하여 생성된 바이트를 가져옵니다.
virtual ArrayPtr<uint8_t> System::Text::Encoding::GetBytes(ArrayPtr<char_t> chars)
| 매개변수 | 형식 | 설명 |
|---|---|---|
| chars | ArrayPtr<char_t> | 인코드할 문자. |
ReturnValue
Buffer that holds representation of characters being encoded.
또 보기
- Typedef ArrayPtr
- Class Encoding
- Namespace System::Text
- Library Aspose.Page for C++
Encoding::GetBytes(ArrayPtr<char_t>, int, int, ArrayPtr<uint8_t>, int) method
문자 버퍼를 인코딩하여 생성된 바이트를 가져옵니다.
virtual int System::Text::Encoding::GetBytes(ArrayPtr<char_t> chars, int char_index, int char_count, ArrayPtr<uint8_t> bytes, int byte_index)
| 매개변수 | 형식 | 설명 |
|---|---|---|
| chars | ArrayPtr<char_t> | 인코드할 문자. |
| char_index | int | 문자 슬라이스 시작. |
| char_count | int | 변환할 문자 수. |
| bytes | ArrayPtr<uint8_t> | Buffer에 문자를 넣기 위한 버퍼. |
| byte_index | int | 출력 버퍼 오프셋. |
ReturnValue
작성된 바이트 수.
또 보기
- Typedef ArrayPtr
- Class Encoding
- Namespace System::Text
- Library Aspose.Page for C++
Encoding::GetBytes(ArrayPtr<char_t>, int, int) method
문자 버퍼를 인코딩하여 생성된 바이트를 가져옵니다.
virtual ArrayPtr<uint8_t> System::Text::Encoding::GetBytes(ArrayPtr<char_t> chars, int index, int count)
| 매개변수 | 형식 | 설명 |
|---|---|---|
| chars | ArrayPtr<char_t> | 인코드할 문자. |
| index | int | 문자 슬라이스 시작. |
| count | int | 변환할 문자 수. |
ReturnValue
Buffer that holds representation of characters being encoded.
또 보기
- Typedef ArrayPtr
- Class Encoding
- Namespace System::Text
- Library Aspose.Page for C++
Encoding::GetBytes(const char_t *, int, uint8_t *, int) method
문자 버퍼를 인코딩하여 생성된 바이트를 가져옵니다.
virtual int System::Text::Encoding::GetBytes(const char_t *chars, int char_count, uint8_t *bytes, int byte_count)
| 매개변수 | 형식 | 설명 |
|---|---|---|
| chars | const char_t * | 인코드할 문자. |
| char_count | int | 변환할 문자 수. |
| bytes | uint8_t * | Buffer에 문자를 넣기 위한 버퍼. |
| byte_count | int | 출력 버퍼 크기. |
ReturnValue
작성된 바이트 수.
또 보기
- Class Encoding
- Namespace System::Text
- Library Aspose.Page for C++
Encoding::GetBytes(const String&) method
문자 버퍼를 인코딩하여 생성된 바이트를 가져옵니다.
virtual ArrayPtr<uint8_t> System::Text::Encoding::GetBytes(const String &s)
| 매개변수 | 형식 | 설명 |
|---|---|---|
| s | const String& | String을 인코딩할 대상. |
ReturnValue
Buffer that holds representation of characters being encoded.
또 보기
- Typedef ArrayPtr
- Class String
- Class Encoding
- Namespace System::Text
- Library Aspose.Page for C++
Encoding::GetBytes(const String&, int, int, ArrayPtr<uint8_t>, int) method
문자 버퍼를 인코딩하여 생성된 바이트를 가져옵니다.
virtual int System::Text::Encoding::GetBytes(const String &s, int char_index, int char_count, ArrayPtr<uint8_t> bytes, int byte_index)
| 매개변수 | 형식 | 설명 |
|---|---|---|
| s | const String& | String을 인코딩할 대상. |
| char_index | int | 문자 슬라이스 시작. |
| char_count | int | 변환할 문자 수. |
| bytes | ArrayPtr<uint8_t> | Buffer에 문자를 넣기 위한 버퍼. |
| byte_index | int | 출력 버퍼 오프셋. |
ReturnValue
작성된 바이트 수.
또 보기
- Class String
- Typedef ArrayPtr
- Class Encoding
- Namespace System::Text
- Library Aspose.Page for C++
Encoding::GetBytes(const System::Details::ArrayView<char_t>&, int, int) method
문자 버퍼를 인코딩하여 생성된 바이트를 가져옵니다.
virtual ArrayPtr<uint8_t> System::Text::Encoding::GetBytes(const System::Details::ArrayView<char_t> &chars, int index, int count)
| 매개변수 | 형식 | 설명 |
|---|---|---|
| chars | const System::Details::ArrayView<char_t>& | 인코드할 문자. |
| index | int | 문자 슬라이스 시작. |
| count | int | 변환할 문자 수. |
ReturnValue
Buffer that holds representation of characters being encoded.
또 보기
- Typedef ArrayPtr
- Class Encoding
- Namespace System::Text
- Library Aspose.Page for C++
Encoding::GetBytes(const System::Details::StackArray<char_t, N>&, int, int) method
문자 버퍼를 인코딩하여 생성된 바이트를 가져옵니다.
template<std::size_t> ArrayPtr<uint8_t> System::Text::Encoding::GetBytes(const System::Details::StackArray<char_t, N> &chars, int index, int count)
| 매개변수 | 형식 | 설명 |
|---|---|---|
| chars | const System::Details::StackArray<char_t, N>& | 인코드할 문자. |
| index | int | 문자 슬라이스 시작. |
| count | int | 변환할 문자 수. |
ReturnValue
Buffer that holds representation of characters being encoded.
또 보기
- Typedef ArrayPtr
- Class Encoding
- Namespace System::Text
- Library Aspose.Page for C++
Encoding::GetBytes(System::Details::ArrayView<char_t>, int, int, System::Details::ArrayView<uint8_t>, int) method
문자 버퍼를 인코딩하여 생성된 바이트를 가져옵니다.
virtual int System::Text::Encoding::GetBytes(System::Details::ArrayView<char_t> chars, int char_index, int char_count, System::Details::ArrayView<uint8_t> bytes, int byte_index)
| 매개변수 | 형식 | 설명 |
|---|---|---|
| chars | System::Details::ArrayView<char_t> | 인코드할 문자. |
| char_index | int | 문자 슬라이스 시작. |
| char_count | int | 변환할 문자 수. |
| bytes | System::Details::ArrayView<uint8_t> | Buffer에 문자를 넣기 위한 버퍼. |
| byte_index | int | 출력 버퍼 오프셋. |
ReturnValue
작성된 바이트 수.
또 보기
- Class Encoding
- Namespace System::Text
- Library Aspose.Page for C++
Encoding::GetBytes(System::Details::StackArray<char_t, SC>&, int, int, System::Details::StackArray<uint8_t, SB>&, int) method
문자 버퍼를 인코딩하여 생성된 바이트를 가져옵니다.
template<std::size_t,std::size_t> int System::Text::Encoding::GetBytes(System::Details::StackArray<char_t, SC> &chars, int char_index, int char_count, System::Details::StackArray<uint8_t, SB> &bytes, int byte_index)
| 매개변수 | 형식 | 설명 |
|---|---|---|
| chars | System::Details::StackArray<char_t, SC>& | 인코드할 문자. |
| char_index | int | 문자 슬라이스 시작. |
| char_count | int | 변환할 문자 수. |
| bytes | System::Details::StackArray<uint8_t, SB>& | Buffer에 문자를 넣기 위한 버퍼. |
| byte_index | int | 출력 버퍼 오프셋. |
ReturnValue
작성된 바이트 수.
또 보기
- Class Encoding
- Namespace System::Text
- Library Aspose.Page for C++