anjum
anjum

Reputation: 556

To add image to an excelsheet in iphone

In my app I want to retrieve data from database and add it to an excelsheet. The Database's data are in string and BLOB format. I have retrieve the data and added to excel sheet using the frameworks: https://github.com/andreac/RSSheet

The problem is that I want to add image to the worksheet too. If any one has any idea about this please help me.

Upvotes: 10

Views: 191

Answers (1)

davidethell
davidethell

Reputation: 12018

The RSSheet library does not currently support adding graphics to the sheet. You'll need to do this on the server side unless you expand the RSCell class to support this.

Depending on your backend this can be done easily. In PHP I used the PHPExcel library.

Upvotes: 1

Related Questions