API referenceCore SDK

pdfGetMetaConvFlags

Set/get metafile (EMF/WMF) conversion behavior flags,

C
uint32_t __stdcall pdfGetMetaConvFlags(PPDF IPDF);
BOOL32 __stdcall pdfSetMetaConvFlags(PPDF IPDF, int32_t Flags);
Delphi
function pdfGetMetaConvFlags(const IPDF: PPDF): Cardinal; stdcall;
function pdfSetMetaConvFlags(const IPDF: PPDF; Flags: Integer): LongBool; stdcall;

Purpose. Set/get metafile (EMF/WMF) conversion behavior flags, consulted by the metafile-import path (pdfInsertMetafile*, Metafile Insertion (EMF/WMF)) and image-conversion utilities elsewhere in this SDK.

Return value. Getter: the current flags; 0 if IPDF invalid. Setter: True if IPDF valid.

C# (P/Invoke)

wrappers/dotnet/LumasPdf.cs
public static extern uint pdfGetMetaConvFlags(IntPtr IPDF);
Area
Core SDK
Category

Getters

Exported names

pdfGetMetaConvFlags

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.