Tagged: pdf to html
- This topic has 0 replies, 4 voices, and was last updated 10 years, 1 month ago by
Site Default.
- AuthorPosts
- February 23, 2012 at 7:36 am #3465
Site Default
Membercan u send m source code-pdf to html conversion in windows application
February 27, 2012 at 8:12 am #3467Hirendra Sisodiya
Keymasteri am not sure about it. you can not convert pdf to html directly in .net. .net framework does not anything to convert pdf to html.
you should move to some open source solution or Adove PDF SDK.
February 27, 2012 at 10:09 am #3469Site Default
Memberhow i m convert pdf to html in windows application in c# plz tell me or send me source code
May 16, 2012 at 12:33 pm #3752Ankur
MemberThere is not any direct way to convert pdf to html in C#. You need to use any third party tools.
April 24, 2013 at 6:29 am #4469Site Default
MemberHi, buddy, im nor sure you still need this help or not, according to your question, i searched following pdf to html conversion info in a professional image program. cause im not sure which language you are using, so i offer c#. net and vb .net conversion code.
tags: pdf to html conversion in c# .net
public void ConvertPdftoHtml();
{
PDFInputFile = (@”C:/1.pdf”);
PDFPageNumber = “1”;
HTMLOutputFile = OutputFormat.html;
}
PDF.Save(“OutputFormat.html”, SaveFormat.Html);tags: pdf to html in vb .net
Public Sub ConvertPdftoHtml()
If True Then
PDFInputFile = (“C:/1.pdf”)
PDFPageNumber = “1”
HTMLOutputFile = OutputFormat.html
End If
End Sub
PDF.Save(“OutputFormat.html”, SaveFormat.Html) - AuthorPosts
- You must be logged in to reply to this topic.