| PdfImageObjectCreate(PdfDocument, PdfBitmap, Single, Single) Method |
Create a new instance of
PdfImageObject class and initialize it with the specified bitmap and position.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax public static PdfImageObject Create(
PdfDocument document,
PdfBitmap bitmap,
float x,
float y
)
Public Shared Function Create (
document As PdfDocument,
bitmap As PdfBitmap,
x As Single,
y As Single
) As PdfImageObject
public:
static PdfImageObject^ Create(
PdfDocument^ document,
PdfBitmap^ bitmap,
float x,
float y
)
static member Create :
document : PdfDocument *
bitmap : PdfBitmap *
x : float32 *
y : float32 -> PdfImageObject
public static PdfImageObject Create(
PdfDocument document,
PdfBitmap bitmap,
float x,
float y
)
Patagames.Pdf.Net.PdfImageObject.Create = function(document, bitmap, x, y);
Parameters
- document PdfDocument
- Instance of PdfDocument class
- bitmap PdfBitmap
- The PdfBitmap to initialize for.
- x Single
- The x coordinate of the image object in standard user space
- y Single
- The x coordinate of the image object in standard user space
Return Value
PdfImageObjectInstance of
PdfImageObject class.
Remarks PdfBitmap may be disposed after passing to this methos
See Also