If there is no compare PDF file, treat compare as if it were being done against 32-Bit. This keeps the output the same as output without compare. When compare is being done with 16-Bit output, special word-wrap logic sometimes removes the last character of a paragraph so that the 16-Bit output more closely matches the 32-Bit output/

This commit is contained in:
Rich 2013-05-21 15:37:50 +00:00
parent e9f746a883
commit 2a54e9c632

View File

@ -941,7 +941,8 @@ namespace Volian.Svg.Library
{ {
get get
{ {
if (BackgroundReader == null) return false; // If no background treat as if it were created with 32 Bit PROMS
if (BackgroundReader == null) return true;
return BackgroundReader.Info["Producer"].ToString().StartsWith("iTextSharp"); return BackgroundReader.Info["Producer"].ToString().StartsWith("iTextSharp");
} }
} }