 | PdfiumFPDF_GenerateContentToStream(IntPtr, IntPtr, IntPtr, IntPtr) Method |
Generate stream content from the specified list of object and write it to the stream.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDF_GenerateContentToStream(
IntPtr doc,
IntPtr objList,
IntPtr stream,
IntPtr resDict
)
Public Shared Function FPDF_GenerateContentToStream (
doc As IntPtr,
objList As IntPtr,
stream As IntPtr,
resDict As IntPtr
) As Boolean
public:
static bool FPDF_GenerateContentToStream(
IntPtr doc,
IntPtr objList,
IntPtr stream,
IntPtr resDict
)
static member FPDF_GenerateContentToStream :
doc : IntPtr *
objList : IntPtr *
stream : IntPtr *
resDict : IntPtr -> bool
public static boolean FPDF_GenerateContentToStream(
IntPtr doc,
IntPtr objList,
IntPtr stream,
IntPtr resDict
)
Patagames.Pdf.Pdfium.FPDF_GenerateContentToStream = function(doc, objList, stream, resDict);
Parameters
- doc IntPtr
- Handle to a document.
- objList IntPtr
- Handle to a list of objects, returned by FPDFPageObj_GetListFromPage(IntPtr) or FPDFPageObj_GetListFromForm(IntPtr)
- stream IntPtr
- Handle to the Stream object.
- resDict IntPtr
- Handle to dictionary, where the rosurces will be generated. If IntPtr.Zero, then resources will be generated to the stream dictionary.
Return Value
BooleanFalse if any error is occured, otherwise true.
See Also