12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Threading.Tasks;
- using System.Text;
- using FastReport;
- using FastReport.Utils;
- using FastReport.Export;
- using System.Drawing;
- using System.Drawing.Imaging;
- namespace FastReport.Web.Blazor.Export
- {
- public partial class BlazorExport
- {
- private static string HTMLColor(in Color color)
- {
- return ColorTranslator.ToHtml(color);
- }
- private static string Px(double pixel)
- {
- return ExportUtils.FloatToString(pixel);
- }
- private static string PxClosed(double pixel)
- {
- return Px(pixel) + "px;";
- }
- }
- }
|