static void PrintStyle(TextExtractor.Style s)
        {
            int[]  rgb     = s.GetColor();
            String rgb_hex = String.Format("{0:X02}{1:X02}{2:X02};", rgb[0], rgb[1], rgb[2]);

            Console.Write(" style=\"font-family:{0}; font-size:{1};{2} color:#{3}\"", s.GetFontName(), s.GetFontSize(), (s.IsSerif() ? " sans-serif;" : ""), rgb_hex);
        }
Example #2
0
 static void PrintStyle(TextExtractor.Style s)
 {
     Console.Write(" style=\"font-family: {0}; font-size: {1}; {2}\"", s.GetFontName(), s.GetFontSize(), (s.IsSerif() ? " sans-serif; " : " "));
 }