Group: GDI+ Brush - Library: gdiplus
Adding a background image to VFP report (VFP9, ReportListener)
GpStatus WINGDIPAPI GdipCreateTexture(
GpImage *image,
GpWrapMode wrapmode,
GpTexture **texture
);
DECLARE INTEGER GdipCreateTexture IN gdiplus;
INTEGER img,;
LONG wrapmode,;
INTEGER @texture
image [in] Handle to Image Object
wrapmode [in] Element of the WrapMode enumeration that specifies how repeated copies of an image are used to tile an area when it is painted with this texture brush.
texture [out] Handle of the brush object.
Returns 0 on success.
See also: GdipCreateSolidFill, GdipDeleteBrush, GdipFillRectangle.