C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Convert Powerpoint file into Image file
WhatsApp
Gokul sankar
6y
26.8
k
0
1
25
Blog
using
Microsoft.Office.Interop.PowerPoint;
using
Microsoft.Office.Core;
using
System.IO;
try
{
FileInfo objfile =
new
FileInfo(FileUpload1.PostedFile.FileName);
if
(objfile.Extension.Equals(
".ppt"
))
{
ApplicationClass pptApplication =
new
Microsoft.Office.Interop.PowerPoint.ApplicationClass();
Presentation pptPresentation = pptApplication.Presentations.Open(objfile.FullName, MsoTriState.msoFalse, MsoTriState.msoFalse, MsoTriState.msoFalse);
pptPresentation.Export(objfile.FullName,
"jpg"
, Int32.Parse(pptPresentation.SlideMaster.Width.ToString()), Int32.Parse(pptPresentation.SlideMaster.Height.ToString()));
}
else
{
Response.Write(
"Please choose PowerPoint files only"
);
}
}
catch
(Exception ex)
{ }
.Net
People also reading
Membership not found