Tech
Forums
Jobs
Books
Events
Interviews
Live
More
Learn
Training
Career
Members
Videos
News
Blogs
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Convert Powerpoint file into Image file
WhatsApp
Gokul sankar
6y
26.6
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
Up Next
How to skip the first line from a text file
Ebook Download
View all
Printing in C# Made Easy
Read by 22.3k people
Download Now!
Learn
View all
Membership not found