Use PPT to do posters, export pictures, found that the resolution of the exported image is only 96ppi, the sharpness is not very good.
How could this be?
Search the Internet, found that Microsoft has provided a way to modify the registry, click here to visit. But the latest is only 2010, mine is the 2016 version, according to the above said to do, found useless.
Find another way. Paid software PPTools, it seems to be able to get. However, for money, bad reviews!
After, see a blog (blog address, now do not remember), which used a macro to export pictures, the code is as follows
Subppt2pic ()"'macro created by Zim, date 2012-10-5. ' DimNx asShapeDimX as Long forX =1 toActivePresentation.Slides.Count'jumps to the specified slide 'ActiveWindow.View.GotoSlide X 'get current slide number 'ActiveWindow.View.Slide.SlideIndex 'ActiveWindow.Selection.SlideRange.Shapes for eachNxinchactivepresentation.slides (X). ShapesIfNx.type = - OrNx.type =1 ThenDebug.Print Nx.TextFrame.TextRange.TextNext 'exporting slides to imagesActivePresentation.Slides (X). Export"D:\"& X &". JPG",". JPG",3072,2304 Next End Sub
Run a bit, found to modify the "D:\" permissions are not enough to error, change a directory on the line. Change 3072, 2304 to the other larger and larger number, will overflow, the highest PPI is only 282ppi, but much better than 96ppi.
Original address: http://www.cnblogs.com/super-zhang-828/p/5478592.html
PPT production poster export high resolution image