作成した Excel ファイルのフッターとしてリソースの画像を使用するにはどうすればよいですか?
これは間違いなく機能しません:
xlWorkSheet.PageSetup.CenterFooterPicture = Properties.Resources.stopka;
原因: タイプ 'System.Drawing.Bitmap' を Microsoft.Office.Interop.Excel.Graphic' に暗黙的に変換することはできません
これはうまくいきます:
xlWorkSheet.PageSetup.CenterFooterPicture.Filename = Application.StartupPath + "\\stopka.png";
xlWorkSheet.PageSetup.CenterFooterPicture.LockAspectRatio = Microsoft.Office.Core.MsoTriState.msoTrue;
xlWorkSheet.PageSetup.CenterFooterPicture.Width = 590;
xlWorkSheet.PageSetup.CenterFooter = "&G";
しかし、それは私が必要としていたものではありません。アプリケーションフォルダーからではなく、プロジェクトリソースから画像を取得したいと思います。