Are you doing this on windows? If so win32 com:
import win32com.client Application = win32com.client.Dispatch("PowerPoint.Application") Application.Visible = True Presentation = Application.Presentations.Open(pathToPPT) Presentation.Slides[1].Export("C:/path/to/jpg.jpg", "JPG", 800, 600); etc...
source share