Changed code to update image reference to use href instead of bname attribute name

Added header information to xml for image link
Replace bname with xlink:href for image references
Added RNOWidthAdj flag for Braidwood
This commit is contained in:
Rich
2014-01-08 20:05:45 +00:00
parent 6cb0edbf98
commit 21301832e0
4 changed files with 5 additions and 5 deletions

View File

@@ -505,8 +505,8 @@ namespace fmtxml
Bitmap bmp= new Bitmap(str);
bmap.SetAttribute("width",bmp.Width.ToString()+"px");
bmap.SetAttribute("height",bmp.Height.ToString()+"px");
//bmap.SetAttribute("xlink:href",str);
bmap.SetAttribute("bname",str);
bmap.SetAttribute("xlink:href", str);
//bmap.SetAttribute("href", str);
return bmap;
}