pdfNoEmbedFontListGet
Retrieve the font name at a given index of the no-embed list.
| Category | Font policy (dead subsystem) |
|---|---|
| Exported names | pdfNoEmbedFontListGetA, pdfNoEmbedFontListGetW, pdfNoEmbedFontListGet |
| Note | same caveat |
Purpose — Retrieve the font name at a given index of the no-embed list.
Declarations
C
const char* __stdcall pdfNoEmbedFontListGet(PPDF IPDF, int32_t Index);
const char* __stdcall pdfNoEmbedFontListGetA(PPDF IPDF, int32_t Index);
const wchar_t* __stdcall pdfNoEmbedFontListGetW(PPDF IPDF, int32_t Index);
Delphi
function pdfNoEmbedFontListGetA(const IPDF: PPDF; Index: Integer): PAnsiChar; stdcall; external 'LumasPdf.dll';
function pdfNoEmbedFontListGetW(const IPDF: PPDF; Index: Integer): PWideChar; stdcall; external 'LumasPdf.dll';
Parameters
| Parameter | Type | Description |
|---|---|---|
IPDF | PPDF | Instance handle. |
Index | Integer | Zero-based index. |
Return value — The name at Index, or NULL if out of range.
C# (P/Invoke)
wrappers/dotnet/LumasPdf.cs
public static extern IntPtr pdfNoEmbedFontListGetW(IntPtr IPDF, int Index);
public static extern IntPtr pdfNoEmbedFontListGet(IntPtr IPDF, int Index);
public static extern IntPtr pdfNoEmbedFontListGetA(IntPtr IPDF, int Index);
Area
Fonts
Category
Core
Exported names
pdfNoEmbedFontListGetW
pdfNoEmbedFontListGet
pdfNoEmbedFontListGetA
String variants
The …A form takes UTF-8, …W
takes UTF-16; a bare name aliases the ANSI form.
See working code
Worked examples — complete programs in ten languages.