ByteScout Barcode Suite - C# - Add image into existing spreadsheet with spreadsheet sdk - ByteScout

ByteScout Barcode Suite – C# – Add image into existing spreadsheet with spreadsheet sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Barcode Suite – C# – Add image into existing spreadsheet with spreadsheet sdk

How to add image into existing spreadsheet with spreadsheet sdk in C# with ByteScout Barcode Suite

How to write a robust code in C# to add image into existing spreadsheet with spreadsheet sdk with this step-by-step tutorial

Add image into existing spreadsheet with spreadsheet sdk is simple to apply in C# if you use these source codes below. ByteScout Barcode Suite is the bundle that privides 3 SDK products to generate barcodes (Barcode SDK), read barcodes (Barcode Reaer SDK) and read and write spreadsheets (Spreadsheet SDK). It can be applied to add image into existing spreadsheet with spreadsheet sdk using C#.

The SDK samples given below describe how to quickly make your application do add image into existing spreadsheet with spreadsheet sdk in C# with the help of ByteScout Barcode Suite. Simply copy and paste in your C# project or application you and then run your app! Complete and detailed tutorials and documentation are available along with installed ByteScout Barcode Suite if you’d like to learn more about the topic and the details of the API.

ByteScout Barcode Suite free trial version is available on our website. C# and other programming languages are supported.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

Program.cs
      
using System; using System.Collections.Generic; using System.Text; using System.Diagnostics; using System.IO; using Bytescout.Spreadsheet; namespace CSharp { class Program { static void Main(string[] args) { try { // create new Spreadsheet object Spreadsheet spreadsheet = new Spreadsheet(); spreadsheet.LoadFromFile("AdvancedReport.xls"); // add new worksheet Worksheet sheet = spreadsheet.Workbook.Worksheets[0]; // get AdvancedReport worksheet // add a picture to worksheet sheet.Pictures.Add("image.jpg", 100, 100); if(File.Exists("Output.xls")){ File.Delete("Output.xls"); } // Save it as XLS spreadsheet.SaveAs("Output.xls"); // close the document spreadsheet.Close(); // open output XLS Process.Start("Output.xls"); } catch(Exception e){ Console.WriteLine("CAN NOT EXECUTE: " + e.ToString()); Console.WriteLine("\nPress any key to exit"); Console.ReadKey(); } } } }

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Barcode Suite Home Page

Explore ByteScout Barcode Suite Documentation

Explore Samples

Sign Up for ByteScout Barcode Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Barcode Suite Home Page

Explore ByteScout Barcode Suite Documentation

Explore Samples

Sign Up for ByteScout Barcode Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next