Understood that Excel Chart can be exported as a gif file programmatically with the following coding in Visual Basic:
sub Create_GIF()
Dim mychart As Chart
Set mychart = ActiveSheet.ChartObjects(1).Chart
mychart.Export FileName:=”c:\Mychart.gif”,FilterName:=”GIF”
End Sub
(After run the Macro a gif file will be created.)
Can a photo(in bmp or gif) attached in Excel be exported? If yes, how?