3

文字列を描画してから Amyuni Printer で PDF に印刷しようとすると、次の問題が発生します。

ここに画像の説明を入力

(Ctrl+A) を押したときにテキストを選択できなかった場合、この PDF ファイルを別の PDF リーダーで使用する必要があり、リーダーが実際のテキスト領域ではなく、選択した領域を読み込もうとしているようです。

私はこのことを行うために次のコードを使用しています:

   Font printFont = new Font("Simplified Arabic Fixed", (float)11, FontStyle.Regular);
StreamReader Printfile;
using (StreamReader Printfile = new StreamReader(@"C:\20_2.txt", Encoding.Default))
            {
                try
                {
                    PrintDocument docToPrint = new PrintDocument();
                    PaperSize ps = new PaperSize("A4", 827, 1169);               
                    bool bolFirstPage = true;
                    docToPrint.DefaultPageSettings.PaperSize = ps;
                    docToPrint.DefaultPageSettings.Landscape = true;
                    docToPrint.DocumentName = "docName" + DateTime.Now.Ticks.ToString(); //Name that appears in the printer queue
                    string FirstLine = Printfile.ReadLine();
                    bool bIsArabic = true;
                    docToPrint.PrintPage += (s, ev) =>
                    {
                        float nFontHight = printFont.GetHeight(ev.Graphics);
                        bIsArabic = true;
                        float linesPerPage = 0;
                        float yPos = 0;
                        int count = 0;
                        float leftMargin = 1008;
                        float topMargin = 120;
                        string line = null;
                        //Calculate the number of lines per page.
                        linesPerPage = ev.MarginBounds.Height / printFont.GetHeight(ev.Graphics) + 2;
                        Image img = Image.FromFile(@"C:\image.bmp");
                        ev.Graphics.DrawImage(img, 6, 1, 1095, 728);
                        //***Image Reslution is Working good -->***
                        StringFormat format = new StringFormat()/*arabic*/;
                        line = Printfile.ReadLine();
                        format = new StringFormat(StringFormatFlags.DisplayFormatControl | StringFormatFlags.DirectionRightToLeft)/*arabic*/;
                        do
                        {
                            yPos = topMargin + ((count) * printFont.GetHeight(ev.Graphics) * (float)0.91);
                            line = " تجربة تجربة تجربة تجربة تجربة";
                            ev.Graphics.DrawString(line, printFont, Brushes.DeepPink, leftMargin, yPos, format);
                            count++;
                        } while ((line = Printfile.ReadLine()) != null && !line.Contains(''));// lines contains \0 as UniCode

                        // If more lines exist, print another page. 
                        if (line != null)
                            ev.HasMorePages = true;
                        else
                            ev.HasMorePages = false;
                    };
                    docToPrint.Print();
                }
                catch (System.Exception f)
                {
                    MessageBox.Show(f.Message);
                }
            }
        }

「Arial」などの別のフォント タイプを使用している場合、テキストの 90% 近くを選択できますが、残念ながら、フォント タイプ「Simplified Arabic Fixed」のみを使用する必要があり、Windows Server 2003 を使用しています。

もう1つ、メモ帳からアラビア語のテキストを直接印刷しようとすると、うまくいきます。

4

0 に答える 0