c# - font size and font family comparison -


i have extracted pdf using itextsharp , converted html using span tag. want compare 2 font family font size. had used http://www.codeproject.com/articles/11454/a-word-wise-html-text-compare-and-merge-engine text comparison . there method through differentiate ,match 2 font family , font size . final code getting in html .

this html text of 1 pdf:"<"span style="font-family:abcdee+calibri; "> <"span style="font-family:abcdee+calibri; "> steeds prominentere plaats in de organisatie in. ik <"span style="font-family:abcdee+calibri; ">ben zeer <"/span">

this html text of second pdf :<"span style="font-family:abcdee+calibri;"> "<"/span> <"span style="font-family:abcdee+impact;"> steeds prominentere plaats in de organisatie in. ik ben zeer <"/span>

here 1 pdf having calibri , second impact want find difference , highlight if not matching. can please tell me compare font family , font size. thank in advance


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -