Unable to view MICR font in print preview
问题 I have written a code to print a cheque using MICR font, every thing works fine but when coming to print preview I am getting normal text but while printing the document I am getting the required in MICR font. How can I show MICR font in print preview This is my code PrivateFontCollection PFC = new PrivateFontCollection(); PFC.AddFontFile(Server.MapPath("ADVMICR.TTF")); FontFamily fm = new FontFamily(PFC.Families[0].Name, PFC); Font PrintFont = new Font(fm, 12); PrintDocument pd = new