2022-05-18 18:47:31 +02:00
|
|
|
//CHAPTER 13. Images
|
2022-05-12 17:57:13 +02:00
|
|
|
|
|
|
|
/** Gets image data, including resolution at all points of use. Call
|
2022-05-18 18:47:31 +02:00
|
|
|
startGetImageResolution(pdf, min_required_resolution) to begin the process of
|
|
|
|
obtaining data on all image uses below min_required_resolution, returning the
|
|
|
|
total number. So, to return all image uses, specify a very high
|
|
|
|
min_required_resolution. Then, call the other functions giving a serial number
|
|
|
|
0..n - 1, to retrieve the data. Finally, call endGetImageResolution to clean
|
|
|
|
up. */
|
|
|
|
function startGetImageResolution(pdf, min_required_resolution)
|
|
|
|
function getImageResolutionPageNumber(n)
|
|
|
|
function getImageResolutionImageName(n)
|
|
|
|
function getImageResolutionXPixels(n)
|
|
|
|
function getImageResolutionYPixels(n)
|
|
|
|
function getImageResolutionXRes(n)
|
|
|
|
function getImageResolutionYRes(n)
|
|
|
|
function endGetImageResolution()
|