Removed debug output

Removed 16 Bit pdf compare font change.
This commit is contained in:
Rich 2014-01-24 20:53:35 +00:00
parent 911190352a
commit 67cc3b59a0
2 changed files with 2 additions and 2 deletions

View File

@ -202,7 +202,7 @@ namespace VEPROMS.CSLA.Library
public void LoadNonCachedGrid() public void LoadNonCachedGrid()
{ {
_MyGrid = GridInfo.GetNonCached(ContentID); _MyGrid = GridInfo.GetNonCached(ContentID);
Console.WriteLine("LoadNonCachedGrid {0},{1},{2}",ContentID,_MyGrid==null,_MyContentInfoUnique); //Console.WriteLine("LoadNonCachedGrid {0},{1},{2}",ContentID,_MyGrid==null,_MyContentInfoUnique);
} }
public PartInfoList LocalContentParts public PartInfoList LocalContentParts
{ {

View File

@ -187,7 +187,7 @@ namespace Volian.Print.Library
// The following line of code was added to allow for comparisons between the 16bit and 32bit pdf files. Without // The following line of code was added to allow for comparisons between the 16bit and 32bit pdf files. Without
// the size change, the overlays did not match up. It seems that the 16bit font size may be inaccurate // the size change, the overlays did not match up. It seems that the 16bit font size may be inaccurate
// and the 16bit conversion to be pdf may be off. // and the 16bit conversion to be pdf may be off.
if (font.Familyname.StartsWith("Arial") && font.Size == 11 && DoingComparison) font.Size = 11.15f; //if (font.Familyname.StartsWith("Arial") && font.Size == 11 && DoingComparison) font.Size = 11.15f;
Chunk chk = new Chunk(visualText.Text, font); Chunk chk = new Chunk(visualText.Text, font);
if(visualText.Format.BackgroundColor.AsDrawingColor.ToArgb() != System.Drawing.Color.White.ToArgb()) if(visualText.Format.BackgroundColor.AsDrawingColor.ToArgb() != System.Drawing.Color.White.ToArgb())