#pdf #xamarin.forms #datagrid #syncfusion
Вопрос:
Мне нужно сгенерировать PDF-файл, содержащий таблицу с данными как на английском, так и на арабском языках в xamarin.forms. Я много искал. Я нашел документацию syncfusion и попытался применить ее. В этом документе нет сетки, но в нем рассказывается, как добавить простой арабский текст: https://blog.syncfusion.com/blogs/post/adding-rtl-support-to-your-pdf-in-xamarin.aspx это сработало. Поэтому я попытался использовать его и внести изменения, чтобы добавить сетку. Это то, что я написал в файле main.xaml.cs:
private void btn_Clicked(object sender, EventArgs e)
{
PdfDocument doc = new PdfDocument();
//Add a page.
PdfPage page = doc.Pages.Add();
//Create a PdfGrid.
Syncfusion.Pdf.Grid.PdfGrid pdfGrid = new Syncfusion.Pdf.Grid.PdfGrid();
//Add values to list
List<object> data = new List<object>();
Object row1 = new { ID = "E01", Name = "رنا" };
Object row2 = new { ID = "E02", Name = "رامي" };
Object row3 = new { ID = "E03", Name = "Andrew" };
Object row4 = new { ID = "E04", Name = "Paul" };
Object row5 = new { ID = "E05", Name = "Gray" };
data.Add(row1);
data.Add(row2);
data.Add(row3);
data.Add(row4);
data.Add(row5);
//Add list to IEnumerable
IEnumerable<object> dataTable = data;
//Assign data source.
pdfGrid.DataSource = dataTable;
//Draw grid to the page of PDF document.
pdfGrid.Draw(page, new PointF(10, 10));
//Save the PDF document to stream.
MemoryStream ms = new MemoryStream();
//Create a new PDF document.
//Add a new PDF page.
//Load font.
Stream fontStream = typeof(App).GetTypeInfo().Assembly.GetManifestResourceStream("RTLDemo.Assets.arial.ttf");
//Create PDF true type font.
PdfFont pdfFont = new PdfTrueTypeFont(fontStream, 12);
//String format
PdfStringFormat format = new PdfStringFormat();
//Set the format as right to left.
format.TextDirection = PdfTextDirection.RightToLeft;
//Set the alignment.
format.Alignment = PdfTextAlignment.Right;
SizeF pageSize = page.GetClientSize();
PdfGridCell pdfGridCell = new PdfGridCell();
PdfGridCellStyle style = new PdfGridCellStyle();
style.Font = pdfFont;
style.StringFormat.TextDirection = format.TextDirection;
//Set style to grid
pdfGridCell.Style = style;
//Save the document.
doc.Save(ms);
//Close the document
doc.Close(true);
ms.Position = 0;
if (Device.OS == TargetPlatform.WinPhone || Device.OS == TargetPlatform.Windows)
Xamarin.Forms.DependencyService.Get<ISaveWindowsPhone>().Save("RTLText.pdf", "application/pdf", ms);
else
Xamarin.Forms.DependencyService.Get<ISave>().Save("RTLText.pdf", "application/pdf", ms);
}
Я продолжаю получать исключение: System.NullReferenceException:** 'Object reference not set to an instance of an object.'
на style.StringFormat.TextDirection = format.TextDirection;
линии. Я выполнил действия, описанные в этом документе: https://www.syncfusion.com/forums/135954/how-to-create-unicode-font-with-pdftruetypefont-or-the-proper-way-to-draw-a-unicode-string Я перепробовал много вещей, но ничего не получается. Что мне делать?
Обновить:
я заменил приведенный выше код новым кодом:
PdfDocument doc = new PdfDocument();
//Add a page.
PdfPage page = doc.Pages.Add();
//Create a PdfGrid.
PdfGrid pdfGrid = new PdfGrid();
//Create a DataTable.
DataTable dataTable = new DataTable();
//Add columns to the DataTable
dataTable.Columns.Add("ID");
dataTable.Columns.Add("Name");
//Add rows to the DataTable.
dataTable.Rows.Add(new object[] { "E01", "رنا" });
dataTable.Rows.Add(new object[] { "E02", "Thomas" });
//Assign data source.
pdfGrid.DataSource = dataTable;
//Using the Column collection
pdfGrid.Columns[0].Width = 100;
//Adding grid cell style
PdfGridCellStyle cellStyle = new PdfGridCellStyle();
//Create new PDF string format instance.
PdfStringFormat format = new PdfStringFormat();
format.Alignment = PdfTextAlignment.Center;
format.TextDirection = PdfTextDirection.RightToLeft;
//Set string format to grid cell.
cellStyle.StringFormat = format;
//Set borders.
PdfBorders borders = new PdfBorders();
borders.All = PdfPens.Red;
cellStyle.Borders = borders;
//Set background image.
Stream fontStream = typeof(App).GetTypeInfo().Assembly.GetManifestResourceStream("RTLDemo.Assets.arial.ttf");
PdfFont pdfFont = new PdfTrueTypeFont(fontStream, 12);
cellStyle.Font = pdfFont;
//Set cell paddings.
cellStyle.CellPadding = new PdfPaddings(5, 5, 5, 5);
//Applying style to grid
pdfGrid.Rows[0].Cells[0].Style = cellStyle;
//Draw grid to the page of PDF document.
pdfGrid.Draw(page, new PointF(10, 10));
MemoryStream ms = new MemoryStream();
//Save the document.
doc.Save(ms);
//Close the document
doc.Close(true);
ms.Position = 0;
if (Device.OS == TargetPlatform.WinPhone || Device.OS == TargetPlatform.Windows)
Xamarin.Forms.DependencyService.Get<ISaveWindowsPhone>().Save("RTLText.pdf", "application/pdf", ms);
else
Xamarin.Forms.DependencyService.Get<ISave>().Save("RTLText.pdf", "application/pdf", ms);
предыдущее исключение не появилось, pdf-файл был сгенерирован, но арабский текст не появился, что я упускаю?
Комментарии:
1. вы инициализировали
style.StringFormat
его перед тем, как попытаться получить к нему доступ?2. я попытался написать:
style.StringFormat stringformat=new style.StringFormat();
«но это не работает. вы знаете, как его инициализировать?
Ответ №1:
Мы можем рисовать RTL-текст в сетке PDF с помощью библиотеки Syncfusion PDF в Xamarin.Бланки заявления. Пожалуйста, найдите пример кода ниже,
//Create a new PDF document.
PdfDocument document = new PdfDocument();
//Add a new PDF page.
PdfPage page = document.Pages.Add();
//Get the font file as stream.
Stream fontStream = typeof(MainPage).GetTypeInfo().Assembly.GetManifestResourceStream("UnicodeText.Assets.arial.ttf");
//Create a new PdfTrueTypeFont instance.
PdfTrueTypeFont font = new PdfTrueTypeFont(fontStream, 14);
//Create a new bold stylePdfTrueTypeFont instance.
PdfTrueTypeFont boldFont = new PdfTrueTypeFont(fontStream, 14, PdfFontStyle.Bold);
page.Graphics.DrawString("PdfGrid", boldFont, PdfBrushes.Black, PointF.Empty);
//Create PdfGrid.
PdfGrid pdfGrid = new PdfGrid();
//Add values to list
List<object> data = new List<object>();
data.Add(new { ID = "E01", Name = "رنا" });
data.Add(new { ID = "E02", Name = "رامي" });
data.Add(new { ID = "E03", Name = "Andrew" });
data.Add(new { ID = "E04", Name = "Paul" });
data.Add(new { ID = "E05", Name = "Clay" });
//Add list to IEnumerable.
IEnumerable<object> dataTable = data;
//Assign data source.
pdfGrid.DataSource = dataTable;
//Assign bold font to pdfGrid header.
pdfGrid.Headers[0].Style.Font = boldFont;
//Assign font to PdfGrid.
pdfGrid.Style.Font = font;
//Create String format with RTL text direction and center text alignment.
PdfStringFormat format = new PdfStringFormat();
format.TextDirection = PdfTextDirection.RightToLeft;
format.Alignment = PdfTextAlignment.Center;
//Assign string format to draw RTL text with center alsignment
pdfGrid.Rows[0].Cells[1].StringFormat = format;
pdfGrid.Rows[1].Cells[1].StringFormat = format;
//Draw grid to the page of PDF document.
pdfGrid.Draw(page, new Syncfusion.Drawing.PointF(0, 20));
MemoryStream stream = new MemoryStream();
//Save the document.
document.Save(stream);
//Close the document.
document.Close(true);
Пожалуйста, найдите образец из https://www.syncfusion.com/downloads/support/directtrac/general/ze/UnicodeText1046384115. Пожалуйста, найдите образец выходного PDF-файла, созданного из https://www.syncfusion.com/downloads/support/directtrac/general/ze/Output-609045962.
Примечание: Формат строки, назначенный в вашем образце, не применяется к соответствующей ячейке сетки PDF с арабским текстом. Мы должны указать индекс ячейки равным 1 в соответствии с предоставленным образцом кода.
Комментарии:
1. о боже, я так счастлива. это сработало. большое спасибо
Ответ №2:
это взято непосредственно из документации
//Adding grid cell style
PdfGridCellStyle cellStyle = new PdfGridCellStyle();
//Create new PDF string format instance.
PdfStringFormat format = new PdfStringFormat();
format.Alignment = PdfTextAlignment.Center;
//Set string format to grid cell.
cellStyle.StringFormat = format;
Комментарии:
1. большое спасибо за ответ. я обновил свой вопрос новым кодом, используя предоставленный вами документ. файл pdf был сгенерирован, но без арабского текста
2. Вы читали это syncfusion.com/kb/11198/…