I want to do a project in C#.I saw several online software which converts jpeg to pdf/doc/docx and vice versa.Now I want to build my own software which will dothe same thing as a hobby project.
Can someone plz guide me from where should i start?
I want to do a project in C#.I saw several online software which converts jpeg to pdf/doc/docx and vice versa.Now I want to build my own software which will dothe same thing as a hobby project.
Can someone plz guide me from where should i start?
Here's a good place to start! Break your code down into smaller milestones and get each part working :)
PdfDocument doc = new PdfDocument();
doc.Pages.Add(new PdfPage());
XGraphics xgr = XGraphics.FromPdfPage(doc.Pages[0]);
XImage img = XImage.FromFile(source);
xgr.DrawImage(img, 0, 0);
doc.Save(destinaton);
doc.Close();