Quantcast
Channel: NPOI
Viewing all articles
Browse latest Browse all 1621

New Post: Add pictures to exists Excel file with pictures

$
0
0
After I add some pictures to an Excel file with old pictures, I can see the new added pictures, but I cannot see the old pictures. Is there any solution to fix it?

private void WriteItem(HSSFRow row,QuotationDS.ItemRow itemRow)
{
        if (this.NameHead != null)
        {
            row.GetCell(this.NameHead.ColumnIndex).SetCellValue( itemRow.Name );
        }

        if (this.PhotoHead != null && !itemRow.IsPhotoNull())
        {
            int pictureIdx = this._workbook.AddPicture(itemRow.Photo, PictureType.PNG);

            HSSFPatriarch patriarch = this.Patriarch;

            HSSFClientAnchor anchor = new HSSFClientAnchor(
                5, 5, 1023-5, 255-5, 
                this.PhotoHead.ColumnIndex, 
                row.RowNum, 
                this.PhotoHead.ColumnIndex,
                row.RowNum);
            anchor.AnchorType = 2;
            patriarch.CreatePicture(anchor, pictureIdx);
        }

        //.. output other fields
        //
}

Viewing all articles
Browse latest Browse all 1621

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>