Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 676
anjum Avatar asked Apr 20 '12 10:04

anjum


People also ask

How do I insert a Picture into Excel from my iPhone?

On the Insert tab, tap Pictures, and then tap Photos. If you're using Excel, tap Insert, and then tap Photos. Navigate to the location of the picture, and tap it to insert it. The Picture tab will appear.

How do I insert a Picture into an Excel spreadsheet?

Click the location in your worksheet where you want to insert a picture. On the Insert ribbon, click Pictures. Select Stock Images… Browse to the picture you want to insert, select it, and then click Open.


1 Answers

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.

like image 182
davidethell Avatar answered Oct 21 '22 00:10

davidethell