I'm coding a macros to copy an Excel chart and paste it to a PowerPoint presentation as a transparent picture. Sounds simple so far, but the problem is that the picture is either not transparent or distorted.
Take a look please:
- here's the distorted version I get after executing my macros:

- here's what I get when I manually copy/paste it (and that's how I want it to look like):

My code (the relevant part):
ActiveSheet.ChartObjects("MyChartNameGoesHere").CopyPicture Appearance:=xlScreen, Format:=xlPicture
Set PPApp = GetObject(, "Powerpoint.Application")
Set PPPres = PPApp.ActivePresentation
Set PPSlide = PPPres.Slides(PPApp.ActiveWindow.Selection.SlideRange.SlideIndex)
PPSlide.Shapes.PasteSpecial(ppPasteEnhancedMetafile).Select
I've tried to change the CopyPicture format parameter from xlPicture to xlBitmap but in that case the picture is not transparent and overlays slide background. And I'm not sure it looks smooth.
I've also tried to change the slide's PasteSpecial parameter to almost each listed here and still no success.
For some time I believed that the xlBitmap version is OK and it's just not transparent. That's why I moved both examples to the edge of a slide so we can see that. But then after zooming in I realised it was distorted as well. I don't know whether I got really mistaken or I just accidentally dropped something important from my code (most likely). Restored by memory to the previous version but failed.
Once again, everything's fine when I copy chart from Excel and special-paste it to PowerPoint as a picture manually. PowerPoint 2007 doesn't have a macros recorder, so I can't see what's happening.
Please help me out. Any thoughts are mush appreciated!
UPDATE the "distorted" version is not only... distorted, but also 5 times "heavier" (in terms of a presentation file size). Any help still much appreciated!