I have  a business need to convert pdf file which has tabular data (which has table formatted data). is it possible to convert the pdf document to a single text file keeping tabular data context.
I do not need table/cell boundary  and row but need the column, row  in the correct context
			
			
									
						
										
						convert PDF to plain text
- 
				snibgo
 - Posts: 12159
 - Joined: 2010-01-23T23:01:33-07:00
 - Authentication code: 1151
 - Location: England, UK
 
Re: convert PDF to plain text
ImageMagick is a raster image processor. So it can read a PDF and create raster images from it. If you want formatted text, IM is not the appropriate tool. Try something like pdftotext.
			
			
									
						
							snibgo's IM pages: im.snibgo.com
			
						Re: convert PDF to plain text
Is it possible to convert to PostScript file
			
			
									
						
										
						Re: convert PDF to plain text
I doubt, as postscript files has no raster images
			
			
									
						
										
						- 
				snibgo
 - Posts: 12159
 - Joined: 2010-01-23T23:01:33-07:00
 - Authentication code: 1151
 - Location: England, UK
 
Re: convert PDF to plain text
With IM, you can:vargheseg wrote:Is it possible to convert to PostScript file
Code: Select all
magick in.pdf out.pssnibgo's IM pages: im.snibgo.com