Latest Tutorials ...

Save geometry data to ESRI shape(SHP) files
Save geometry data to ESRI shape(SHP)...
Load and display vector data like ESRI Shape files or DGN, DXF files
Load and display vector data like ESR...
Let the user edit existing geometry objects
Let the user edit existing geometry o...
Let the user draw new geometry objects like Polygons, Lines, Points
Let the user draw new geometry object...
Viewing pictures in a viewer control designed for scrolling, zooming, panning
Viewing pictures in a viewer control ...
Handling Exif and IPTC image tags
...
Extract all pictures of a page
...
Generate PDF documents containing text and imagedata
Generate PDF documents containing tex...
Convert between different image formats
Convert between different image forma...
Download THBImage image and vector viewing and processing SDK
Download THBImage image and vector viewing and processing SDK

THBImage Viewer is a small and fast raster picture and vector data viewer.
THBImage Viewer is a small and fast raster picture and vector data viewer.

Extract all pictures of a page

Therefore call the Pictures function of the page.
You will get a name-value collection plus a picture for each found image object.

THBArrayObject spPictures = spPage.Pictures();
For pics = 0 To spPictures.Size/2-1
	THBNameValuePairs values = cast.CastToTHBNameValuePairs spPictures.At(pics*2+0)
	THBImageEdit spie = cast.CastToTHBImageEdit spPictures.At(pics*2+1)
	strPicName = values.At("Name")
	String strFile = strPathDst + strFileNamePart nPage.ToString() + pics.ToString() + ".png"
	spie.SavePictureToFile strFile, thbifPNG
Next