Inserts a new page before the given position in the bitmap.

Namespace:  FreeImageAPI
Assembly:  FreeImageNET (in FreeImageNET.dll)

Syntax

C#
public static void InsertPage(
	FIMULTIBITMAP bitmap,
	int page,
	FIBITMAP data
)
Visual Basic (Declaration)
Public Shared Sub InsertPage ( _
	bitmap As FIMULTIBITMAP, _
	page As Integer, _
	data As FIBITMAP _
)
Visual C++
public:
static void InsertPage(
	FIMULTIBITMAP bitmap, 
	int page, 
	FIBITMAP data
)

Parameters

bitmap
Type: FreeImageAPI..::.FIMULTIBITMAP
Handle to a FreeImage multi-paged bitmap.
page
Type: System..::.Int32
Page has to be a number smaller than the current number of pages available in the bitmap.
data
Type: FreeImageAPI..::.FIBITMAP
Handle to a FreeImage bitmap.

Version Information

FreeImage.NET

Supported in: 3.11.0, 3.12.0, 3.13.0, 3.13.1

See Also