mirror of
				https://github.com/johnwhitington/cpdf-source.git
				synced 2025-06-05 22:09:39 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			863 B
		
	
	
	
		
			TeX
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			863 B
		
	
	
	
		
			TeX
		
	
	
	
	
	
/* CHAPTER 13. Images. */
 | 
						|
 | 
						|
/*
 | 
						|
 * Get image data, including resolution at all points of use. Call
 | 
						|
 * cpdf_startGetImageResolution(pdf, min_required_resolution) will 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..<total number> - 1, to retrieve the data. Finally, call
 | 
						|
 * cpdf_endGetImageResolution to clean up.
 | 
						|
 */
 | 
						|
int cpdf_startGetImageResolution(int, float);
 | 
						|
int cpdf_getImageResolutionPageNumber(int);
 | 
						|
char *cpdf_getImageResolutionImageName(int);
 | 
						|
int cpdf_getImageResolutionXPixels(int);
 | 
						|
int cpdf_getImageResolutionYPixels(int);
 | 
						|
double cpdf_getImageResolutionXRes(int);
 | 
						|
double cpdf_getImageResolutionYRes(int);
 | 
						|
void cpdf_endGetImageResolution(void);
 | 
						|
 |