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)
{
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
//
}