vba - Graphic Quality in PowerPoint graphics export -


i have difficulties exporting graphics in powerpoint images.

when export graphic powerpoint manually (rightclick -> save picture) image has better quality when exported using vba:

call objpptshape.export(strexportname, ppsaveaspng) 

can explain why problem occurs?

i use workaround save print areas excel worksheet png files. there easier way export high quality pngs excel?

thanks in advance.

if add parameters after call, should better results:

objpptshape.export strexportname, ppsaveaspng, 1000, 1000, pprelativetoslide 

tweak numbers needed.
no need call ( ) - call methods name , no brackets


Comments

Popular posts from this blog

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -