Compare commits
18 Commits
335c760260
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
910cb84b09 | ||
|
|
5f3b98cb74 | ||
|
|
965469e1df | ||
|
|
6cf455d37b | ||
|
|
cf506ae3f9 | ||
|
|
5d4509b121 | ||
|
|
266fd83299 | ||
|
|
d18005c6c5 | ||
|
|
667609ce73 | ||
|
|
b99b6fbfed | ||
|
|
1fecc2fb9c | ||
|
|
208c13e0c3 | ||
|
|
90e53f8d31 | ||
|
|
122d54d871 | ||
|
|
f1d1c166bf | ||
|
|
a598c9dbee | ||
|
|
ab9de38b48 | ||
|
|
5e9cdba67a |
@@ -15,7 +15,7 @@ steps:
|
|||||||
pull: if-not-exists
|
pull: if-not-exists
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
dockerfile: Dockerfile.dev
|
dockerfile: Dockerfile
|
||||||
repo: gitea.71dev.com/kamonwantaengsuk/rmutr_report
|
repo: gitea.71dev.com/kamonwantaengsuk/rmutr_report
|
||||||
tags: latest
|
tags: latest
|
||||||
registry: "gitea.71dev.com"
|
registry: "gitea.71dev.com"
|
||||||
|
|||||||
@@ -41,13 +41,11 @@ namespace rmutr_report.Controllers
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (agencyReport.start_date != null && agencyReport.end_date != null)
|
agencyReport.startdate = agencyReport.start_date?.ToString("dd MMMM yyyy",
|
||||||
{
|
CultureInfo.CreateSpecificCulture("th-TH")) ?? "";
|
||||||
agencyReport.startdate = agencyReport.start_date?.ToString("dd MMMM yyyy",
|
|
||||||
CultureInfo.CreateSpecificCulture("th-TH")) ?? "";
|
agencyReport.enddate = agencyReport.end_date?.ToString("dd MMMM yyyy",
|
||||||
agencyReport.enddate = agencyReport.end_date?.ToString("dd MMMM yyyy",
|
CultureInfo.CreateSpecificCulture("th-TH")) ?? "";
|
||||||
CultureInfo.CreateSpecificCulture("th-TH")) ?? "";
|
|
||||||
}
|
|
||||||
|
|
||||||
agencyReport.bool_11_1_text = agencyReport.bool_11_1 == true ? "X" : "";
|
agencyReport.bool_11_1_text = agencyReport.bool_11_1 == true ? "X" : "";
|
||||||
agencyReport.bool_11_2_text = agencyReport.bool_11_2 == true ? "X" : "";
|
agencyReport.bool_11_2_text = agencyReport.bool_11_2 == true ? "X" : "";
|
||||||
|
|||||||
@@ -514,7 +514,7 @@ namespace rmutr_report.Controllers
|
|||||||
ws.Range("B3:F3").Style.Font.SetBold().Font.FontSize = 10;
|
ws.Range("B3:F3").Style.Font.SetBold().Font.FontSize = 10;
|
||||||
ws.Range("B3:F3").Style.Fill.BackgroundColor = XLColor.FromArgb(255, 153, 204);
|
ws.Range("B3:F3").Style.Fill.BackgroundColor = XLColor.FromArgb(255, 153, 204);
|
||||||
ws.Range("B3:F3").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
ws.Range("B3:F3").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||||
ws.Cell("B4").Value = " ปี " + personnel.academic_year_name_th.Substring(2, 2) + " วิทย์";
|
ws.Cell("B4").Value = " ปี " + personnel.academic_year_name_th.Substring(2, 2) + " ผลผลิต ผู้สำเร็จการศึกษาด้านวิทยาศาสตร์และเทคโนโลยี";
|
||||||
ws.Cell("B4").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
ws.Cell("B4").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||||
ws.Cell("B4").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
ws.Cell("B4").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||||
ws.Cell("B4").Style.Font.FontName = "TH SarabunPSK";
|
ws.Cell("B4").Style.Font.FontName = "TH SarabunPSK";
|
||||||
@@ -522,7 +522,7 @@ namespace rmutr_report.Controllers
|
|||||||
ws.Cell("B4").Style.Alignment.WrapText = true;
|
ws.Cell("B4").Style.Alignment.WrapText = true;
|
||||||
ws.Cell("B4").Style.Fill.BackgroundColor = XLColor.FromArgb(255, 153, 204);
|
ws.Cell("B4").Style.Fill.BackgroundColor = XLColor.FromArgb(255, 153, 204);
|
||||||
ws.Cell("B4").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
ws.Cell("B4").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||||
ws.Cell("C4").Value = " ปี " + personnel.academic_year_name_th.Substring(2, 2) + " สังคม";
|
ws.Cell("C4").Value = " ปี " + personnel.academic_year_name_th.Substring(2, 2) + " ผลผลิต ผู้สำเร็จการศึกษาด้านสังคมศาสตร์";
|
||||||
ws.Cell("C4").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
ws.Cell("C4").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||||
ws.Cell("C4").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
ws.Cell("C4").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||||
ws.Cell("C4").Style.Font.FontName = "TH SarabunPSK";
|
ws.Cell("C4").Style.Font.FontName = "TH SarabunPSK";
|
||||||
@@ -530,7 +530,7 @@ namespace rmutr_report.Controllers
|
|||||||
ws.Cell("C4").Style.Alignment.WrapText = true;
|
ws.Cell("C4").Style.Alignment.WrapText = true;
|
||||||
ws.Cell("C4").Style.Fill.BackgroundColor = XLColor.FromArgb(255, 153, 204);
|
ws.Cell("C4").Style.Fill.BackgroundColor = XLColor.FromArgb(255, 153, 204);
|
||||||
ws.Cell("C4").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
ws.Cell("C4").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||||
ws.Cell("D4").Value = " ปี " + personnel.academic_year_name_th.Substring(2, 2) + " บริการวิชาการ";
|
ws.Cell("D4").Value = " ปี " + personnel.academic_year_name_th.Substring(2, 2) + " ผลผลิต ผลงานการให้บริการวิชาการ";
|
||||||
ws.Cell("D4").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
ws.Cell("D4").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||||
ws.Cell("D4").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
ws.Cell("D4").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||||
ws.Cell("D4").Style.Font.FontName = "TH SarabunPSK";
|
ws.Cell("D4").Style.Font.FontName = "TH SarabunPSK";
|
||||||
@@ -538,7 +538,7 @@ namespace rmutr_report.Controllers
|
|||||||
ws.Cell("D4").Style.Alignment.WrapText = true;
|
ws.Cell("D4").Style.Alignment.WrapText = true;
|
||||||
ws.Cell("D4").Style.Fill.BackgroundColor = XLColor.FromArgb(255, 153, 204);
|
ws.Cell("D4").Style.Fill.BackgroundColor = XLColor.FromArgb(255, 153, 204);
|
||||||
ws.Cell("D4").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
ws.Cell("D4").Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||||
ws.Cell("E4").Value = " ปี " + personnel.academic_year_name_th.Substring(2, 2) + " ทำนุบำรุง";
|
ws.Cell("E4").Value = " ปี " + personnel.academic_year_name_th.Substring(2, 2) + " ผลผลิต ผลงานทำนุบำรุงศิลปวัฒนธรรม";
|
||||||
ws.Cell("E4").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
ws.Cell("E4").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||||
ws.Cell("E4").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
ws.Cell("E4").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||||
ws.Cell("E4").Style.Font.FontName = "TH SarabunPSK";
|
ws.Cell("E4").Style.Font.FontName = "TH SarabunPSK";
|
||||||
@@ -698,8 +698,8 @@ namespace rmutr_report.Controllers
|
|||||||
ws.Cell(row, 4).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
ws.Cell(row, 4).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||||
ws.Cell(row, 5).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
ws.Cell(row, 5).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||||
ws.Cell(row, 6).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
ws.Cell(row, 6).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
||||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 6)).Style.Fill.BackgroundColor =
|
ws.Range(ws.Cell(row, 1), ws.Cell(row, 6)).Style.Fill.BackgroundColor =
|
||||||
XLColor.FromArgb(255, 204, 204);
|
XLColor.FromArgb(255, 204, 204);
|
||||||
ws.Cell(row, 1).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
ws.Cell(row, 1).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||||
ws.Cell(row, 2).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
ws.Cell(row, 2).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||||
ws.Cell(row, 3).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
ws.Cell(row, 3).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||||
@@ -3568,7 +3568,42 @@ namespace rmutr_report.Controllers
|
|||||||
|
|
||||||
return Ok();
|
return Ok();
|
||||||
}
|
}
|
||||||
|
[SwaggerOperation("สรุปงบประมาณรายจ่าย V2")]
|
||||||
|
[HttpPost, Route("reports/summary_budget_expense_2/{type}")]
|
||||||
|
[ApiExplorerSettings(GroupName = "reports")]
|
||||||
|
public IActionResult GetBudgetSummaryExpenseReport([FromRoute] string type,
|
||||||
|
[FromBody] summary_budget_expense_report budget)
|
||||||
|
{
|
||||||
|
var summaryBudget = new List<summary_budget_expense_report>() { budget };
|
||||||
|
|
||||||
|
Report report = new Report();
|
||||||
|
report.Load(_setting.report_path + "summary_budget_expense_1.frx");
|
||||||
|
report.RegisterData(summaryBudget, "summary_budget_expense_report");
|
||||||
|
report.Prepare();
|
||||||
|
|
||||||
|
MemoryStream stream = new MemoryStream();
|
||||||
|
switch (type)
|
||||||
|
{
|
||||||
|
case "pdf":
|
||||||
|
PDFExport pdf = new PDFExport();
|
||||||
|
report.Export(pdf, stream);
|
||||||
|
stream.Seek(0, SeekOrigin.Begin);
|
||||||
|
return File(stream, "application/pdf");
|
||||||
|
|
||||||
|
case "xls":
|
||||||
|
case "xlsx":
|
||||||
|
Excel2007Export excel = new Excel2007Export();
|
||||||
|
report.Export(excel, stream);
|
||||||
|
stream.Seek(0, SeekOrigin.Begin);
|
||||||
|
return File(
|
||||||
|
stream,
|
||||||
|
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
||||||
|
"summary_budget_expense_report" + ".xlsx");
|
||||||
|
}
|
||||||
|
|
||||||
|
return Ok();
|
||||||
|
}
|
||||||
|
|
||||||
[SwaggerOperation("ประมาณการรายรับ รายจ่าย")]
|
[SwaggerOperation("ประมาณการรายรับ รายจ่าย")]
|
||||||
[HttpPost, Route("reports/estimate_income_expenses/{type}")]
|
[HttpPost, Route("reports/estimate_income_expenses/{type}")]
|
||||||
[ApiExplorerSettings(GroupName = "reports")]
|
[ApiExplorerSettings(GroupName = "reports")]
|
||||||
@@ -4769,6 +4804,8 @@ namespace rmutr_report.Controllers
|
|||||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 2)).Style.Font.SetBold().Font.FontName =
|
ws.Range(ws.Cell(row, 1), ws.Cell(row, 2)).Style.Font.SetBold().Font.FontName =
|
||||||
"TH SarabunPSK";
|
"TH SarabunPSK";
|
||||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 2)).Style.Font.FontSize = 10;
|
ws.Range(ws.Cell(row, 1), ws.Cell(row, 2)).Style.Font.FontSize = 10;
|
||||||
|
ws.Range(ws.Cell(row, 1), ws.Cell(row, 2)).Style.Fill.BackgroundColor =
|
||||||
|
XLColor.FromArgb(204, 153, 255);
|
||||||
ws.Cell(row, 1).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
ws.Cell(row, 1).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||||
ws.Cell(row, 2).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
ws.Cell(row, 2).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||||
ws.Cell(row, 2).Style.NumberFormat.SetFormat("#,#0");
|
ws.Cell(row, 2).Style.NumberFormat.SetFormat("#,#0");
|
||||||
@@ -4900,6 +4937,8 @@ namespace rmutr_report.Controllers
|
|||||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 2)).Style.Font.SetBold().Font.FontName =
|
ws.Range(ws.Cell(row, 1), ws.Cell(row, 2)).Style.Font.SetBold().Font.FontName =
|
||||||
"TH SarabunPSK";
|
"TH SarabunPSK";
|
||||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 2)).Style.Font.FontSize = 10;
|
ws.Range(ws.Cell(row, 1), ws.Cell(row, 2)).Style.Font.FontSize = 10;
|
||||||
|
ws.Range(ws.Cell(row, 1), ws.Cell(row, 2)).Style.Fill.BackgroundColor =
|
||||||
|
XLColor.FromArgb(255, 255, 204);
|
||||||
ws.Cell(row, 1).Style.Alignment.WrapText = true;
|
ws.Cell(row, 1).Style.Alignment.WrapText = true;
|
||||||
ws.Cell(row, 1).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
ws.Cell(row, 1).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||||
col2 = 2;
|
col2 = 2;
|
||||||
@@ -4909,6 +4948,7 @@ namespace rmutr_report.Controllers
|
|||||||
ws.Cell(row, col2).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
ws.Cell(row, col2).Style.Border.OutsideBorder = XLBorderStyleValues.Thin;
|
||||||
ws.Cell(row, col2).Style.Font.FontName = "TH SarabunPSK";
|
ws.Cell(row, col2).Style.Font.FontName = "TH SarabunPSK";
|
||||||
ws.Cell(row, col2).Style.Font.SetBold().Font.FontSize = 10;
|
ws.Cell(row, col2).Style.Font.SetBold().Font.FontSize = 10;
|
||||||
|
ws.Cell(row, col2).Style.Fill.BackgroundColor = XLColor.FromArgb(255, 255, 204);
|
||||||
ws.Cell(row, col2).Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
ws.Cell(row, col2).Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||||
ws.Cell(row, col2).Style.NumberFormat.SetFormat("#,#0");
|
ws.Cell(row, col2).Style.NumberFormat.SetFormat("#,#0");
|
||||||
ws.Cell(row, col2).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
ws.Cell(row, col2).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ using FastReport.Export.Mht;
|
|||||||
using FastReport.Export.OoXML;
|
using FastReport.Export.OoXML;
|
||||||
using FastReport.Export.Pdf;
|
using FastReport.Export.Pdf;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using OfficeOpenXml;
|
|
||||||
using rmutr_report.Models;
|
using rmutr_report.Models;
|
||||||
using Swashbuckle.AspNetCore.Annotations;
|
using Swashbuckle.AspNetCore.Annotations;
|
||||||
|
|
||||||
|
|||||||
17
Dockerfile
Normal file
17
Dockerfile
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
FROM registry.71dev.com/dotnetsdk:8.0 as build-env
|
||||||
|
WORKDIR /source
|
||||||
|
COPY . .
|
||||||
|
RUN dotnet restore --configfile nuget.config
|
||||||
|
RUN dotnet publish -o /publish --configuration Release
|
||||||
|
FROM registry.71dev.com/dotnetaspnet:8.0
|
||||||
|
WORKDIR /app
|
||||||
|
RUN DEBIAN_FRONTEND=noninteractive apt-get update
|
||||||
|
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends apt-utils
|
||||||
|
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --allow-unauthenticated libc6-dev libgdiplus libx11-dev
|
||||||
|
RUN DEBIAN_FRONTEND=noninteractive rm -rf /var/lib/apt/lists/*
|
||||||
|
COPY --from=build-env /publish .
|
||||||
|
RUN mkdir -p /usr/local/share/fonts/fonts/sarabun
|
||||||
|
COPY Fonts/* /usr/local/share/fonts/sarabun/
|
||||||
|
RUN chmod 644 /usr/local/share/fonts/sarabun/*
|
||||||
|
ENV ASPNETCORE_URLS http://*:8080
|
||||||
|
ENTRYPOINT ["dotnet", "rmutr_report.dll"]
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
FROM registry.71dev.com/dotnetsdk:5.0 as build-env
|
|
||||||
WORKDIR /source
|
|
||||||
COPY . .
|
|
||||||
RUN dotnet restore --configfile nuget.config --disable-parallel
|
|
||||||
RUN dotnet build
|
|
||||||
RUN dotnet publish -o /publish --configuration Release;
|
|
||||||
|
|
||||||
FROM registry.71dev.com/dotnetsdk:5.0
|
|
||||||
COPY . .
|
|
||||||
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y --no-install-recommends apt-utils
|
|
||||||
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --allow-unauthenticated libc6-dev
|
|
||||||
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --allow-unauthenticated libgdiplus
|
|
||||||
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --allow-unauthenticated libx11-dev
|
|
||||||
RUN DEBIAN_FRONTEND=noninteractive rm -rf /var/lib/apt/lists/*
|
|
||||||
RUN mkdir -p /usr/local/share/fonts/fonts/sarabun
|
|
||||||
COPY Fonts/* /usr/local/share/fonts/sarabun/
|
|
||||||
RUN chmod 644 /usr/local/share/fonts/sarabun/*
|
|
||||||
WORKDIR /app
|
|
||||||
COPY --from=build-env /publish .
|
|
||||||
ENV ASPNETCORE_URLS http://*:8080
|
|
||||||
ENTRYPOINT ["dotnet", "rmutr_report.dll"]
|
|
||||||
@@ -3,36 +3,67 @@ using System.Collections.Generic;
|
|||||||
namespace rmutr_report.Models
|
namespace rmutr_report.Models
|
||||||
{
|
{
|
||||||
public class summary_budget_expense
|
public class summary_budget_expense
|
||||||
{
|
{
|
||||||
public string budget_year { get; set; }
|
public string budget_year { get; set; }
|
||||||
public string agency_name_th { get; set; }
|
public string agency_name_th { get; set; }
|
||||||
public string budget_plan_name_th { get; set; }
|
public string budget_plan_name_th { get; set; }
|
||||||
public string parent_agency_name { get; set; }
|
public string parent_agency_name { get; set; }
|
||||||
public List<summary_budget_expense_detail> data { get; set; }
|
public List<summary_budget_expense_detail> data { get; set; }
|
||||||
public decimal? total_equipment { get; set; }
|
public decimal? total_equipment { get; set; }
|
||||||
public decimal? total_land_building { get; set; }
|
public decimal? total_land_building { get; set; }
|
||||||
public decimal? total_subsidy { get; set; }
|
public decimal? total_subsidy { get; set; }
|
||||||
public decimal? total_compensation { get; set; }
|
public decimal? total_compensation { get; set; }
|
||||||
public decimal? total_living_expenses { get; set; }
|
public decimal? total_living_expenses { get; set; }
|
||||||
public decimal? total_material { get; set; }
|
public decimal? total_material { get; set; }
|
||||||
public decimal? total_utilities { get; set; }
|
public decimal? total_utilities { get; set; }
|
||||||
public decimal? total_other_expenses { get; set; }
|
public decimal? total_other_expenses { get; set; }
|
||||||
public decimal? total_other_budget_expenses { get; set; }
|
public decimal? total_other_budget_expenses { get; set; }
|
||||||
public decimal? total_all { get; set; }
|
public decimal? total_all { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class summary_budget_expense_detail
|
public class summary_budget_expense_detail
|
||||||
{
|
{
|
||||||
public string budget_project_name_th { get; set; }
|
public string budget_project_name_th { get; set; }
|
||||||
public decimal? equipment { get; set; }
|
public decimal? equipment { get; set; }
|
||||||
public decimal? land_building { get; set; }
|
public decimal? land_building { get; set; }
|
||||||
public decimal? subsidy { get; set; }
|
public decimal? subsidy { get; set; }
|
||||||
public decimal? compensation { get; set; }
|
public decimal? compensation { get; set; }
|
||||||
public decimal? living_expenses { get; set; }
|
public decimal? living_expenses { get; set; }
|
||||||
public decimal? material { get; set; }
|
public decimal? material { get; set; }
|
||||||
public decimal? utilities { get; set; }
|
public decimal? utilities { get; set; }
|
||||||
public decimal? other_expenses { get; set; }
|
public decimal? other_expenses { get; set; }
|
||||||
public decimal? other_budget_expenses { get; set; }
|
public decimal? other_budget_expenses { get; set; }
|
||||||
public decimal? total { get; set; }
|
public decimal? total { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class summary_budget_expense_report
|
||||||
|
{
|
||||||
|
public string budget_year { get; set; }
|
||||||
|
public string agency_name_th { get; set; }
|
||||||
|
public string budget_plan_name_th { get; set; }
|
||||||
|
public string parent_agency_name { get; set; }
|
||||||
|
public string budget_project_name { get; set; }
|
||||||
|
public List<summary_budget_expense_report_detail> data { get; set; }
|
||||||
|
public decimal? total_equipment { get; set; }
|
||||||
|
public decimal? total_land_building { get; set; }
|
||||||
|
public decimal? total_subsidy_university_staff { get; set; }
|
||||||
|
public decimal? total_subsidy { get; set; }
|
||||||
|
public decimal? total_operating_expenses { get; set; }
|
||||||
|
public decimal? total_other_expenses { get; set; }
|
||||||
|
public decimal? total_other_budget_expenses { get; set; }
|
||||||
|
public decimal? total_all { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class summary_budget_expense_report_detail
|
||||||
|
{
|
||||||
|
public string budget_project_name_th { get; set; }
|
||||||
|
public decimal? equipment { get; set; }
|
||||||
|
public decimal? land_building { get; set; }
|
||||||
|
public decimal? subsidy_university_staff { get; set; }
|
||||||
|
public decimal? subsidy { get; set; }
|
||||||
|
public decimal? operating_expenses { get; set; }
|
||||||
|
public decimal? other_expenses { get; set; }
|
||||||
|
public decimal? other_budget_expenses { get; set; }
|
||||||
|
public decimal? total { get; set; }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
93
Program.cs
93
Program.cs
@@ -1,26 +1,73 @@
|
|||||||
using System;
|
using System.Net;
|
||||||
using System.Collections.Generic;
|
using System.Reflection;
|
||||||
using System.Linq;
|
using Microsoft.AspNetCore.HttpOverrides;
|
||||||
using System.Threading.Tasks;
|
using Microsoft.OpenApi.Models;
|
||||||
using Microsoft.AspNetCore.Hosting;
|
using rmutr_report.Models;
|
||||||
using Microsoft.Extensions.Configuration;
|
using IPNetwork = Microsoft.AspNetCore.HttpOverrides.IPNetwork;
|
||||||
using Microsoft.Extensions.Hosting;
|
|
||||||
using Microsoft.Extensions.Logging;
|
|
||||||
|
|
||||||
namespace rmutr_report
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
|
||||||
|
var configuration = builder.Configuration;
|
||||||
|
var setting = new Setting
|
||||||
{
|
{
|
||||||
public class Program
|
report_path = configuration["Settings:ReportPath"]
|
||||||
{
|
};
|
||||||
public static void Main(string[] args)
|
builder.Services.AddSingleton(setting);
|
||||||
{
|
|
||||||
CreateHostBuilder(args).Build().Run();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static IHostBuilder CreateHostBuilder(string[] args) =>
|
builder.Services.AddControllers();
|
||||||
Host.CreateDefaultBuilder(args)
|
|
||||||
.ConfigureWebHostDefaults(webBuilder =>
|
builder.Services.AddCors(options =>
|
||||||
{
|
{
|
||||||
webBuilder.UseStartup<Startup>();
|
options.AddPolicy("AllowAllOrigins", policy =>
|
||||||
});
|
{
|
||||||
}
|
policy.AllowAnyOrigin().AllowAnyHeader().AllowAnyMethod();
|
||||||
}
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
builder.Services.AddSwaggerGen(c =>
|
||||||
|
{
|
||||||
|
c.SwaggerDoc("reports", new OpenApiInfo { Title = "Reports API", Version = "v1" });
|
||||||
|
c.SwaggerDoc("graph", new OpenApiInfo { Title = "Graph API", Version = "v1" });
|
||||||
|
|
||||||
|
var xmlFile = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml";
|
||||||
|
var xmlPath = Path.Combine(AppContext.BaseDirectory, xmlFile);
|
||||||
|
c.IncludeXmlComments(xmlPath);
|
||||||
|
c.EnableAnnotations();
|
||||||
|
});
|
||||||
|
|
||||||
|
var app = builder.Build();
|
||||||
|
|
||||||
|
app.UseForwardedHeaders(new ForwardedHeadersOptions
|
||||||
|
{
|
||||||
|
ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto,
|
||||||
|
KnownNetworks = { new IPNetwork(IPAddress.Any, 0) }
|
||||||
|
});
|
||||||
|
|
||||||
|
app.UseSwagger(c =>
|
||||||
|
{
|
||||||
|
c.RouteTemplate = "swagger/{documentName}/swagger.json";
|
||||||
|
c.PreSerializeFilters.Add((swaggerDoc, httpReq) =>
|
||||||
|
{
|
||||||
|
if (!httpReq.Headers.ContainsKey("X-Forwarded-Host")) return;
|
||||||
|
|
||||||
|
var serverUrl = $"{httpReq.Headers["X-Scheme"]}://" +
|
||||||
|
$"{httpReq.Headers["X-Forwarded-Host"]}" +
|
||||||
|
$"{httpReq.Headers["X-Forwarded-Prefix"]}";
|
||||||
|
swaggerDoc.Servers = new List<OpenApiServer> { new OpenApiServer { Url = serverUrl } };
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
app.UseSwaggerUI(c =>
|
||||||
|
{
|
||||||
|
c.SwaggerEndpoint("reports/swagger.json", "Reports API v1");
|
||||||
|
c.SwaggerEndpoint("graph/swagger.json", "Graph API v1");
|
||||||
|
c.DefaultModelExpandDepth(0);
|
||||||
|
c.DefaultModelsExpandDepth(-1);
|
||||||
|
});
|
||||||
|
|
||||||
|
app.UseRouting();
|
||||||
|
app.UseAuthorization();
|
||||||
|
app.UseCors("AllowAllOrigins");
|
||||||
|
app.MapControllers();
|
||||||
|
|
||||||
|
app.Run();
|
||||||
|
|||||||
108
Startup.cs
108
Startup.cs
@@ -1,108 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Net;
|
|
||||||
using System.Reflection;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Microsoft.AspNetCore.Builder;
|
|
||||||
using Microsoft.AspNetCore.Hosting;
|
|
||||||
using Microsoft.AspNetCore.HttpOverrides;
|
|
||||||
using Microsoft.AspNetCore.HttpsPolicy;
|
|
||||||
using Microsoft.AspNetCore.Mvc;
|
|
||||||
using Microsoft.Extensions.Configuration;
|
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
|
||||||
using Microsoft.Extensions.Hosting;
|
|
||||||
using Microsoft.Extensions.Logging;
|
|
||||||
using Microsoft.OpenApi.Models;
|
|
||||||
using rmutr_report.Models;
|
|
||||||
|
|
||||||
namespace rmutr_report
|
|
||||||
{
|
|
||||||
public class Startup
|
|
||||||
{
|
|
||||||
public Startup(IConfiguration configuration)
|
|
||||||
{
|
|
||||||
Configuration = configuration;
|
|
||||||
}
|
|
||||||
|
|
||||||
public IConfiguration Configuration { get; }
|
|
||||||
|
|
||||||
public void ConfigureServices(IServiceCollection services)
|
|
||||||
{
|
|
||||||
var _setting = new Setting()
|
|
||||||
{
|
|
||||||
report_path = Configuration["Settings:ReportPath"]
|
|
||||||
|
|
||||||
};
|
|
||||||
services.AddSingleton(_setting);
|
|
||||||
services.AddControllers();
|
|
||||||
|
|
||||||
services.AddSwaggerGen(c =>
|
|
||||||
{
|
|
||||||
c.SwaggerDoc("reports", new OpenApiInfo {Title = "Reports API", Version = "v1"});
|
|
||||||
c.SwaggerDoc("graph", new OpenApiInfo {Title = "Graph API", Version = "v1"});
|
|
||||||
var xmlFile = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml";
|
|
||||||
var xmlPath = Path.Combine(AppContext.BaseDirectory, xmlFile);
|
|
||||||
c.IncludeXmlComments(xmlPath);
|
|
||||||
c.EnableAnnotations();
|
|
||||||
// c.MapType(typeof(TimeSpan?), () => new OpenApiSchema
|
|
||||||
// {
|
|
||||||
// Type = "string",
|
|
||||||
// Example = new OpenApiString("09:30:00")
|
|
||||||
// });
|
|
||||||
});
|
|
||||||
|
|
||||||
services.AddCors(options =>
|
|
||||||
{
|
|
||||||
options.AddPolicy(name: "AllowAllOrigins",
|
|
||||||
builder =>
|
|
||||||
{
|
|
||||||
builder.AllowAnyOrigin().AllowAnyHeader().AllowAnyMethod();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|
||||||
{
|
|
||||||
app.UseForwardedHeaders(new ForwardedHeadersOptions
|
|
||||||
{
|
|
||||||
ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto,
|
|
||||||
KnownNetworks =
|
|
||||||
{
|
|
||||||
new IPNetwork(IPAddress.Any, 0)
|
|
||||||
}
|
|
||||||
});
|
|
||||||
app.UseSwagger(c => {
|
|
||||||
c.RouteTemplate = "swagger/{documentName}/swagger.json";
|
|
||||||
c.PreSerializeFilters.Add((swaggerDoc, httpReq) =>
|
|
||||||
{
|
|
||||||
if (!httpReq.Headers.ContainsKey("X-Forwarded-Host")) return;
|
|
||||||
|
|
||||||
var serverUrl = $"{httpReq.Headers["X-Scheme"]}://" +
|
|
||||||
$"{httpReq.Headers["X-Forwarded-Host"]}" +
|
|
||||||
$"{httpReq.Headers["X-Forwarded-Prefix"]}";
|
|
||||||
swaggerDoc.Servers = new List<OpenApiServer> { new OpenApiServer { Url =serverUrl}};// $"{httpReq.Scheme}://{httpReq.Host.Value}{swaggerBasePath}" } };
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
//Swagger interface
|
|
||||||
app.UseSwaggerUI(c =>
|
|
||||||
{
|
|
||||||
c.SwaggerEndpoint("reports/swagger.json", "Reports API v1");
|
|
||||||
c.SwaggerEndpoint("graph/swagger.json", "Graph API v1");
|
|
||||||
|
|
||||||
c.DefaultModelExpandDepth(0);
|
|
||||||
c.DefaultModelsExpandDepth(-1);
|
|
||||||
});
|
|
||||||
|
|
||||||
app.UseRouting();
|
|
||||||
|
|
||||||
app.UseAuthorization();
|
|
||||||
|
|
||||||
app.UseCors("AllowAllOrigins");
|
|
||||||
|
|
||||||
app.UseEndpoints(endpoints => { endpoints.MapControllers(); });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0/ClosedXML.dll
Normal file
BIN
bin/Debug/net8.0/ClosedXML.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/DocumentFormat.OpenXml.dll
Normal file
BIN
bin/Debug/net8.0/DocumentFormat.OpenXml.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/ExcelNumberFormat.dll
Normal file
BIN
bin/Debug/net8.0/ExcelNumberFormat.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/FastReport.dll
Normal file
BIN
bin/Debug/net8.0/FastReport.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/Humanizer.dll
Normal file
BIN
bin/Debug/net8.0/Humanizer.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
Normal file
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll
Normal file
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.VisualBasic.dll
Normal file
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.VisualBasic.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll
Normal file
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.dll
Normal file
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.OpenApi.dll
Normal file
BIN
bin/Debug/net8.0/Microsoft.OpenApi.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll
Normal file
BIN
bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/Swashbuckle.AspNetCore.Annotations.dll
Normal file
BIN
bin/Debug/net8.0/Swashbuckle.AspNetCore.Annotations.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll
Normal file
BIN
bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
Normal file
BIN
bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
Normal file
BIN
bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Collections.Immutable.dll
Normal file
BIN
bin/Debug/net8.0/System.Collections.Immutable.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Composition.AttributedModel.dll
Normal file
BIN
bin/Debug/net8.0/System.Composition.AttributedModel.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Composition.Convention.dll
Normal file
BIN
bin/Debug/net8.0/System.Composition.Convention.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Composition.Hosting.dll
Normal file
BIN
bin/Debug/net8.0/System.Composition.Hosting.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Composition.Runtime.dll
Normal file
BIN
bin/Debug/net8.0/System.Composition.Runtime.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Composition.TypedParts.dll
Normal file
BIN
bin/Debug/net8.0/System.Composition.TypedParts.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Data.SqlClient.dll
Normal file
BIN
bin/Debug/net8.0/System.Data.SqlClient.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Drawing.Common.dll
Normal file
BIN
bin/Debug/net8.0/System.Drawing.Common.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/System.IO.Packaging.dll
Normal file
BIN
bin/Debug/net8.0/System.IO.Packaging.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/System.IO.Pipelines.dll
Normal file
BIN
bin/Debug/net8.0/System.IO.Pipelines.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Reflection.Metadata.dll
Normal file
BIN
bin/Debug/net8.0/System.Reflection.Metadata.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Security.Permissions.dll
Normal file
BIN
bin/Debug/net8.0/System.Security.Permissions.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Windows.Extensions.dll
Normal file
BIN
bin/Debug/net8.0/System.Windows.Extensions.dll
Normal file
Binary file not shown.
9
bin/Debug/net8.0/appsettings.Development.json
Normal file
9
bin/Debug/net8.0/appsettings.Development.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft": "Warning",
|
||||||
|
"Microsoft.Hosting.Lifetime": "Information"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
14
bin/Debug/net8.0/appsettings.json
Normal file
14
bin/Debug/net8.0/appsettings.json
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"Settings":{
|
||||||
|
"ReportPath":"wwwroot/reports/"
|
||||||
|
|
||||||
|
},
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft": "Warning",
|
||||||
|
"Microsoft.Hosting.Lifetime": "Information"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"AllowedHosts": "*"
|
||||||
|
}
|
||||||
Binary file not shown.
BIN
bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
Normal file
BIN
bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll
Normal file
BIN
bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll
Normal file
BIN
bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll
Normal file
BIN
bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll
Normal file
BIN
bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll
Normal file
BIN
bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll
Normal file
Binary file not shown.
541
bin/Debug/net8.0/font2025.2.8.list
Normal file
541
bin/Debug/net8.0/font2025.2.8.list
Normal file
@@ -0,0 +1,541 @@
|
|||||||
|
Times New Roman-B-I C:\WINDOWS\Fonts\timesbi.ttf
|
||||||
|
Showcard Gothic C:\WINDOWS\Fonts\SHOWG.TTF
|
||||||
|
DilleniaUPC-B C:\WINDOWS\Fonts\upcdb.ttf
|
||||||
|
Sitka Text-I C:\WINDOWS\Fonts\SitkaVF-Italic.ttf
|
||||||
|
Segoe UI Emoji C:\WINDOWS\Fonts\seguiemj.ttf
|
||||||
|
Cordia New-B-I C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\cordiaz.ttf
|
||||||
|
Trebuchet MS-B-I C:\WINDOWS\Fonts\trebucbi.ttf
|
||||||
|
Rockwell-B-I C:\WINDOWS\Fonts\ROCKBI.TTF
|
||||||
|
Bodoni MT Black-I C:\WINDOWS\Fonts\BOD_BLAI.TTF
|
||||||
|
Bookman Old Style C:\WINDOWS\Fonts\BOOKOS.TTF
|
||||||
|
HY궁서B C:\WINDOWS\Fonts\H2GSRB.TTF
|
||||||
|
휴먼모음T C:\WINDOWS\Fonts\HMFMMUEX.TTC
|
||||||
|
游ゴシック-B C:\WINDOWS\Fonts\YuGothB.ttc
|
||||||
|
Lucida Sans Unicode C:\WINDOWS\Fonts\l_10646.ttf
|
||||||
|
Microsoft YaHei C:\WINDOWS\Fonts\msyh.ttc
|
||||||
|
Segoe Script C:\WINDOWS\Fonts\segoesc.ttf
|
||||||
|
YouYuan C:\WINDOWS\Fonts\SIMYOU.TTF
|
||||||
|
Eras Bold ITC C:\WINDOWS\Fonts\ERASBD.TTF
|
||||||
|
Gill Sans Ultra Bold Condensed C:\WINDOWS\Fonts\GILLUBCD.TTF
|
||||||
|
TH Niramit AS Italic C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\TH NiramitIT๙ Italic.ttf
|
||||||
|
Verdana-I C:\WINDOWS\Fonts\verdanai.ttf
|
||||||
|
細明體_MSCS-ExtB C:\WINDOWS\Fonts\mingliub.ttc
|
||||||
|
Yu Gothic-B C:\WINDOWS\Fonts\YuGothB.ttc
|
||||||
|
MT Extra C:\WINDOWS\Fonts\MTEXTRA.TTF
|
||||||
|
TH Sarabun New-I C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\THSarabunNew Italic.ttf
|
||||||
|
Segoe UI Symbol C:\WINDOWS\Fonts\seguisym.ttf
|
||||||
|
Franklin Gothic Medium-I C:\WINDOWS\Fonts\framdit.ttf
|
||||||
|
Dubai Medium C:\WINDOWS\Fonts\DUBAI-MEDIUM.TTF
|
||||||
|
KodchiangUPC-B0 C:\WINDOWS\Fonts\upckbi.ttf
|
||||||
|
Segoe UI Semibold C:\WINDOWS\Fonts\seguisb.ttf
|
||||||
|
맑은 고딕 Semilight C:\WINDOWS\Fonts\malgunsl.ttf
|
||||||
|
Mongolian Baiti C:\WINDOWS\Fonts\monbaiti.ttf
|
||||||
|
TH SarabunPSK C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\THSarabunIT๙ Italic.ttf
|
||||||
|
DilleniaUPC0 C:\WINDOWS\Fonts\upcdl.ttf
|
||||||
|
Segoe UI Black C:\WINDOWS\Fonts\seguibl.ttf
|
||||||
|
Lucida Sans-B-I C:\WINDOWS\Fonts\LSANSDI.TTF
|
||||||
|
Candara-B C:\WINDOWS\Fonts\Candarab.ttf
|
||||||
|
Garamond-I C:\WINDOWS\Fonts\GARAIT.TTF
|
||||||
|
Perpetua Titling MT C:\WINDOWS\Fonts\PERTILI.TTF
|
||||||
|
Franklin Gothic Medium C:\WINDOWS\Fonts\framd.ttf
|
||||||
|
Perpetua-B C:\WINDOWS\Fonts\PERB____.TTF
|
||||||
|
Consolas-I C:\WINDOWS\Fonts\consolai.ttf
|
||||||
|
Calibri Light C:\WINDOWS\Fonts\calibril.ttf
|
||||||
|
Eras Medium ITC C:\WINDOWS\Fonts\ERASMD.TTF
|
||||||
|
Lucida Console C:\WINDOWS\Fonts\lucon.ttf
|
||||||
|
Vladimir Script C:\WINDOWS\Fonts\VLADIMIR.TTF
|
||||||
|
SimSun-ExtG C:\WINDOWS\Fonts\SimsunExtG.ttf
|
||||||
|
SimSun C:\WINDOWS\Fonts\simsun.ttc
|
||||||
|
HYGothic-Extra C:\WINDOWS\Fonts\H2GTRE.TTF
|
||||||
|
Trebuchet MS C:\WINDOWS\Fonts\trebuc.ttf
|
||||||
|
Verdana-B-I C:\WINDOWS\Fonts\verdanaz.ttf
|
||||||
|
TH Niramit AS-B C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\TH Niramit AS-IT๙ Bold Italic.ttf
|
||||||
|
Corbel-B C:\WINDOWS\Fonts\corbelb.ttf
|
||||||
|
HY중고딕 C:\WINDOWS\Fonts\H2GTRM.TTF
|
||||||
|
Forte-I C:\WINDOWS\Fonts\FORTE.TTF
|
||||||
|
Bodoni MT Black Italic-I C:\WINDOWS\Fonts\BOD_BLAI.TTF
|
||||||
|
Dubai-B C:\WINDOWS\Fonts\DUBAI-BOLD.TTF
|
||||||
|
Bodoni MT Condensed-B-I C:\WINDOWS\Fonts\BOD_CBI.TTF
|
||||||
|
Palatino Linotype C:\WINDOWS\Fonts\pala.ttf
|
||||||
|
Stencil C:\WINDOWS\Fonts\STENCIL.TTF
|
||||||
|
Century Schoolbook C:\WINDOWS\Fonts\CENSCBK.TTF
|
||||||
|
Century C:\WINDOWS\Fonts\CENTURY.TTF
|
||||||
|
HY견명조 C:\WINDOWS\Fonts\H2MJRE.TTF
|
||||||
|
华文行楷 C:\WINDOWS\Fonts\STXINGKA.TTF
|
||||||
|
맑은 고딕 C:\WINDOWS\Fonts\malgun.ttf
|
||||||
|
IrisUPC C:\WINDOWS\Fonts\upcii.ttf
|
||||||
|
Century Schoolbook-I C:\WINDOWS\Fonts\SCHLBKI.TTF
|
||||||
|
Modern No. 20 C:\WINDOWS\Fonts\MOD20.TTF
|
||||||
|
Segoe Fluent Icons C:\WINDOWS\Fonts\SegoeIcons.ttf
|
||||||
|
Bookman Old Style-B-I C:\WINDOWS\Fonts\BOOKOSBI.TTF
|
||||||
|
Century Gothic C:\WINDOWS\Fonts\GOTHIC.TTF
|
||||||
|
Bodoni MT-B-I C:\WINDOWS\Fonts\BOD_BI.TTF
|
||||||
|
EucrosiaUPC-B0 C:\WINDOWS\Fonts\upcebi.ttf
|
||||||
|
Lucida Calligraphy-I C:\WINDOWS\Fonts\LCALLIG.TTF
|
||||||
|
AngsanaUPC-B-I C:\WINDOWS\Fonts\angsana.ttc
|
||||||
|
Bodoni MT-I C:\WINDOWS\Fonts\BOD_I.TTF
|
||||||
|
Calisto MT-I C:\WINDOWS\Fonts\CALISTI.TTF
|
||||||
|
Microsoft YaHei UI C:\WINDOWS\Fonts\msyh.ttc
|
||||||
|
Bell MT-B C:\WINDOWS\Fonts\BELLB.TTF
|
||||||
|
TH SarabunPSK Bold Italic-B C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\THSarabunIT๙ BoldItalic.ttf
|
||||||
|
Lucida Bright-B-I C:\WINDOWS\Fonts\LBRITEDI.TTF
|
||||||
|
Ebrima-B C:\WINDOWS\Fonts\ebrimabd.ttf
|
||||||
|
微软雅黑 Light C:\WINDOWS\Fonts\msyhl.ttc
|
||||||
|
Goudy Old Style-B C:\WINDOWS\Fonts\GOUDOSB.TTF
|
||||||
|
LilyUPC0 C:\WINDOWS\Fonts\upcll.ttf
|
||||||
|
Malgun Gothic C:\WINDOWS\Fonts\malgun.ttf
|
||||||
|
Franklin Gothic Book C:\WINDOWS\Fonts\FRABK.TTF
|
||||||
|
DilleniaUPC-B0 C:\WINDOWS\Fonts\upcdbi.ttf
|
||||||
|
FreesiaUPC0 C:\WINDOWS\Fonts\upcfl.ttf
|
||||||
|
CordiaUPC C:\WINDOWS\Fonts\cordia.ttc
|
||||||
|
Microsoft Tai Le C:\WINDOWS\Fonts\taile.ttf
|
||||||
|
Myanmar Text C:\WINDOWS\Fonts\mmrtext.ttf
|
||||||
|
Berlin Sans FB C:\WINDOWS\Fonts\BRLNSR.TTF
|
||||||
|
Microsoft PhagsPa-B C:\WINDOWS\Fonts\phagspab.ttf
|
||||||
|
Century Gothic-I C:\WINDOWS\Fonts\GOTHICI.TTF
|
||||||
|
Chiller C:\WINDOWS\Fonts\CHILLER.TTF
|
||||||
|
Cordia New C:\WINDOWS\Fonts\cordia.ttc
|
||||||
|
Rockwell C:\WINDOWS\Fonts\ROCK.TTF
|
||||||
|
HYPost-Medium C:\WINDOWS\Fonts\H2PORM.TTF
|
||||||
|
Segoe UI Black Italic-I C:\WINDOWS\Fonts\seguibli.ttf
|
||||||
|
微软雅黑-B C:\WINDOWS\Fonts\msyhbd.ttc
|
||||||
|
Century Schoolbook-B-I C:\WINDOWS\Fonts\SCHLBKBI.TTF
|
||||||
|
Headline R C:\WINDOWS\Fonts\HMKMRHD.TTF
|
||||||
|
Arial Narrow-B-I C:\WINDOWS\Fonts\ARIALNBI.TTF
|
||||||
|
Franklin Gothic Demi-I C:\WINDOWS\Fonts\FRADMIT.TTF
|
||||||
|
Harrington C:\WINDOWS\Fonts\HARNGTON.TTF
|
||||||
|
BrowalliaUPC-B-I C:\WINDOWS\Fonts\browalia.ttc
|
||||||
|
Microsoft YaHei UI-B C:\WINDOWS\Fonts\msyhbd.ttc
|
||||||
|
Gill Sans Ultra Bold C:\WINDOWS\Fonts\GILSANUB.TTF
|
||||||
|
Georgia C:\WINDOWS\Fonts\georgia.ttf
|
||||||
|
Bodoni MT Black C:\WINDOWS\Fonts\BOD_BLAR.TTF
|
||||||
|
휴먼옛체 C:\WINDOWS\Fonts\HMFMOLD.TTF
|
||||||
|
Times New Roman00 C:\WINDOWS\Fonts\times.ttf
|
||||||
|
幼圆 C:\WINDOWS\Fonts\SIMYOU.TTF
|
||||||
|
Californian FB C:\WINDOWS\Fonts\CALIFR.TTF
|
||||||
|
Berlin Sans FB Demi-B C:\WINDOWS\Fonts\BRLNSDB.TTF
|
||||||
|
PMingLiU-ExtB C:\WINDOWS\Fonts\mingliub.ttc
|
||||||
|
Trebuchet MS-I C:\WINDOWS\Fonts\trebucit.ttf
|
||||||
|
Lucida Bright-B C:\WINDOWS\Fonts\LBRITED.TTF
|
||||||
|
Yu Gothic UI Semilight C:\WINDOWS\Fonts\YuGothR.ttc
|
||||||
|
Yu Gothic Light C:\WINDOWS\Fonts\YuGothL.ttc
|
||||||
|
Arial Rounded MT Bold C:\WINDOWS\Fonts\ARLRDBD.TTF
|
||||||
|
Malgun Gothic-B C:\WINDOWS\Fonts\malgunbd.ttf
|
||||||
|
TH SarabunPSK Italic C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\THSarabunIT๙ Italic.ttf
|
||||||
|
Times New Roman-I C:\WINDOWS\Fonts\timesi.ttf
|
||||||
|
Blackadder ITC C:\WINDOWS\Fonts\ITCBLKAD.TTF
|
||||||
|
TH Sarabun New-B-I C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\THSarabunNew BoldItalic.ttf
|
||||||
|
Bodoni MT Condensed Italic-I C:\WINDOWS\Fonts\BOD_CI.TTF
|
||||||
|
TH NiramitIT๙ C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\TH NiramitIT๙ Italic.ttf
|
||||||
|
TH Sarabun New C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\THSarabunNew.ttf
|
||||||
|
Cambria-B-I C:\WINDOWS\Fonts\cambriaz.ttf
|
||||||
|
Segoe Script-B C:\WINDOWS\Fonts\segoescb.ttf
|
||||||
|
Franklin Gothic Heavy C:\WINDOWS\Fonts\FRAHV.TTF
|
||||||
|
MS PGothic C:\WINDOWS\Fonts\msgothic.ttc
|
||||||
|
华文新魏 C:\WINDOWS\Fonts\STXINWEI.TTF
|
||||||
|
KodchiangUPC-B C:\WINDOWS\Fonts\upckb.ttf
|
||||||
|
TH SarabunIT๙-B C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\THSarabunIT๙ Bold.ttf
|
||||||
|
Segoe UI Semibold Italic-I C:\WINDOWS\Fonts\seguisbi.ttf
|
||||||
|
方正姚体 C:\WINDOWS\Fonts\FZYTK.TTF
|
||||||
|
Britannic Bold C:\WINDOWS\Fonts\BRITANIC.TTF
|
||||||
|
Cooper Black C:\WINDOWS\Fonts\COOPBL.TTF
|
||||||
|
Comic Sans MS-B C:\WINDOWS\Fonts\comicbd.ttf
|
||||||
|
Segoe UI Semilight-I C:\WINDOWS\Fonts\seguisli.ttf
|
||||||
|
IrisUPC0 C:\WINDOWS\Fonts\upcil.ttf
|
||||||
|
Lucida Sans Typewriter-I C:\WINDOWS\Fonts\LTYPEO.TTF
|
||||||
|
Impact C:\WINDOWS\Fonts\impact.ttf
|
||||||
|
Segoe UI-B C:\WINDOWS\Fonts\segoeuib.ttf
|
||||||
|
Franklin Gothic Heavy-I C:\WINDOWS\Fonts\FRAHVIT.TTF
|
||||||
|
Courier New-B C:\WINDOWS\Fonts\courbd.ttf
|
||||||
|
Baskerville Old Face C:\WINDOWS\Fonts\BASKVILL.TTF
|
||||||
|
Bookman Old Style-B C:\WINDOWS\Fonts\BOOKOSB.TTF
|
||||||
|
FreesiaUPC-B0 C:\WINDOWS\Fonts\upcfbi.ttf
|
||||||
|
IrisUPC-B0 C:\WINDOWS\Fonts\upcibi.ttf
|
||||||
|
MingLiU_HKSCS-ExtB C:\WINDOWS\Fonts\mingliub.ttc
|
||||||
|
Verdana C:\WINDOWS\Fonts\verdana.ttf
|
||||||
|
JasmineUPC0 C:\WINDOWS\Fonts\upcjl.ttf
|
||||||
|
Kunstler Script C:\WINDOWS\Fonts\KUNSTLER.TTF
|
||||||
|
Microsoft Sans Serif C:\WINDOWS\Fonts\micross.ttf
|
||||||
|
Segoe UI Light C:\WINDOWS\Fonts\segoeuil.ttf
|
||||||
|
Nirmala Text-B C:\WINDOWS\Fonts\Nirmala.ttc
|
||||||
|
Segoe UI Semilight C:\WINDOWS\Fonts\segoeuisl.ttf
|
||||||
|
Viner Hand ITC C:\WINDOWS\Fonts\VINERITC.TTF
|
||||||
|
Rockwell-B C:\WINDOWS\Fonts\ROCKB.TTF
|
||||||
|
HY엽서M C:\WINDOWS\Fonts\H2PORM.TTF
|
||||||
|
Palatino Linotype-B C:\WINDOWS\Fonts\palab.ttf
|
||||||
|
Malgun Gothic Semilight C:\WINDOWS\Fonts\malgunsl.ttf
|
||||||
|
Candara C:\WINDOWS\Fonts\Candara.ttf
|
||||||
|
TH Niramit AS Regular C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\TH NiramitIT๙.ttf
|
||||||
|
Yet R C:\WINDOWS\Fonts\HMFMOLD.TTF
|
||||||
|
EucrosiaUPC-B C:\WINDOWS\Fonts\upceb.ttf
|
||||||
|
Monotype Corsiva-I C:\WINDOWS\Fonts\MTCORSVA.TTF
|
||||||
|
Lucida Handwriting-I C:\WINDOWS\Fonts\LHANDW.TTF
|
||||||
|
CordiaUPC-I C:\WINDOWS\Fonts\cordia.ttc
|
||||||
|
Pristina C:\WINDOWS\Fonts\PRISTINA.TTF
|
||||||
|
Agency FB-B C:\WINDOWS\Fonts\AGENCYB.TTF
|
||||||
|
Palatino Linotype-I C:\WINDOWS\Fonts\palai.ttf
|
||||||
|
Arial-B C:\WINDOWS\Fonts\arialbd.ttf
|
||||||
|
Georgia-B C:\WINDOWS\Fonts\georgiab.ttf
|
||||||
|
Cordia New-I0 C:\WINDOWS\Fonts\cordia.ttc
|
||||||
|
BrowalliaUPC-I C:\WINDOWS\Fonts\browalia.ttc
|
||||||
|
HYPost-Light C:\WINDOWS\Fonts\H2PORL.TTF
|
||||||
|
Constantia-I C:\WINDOWS\Fonts\constani.ttf
|
||||||
|
Segoe UI Historic C:\WINDOWS\Fonts\seguihis.ttf
|
||||||
|
Century Gothic-B-I C:\WINDOWS\Fonts\GOTHICBI.TTF
|
||||||
|
Elephant-I C:\WINDOWS\Fonts\ELEPHNTI.TTF
|
||||||
|
Microsoft JhengHei UI Light C:\WINDOWS\Fonts\msjhl.ttc
|
||||||
|
TH SarabunPSK Bold Italic-B0 C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\THSarabunPSK Bold Italic.ttf
|
||||||
|
SimSun-ExtB C:\WINDOWS\Fonts\simsunb.ttf
|
||||||
|
HY그래픽M C:\WINDOWS\Fonts\H2GPRM.TTF
|
||||||
|
Elephant C:\WINDOWS\Fonts\ELEPHNT.TTF
|
||||||
|
Corbel C:\WINDOWS\Fonts\corbel.ttf
|
||||||
|
Tw Cen MT Condensed C:\WINDOWS\Fonts\TCCM____.TTF
|
||||||
|
Sitka Text C:\WINDOWS\Fonts\SitkaVF.ttf
|
||||||
|
Bookshelf Symbol 7 C:\WINDOWS\Fonts\BSSYM7.TTF
|
||||||
|
LilyUPC C:\WINDOWS\Fonts\upcli.ttf
|
||||||
|
TH NiramitIT๙-B C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\TH NiramitIT๙ Bold.ttf
|
||||||
|
Leelawadee-B C:\WINDOWS\Fonts\leelawdb.ttf
|
||||||
|
Corbel Light-I C:\WINDOWS\Fonts\corbelli.ttf
|
||||||
|
Calibri-B-I C:\WINDOWS\Fonts\calibriz.ttf
|
||||||
|
AngsanaUPC-I C:\WINDOWS\Fonts\angsana.ttc
|
||||||
|
Matura MT Script Capitals C:\WINDOWS\Fonts\MATURASC.TTF
|
||||||
|
Lucida Fax C:\WINDOWS\Fonts\LFAX.TTF
|
||||||
|
FreesiaUPC C:\WINDOWS\Fonts\upcfi.ttf
|
||||||
|
Tw Cen MT Condensed-B C:\WINDOWS\Fonts\TCCB____.TTF
|
||||||
|
Nirmala Text Semilight C:\WINDOWS\Fonts\Nirmala.ttc
|
||||||
|
Segoe UI-B-I C:\WINDOWS\Fonts\segoeuiz.ttf
|
||||||
|
Garamond C:\WINDOWS\Fonts\GARA.TTF
|
||||||
|
TH Sarabun New-B C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\THSarabunNew Bold.ttf
|
||||||
|
MingLiU_MSCS-ExtB C:\WINDOWS\Fonts\mingliub.ttc
|
||||||
|
Leelawadee UI-B C:\WINDOWS\Fonts\LeelaUIb.ttf
|
||||||
|
Wingdings0 C:\WINDOWS\Fonts\wingding.ttf
|
||||||
|
French Script MT C:\WINDOWS\Fonts\FRSCRIPT.TTF
|
||||||
|
Sitka Heading Semibold Text C:\WINDOWS\Fonts\SitkaVF.ttf
|
||||||
|
微軟正黑體 Light C:\WINDOWS\Fonts\msjhl.ttc
|
||||||
|
Bodoni MT Condensed Bold Italic-B-I C:\WINDOWS\Fonts\BOD_CBI.TTF
|
||||||
|
TH SarabunPSK Regular0 C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\THSarabunPSK.ttf
|
||||||
|
Script MT Bold C:\WINDOWS\Fonts\SCRIPTBL.TTF
|
||||||
|
Goudy Old Style-I C:\WINDOWS\Fonts\GOUDOSI.TTF
|
||||||
|
Tw Cen MT Condensed Extra Bold C:\WINDOWS\Fonts\TCCEB.TTF
|
||||||
|
MoeumT R C:\WINDOWS\Fonts\HMFMMUEX.TTC
|
||||||
|
Courier New C:\WINDOWS\Fonts\cour.ttf
|
||||||
|
Lucida Sans-B C:\WINDOWS\Fonts\LSANSD.TTF
|
||||||
|
High Tower Text-I C:\WINDOWS\Fonts\HTOWERTI.TTF
|
||||||
|
Bradley Hand ITC C:\WINDOWS\Fonts\BRADHITC.TTF
|
||||||
|
JasmineUPC-B C:\WINDOWS\Fonts\upcjb.ttf
|
||||||
|
Calibri C:\WINDOWS\Fonts\calibri.ttf
|
||||||
|
Segoe UI Semilight Italic-I C:\WINDOWS\Fonts\seguisli.ttf
|
||||||
|
Times New Roman0 C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\times.ttf
|
||||||
|
Cambria Math C:\WINDOWS\Fonts\cambria.ttc
|
||||||
|
Lucida Sans-I C:\WINDOWS\Fonts\LSANSI.TTF
|
||||||
|
HYPMokGak-Bold C:\WINDOWS\Fonts\H2MKPB.TTF
|
||||||
|
TH SarabunPSK Italic0 C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\THSarabunPSK Italic.ttf
|
||||||
|
微軟正黑體 C:\WINDOWS\Fonts\msjh.ttc
|
||||||
|
Arial-B-I C:\WINDOWS\Fonts\arialbi.ttf
|
||||||
|
HYGraphic-Medium C:\WINDOWS\Fonts\H2GPRM.TTF
|
||||||
|
Imprint MT Shadow C:\WINDOWS\Fonts\IMPRISHA.TTF
|
||||||
|
Berlin Sans FB-B C:\WINDOWS\Fonts\BRLNSB.TTF
|
||||||
|
微軟正黑體-B C:\WINDOWS\Fonts\msjhbd.ttc
|
||||||
|
Lucida Bright C:\WINDOWS\Fonts\LBRITE.TTF
|
||||||
|
Bodoni MT Condensed Bold-B C:\WINDOWS\Fonts\BOD_CB.TTF
|
||||||
|
Microsoft JhengHei Light C:\WINDOWS\Fonts\msjhl.ttc
|
||||||
|
Playbill C:\WINDOWS\Fonts\PLAYBILL.TTF
|
||||||
|
Gill Sans MT Ext Condensed Bold C:\WINDOWS\Fonts\GLSNECB.TTF
|
||||||
|
Segoe UI C:\WINDOWS\Fonts\segoeui.ttf
|
||||||
|
MS Gothic C:\WINDOWS\Fonts\msgothic.ttc
|
||||||
|
Californian FB-B C:\WINDOWS\Fonts\CALIFB.TTF
|
||||||
|
Lucida Fax-I C:\WINDOWS\Fonts\LFAXI.TTF
|
||||||
|
Georgia-B-I C:\WINDOWS\Fonts\georgiaz.ttf
|
||||||
|
IrisUPC-B C:\WINDOWS\Fonts\upcib.ttf
|
||||||
|
Algerian C:\WINDOWS\Fonts\ALGER.TTF
|
||||||
|
Wide Latin C:\WINDOWS\Fonts\LATINWD.TTF
|
||||||
|
Symbol C:\WINDOWS\Fonts\symbol.ttf
|
||||||
|
Myanmar Text-B C:\WINDOWS\Fonts\mmrtextb.ttf
|
||||||
|
MS Reference Sans Serif C:\WINDOWS\Fonts\REFSAN.TTF
|
||||||
|
Arial Black C:\WINDOWS\Fonts\ariblk.ttf
|
||||||
|
Segoe Print-B C:\WINDOWS\Fonts\segoeprb.ttf
|
||||||
|
Dubai Light C:\WINDOWS\Fonts\DUBAI-LIGHT.TTF
|
||||||
|
Corbel Light C:\WINDOWS\Fonts\corbell.ttf
|
||||||
|
Tahoma-B C:\WINDOWS\Fonts\tahomabd.ttf
|
||||||
|
Angsana New-B-I C:\WINDOWS\Fonts\angsana.ttc
|
||||||
|
휴먼아미체 C:\WINDOWS\Fonts\HMKMAMI.TTF
|
||||||
|
Franklin Gothic Book-I C:\WINDOWS\Fonts\FRABKIT.TTF
|
||||||
|
Ebrima C:\WINDOWS\Fonts\ebrima.ttf
|
||||||
|
Perpetua C:\WINDOWS\Fonts\PER_____.TTF
|
||||||
|
Gill Sans MT Condensed C:\WINDOWS\Fonts\GILC____.TTF
|
||||||
|
Microsoft JhengHei C:\WINDOWS\Fonts\msjh.ttc
|
||||||
|
Cordia New-B C:\WINDOWS\Fonts\cordia.ttc
|
||||||
|
AlphanumericQR Space C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\AlphanumericQRspace.ttf
|
||||||
|
MS UI Gothic C:\WINDOWS\Fonts\msgothic.ttc
|
||||||
|
Bookman Old Style-I C:\WINDOWS\Fonts\BOOKOSI.TTF
|
||||||
|
Edwardian Script ITC C:\WINDOWS\Fonts\ITCEDSCR.TTF
|
||||||
|
Sans Serif Collection C:\WINDOWS\Fonts\SansSerifCollection.ttf
|
||||||
|
Maiandra GD C:\WINDOWS\Fonts\MAIAN.TTF
|
||||||
|
MS Reference Specialty C:\WINDOWS\Fonts\REFSPCL.TTF
|
||||||
|
Tempus Sans ITC C:\WINDOWS\Fonts\TEMPSITC.TTF
|
||||||
|
Calibri-B C:\WINDOWS\Fonts\calibrib.ttf
|
||||||
|
Book Antiqua-I C:\WINDOWS\Fonts\ANTQUAI.TTF
|
||||||
|
Lucida Fax-B-I C:\WINDOWS\Fonts\LFAXDI.TTF
|
||||||
|
MV Boli-I C:\WINDOWS\Fonts\mvboli.ttf
|
||||||
|
Franklin Gothic Demi C:\WINDOWS\Fonts\FRADM.TTF
|
||||||
|
Eras Light ITC C:\WINDOWS\Fonts\ERASLGHT.TTF
|
||||||
|
CordiaUPC-B-I C:\WINDOWS\Fonts\cordia.ttc
|
||||||
|
Ink Free C:\WINDOWS\Fonts\Inkfree.ttf
|
||||||
|
Calibri-I C:\WINDOWS\Fonts\calibrii.ttf
|
||||||
|
Arial Narrow-I C:\WINDOWS\Fonts\ARIALNI.TTF
|
||||||
|
Arial Narrow Italic-I C:\WINDOWS\Fonts\ARIALNI.TTF
|
||||||
|
Bauhaus 93 C:\WINDOWS\Fonts\BAUHS93.TTF
|
||||||
|
Palace Script MT-I C:\WINDOWS\Fonts\PALSCRI.TTF
|
||||||
|
Old English Text MT C:\WINDOWS\Fonts\OLDENGL.TTF
|
||||||
|
Curlz MT C:\WINDOWS\Fonts\CURLZ___.TTF
|
||||||
|
TH SarabunIT๙ C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\THSarabunIT๙ Italic.ttf
|
||||||
|
Candara Light-I C:\WINDOWS\Fonts\Candarali.ttf
|
||||||
|
Microsoft YaHei Light C:\WINDOWS\Fonts\msyhl.ttc
|
||||||
|
Times New Roman-B C:\WINDOWS\Fonts\timesbd.ttf
|
||||||
|
Engravers MT C:\WINDOWS\Fonts\ENGR.TTF
|
||||||
|
Niagara Engraved C:\WINDOWS\Fonts\NIAGENG.TTF
|
||||||
|
Wingdings C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\wingding.ttf
|
||||||
|
새굴림 C:\WINDOWS\Fonts\NGULIM.TTF
|
||||||
|
Copperplate Gothic Light C:\WINDOWS\Fonts\COPRGTL.TTF
|
||||||
|
Rockwell Extra Bold C:\WINDOWS\Fonts\ROCKEB.TTF
|
||||||
|
휴먼엑스포 C:\WINDOWS\Fonts\HMFMMUEX.TTC
|
||||||
|
MS Pゴシック C:\WINDOWS\Fonts\msgothic.ttc
|
||||||
|
Leelawadee UI Semilight C:\WINDOWS\Fonts\LeelUIsl.ttf
|
||||||
|
Marlett C:\WINDOWS\Fonts\marlett.ttf
|
||||||
|
Comic Sans MS-B-I C:\WINDOWS\Fonts\comicz.ttf
|
||||||
|
Microsoft New Tai Lue C:\WINDOWS\Fonts\ntailu.ttf
|
||||||
|
STXingkai C:\WINDOWS\Fonts\STXINGKA.TTF
|
||||||
|
HY얕은샘물M C:\WINDOWS\Fonts\H2SA1M.TTF
|
||||||
|
Yu Gothic UI C:\WINDOWS\Fonts\YuGothM.ttc
|
||||||
|
Onyx C:\WINDOWS\Fonts\ONYX.TTF
|
||||||
|
Browallia New-B C:\WINDOWS\Fonts\browalia.ttc
|
||||||
|
AngsanaUPC C:\WINDOWS\Fonts\angsana.ttc
|
||||||
|
Tw Cen MT C:\WINDOWS\Fonts\TCM_____.TTF
|
||||||
|
Gill Sans MT-I C:\WINDOWS\Fonts\GILI____.TTF
|
||||||
|
Segoe UI Semibold-I C:\WINDOWS\Fonts\seguisbi.ttf
|
||||||
|
DilleniaUPC C:\WINDOWS\Fonts\upcdi.ttf
|
||||||
|
MS Outlook C:\WINDOWS\Fonts\OUTLOOK.TTF
|
||||||
|
Century Gothic-B C:\WINDOWS\Fonts\GOTHICB.TTF
|
||||||
|
맑은 고딕-B C:\WINDOWS\Fonts\malgunbd.ttf
|
||||||
|
휴먼편지체 C:\WINDOWS\Fonts\HMFMPYUN.TTF
|
||||||
|
Microsoft Uighur-B C:\WINDOWS\Fonts\MSUIGHUB.TTF
|
||||||
|
TH SarabunPSK Bold-B C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\THSarabunIT๙ Bold.ttf
|
||||||
|
Tahoma C:\WINDOWS\Fonts\tahoma.ttf
|
||||||
|
Leelawadee UI C:\WINDOWS\Fonts\LeelawUI.ttf
|
||||||
|
游ゴシック C:\WINDOWS\Fonts\YuGothR.ttc
|
||||||
|
Book Antiqua-B-I C:\WINDOWS\Fonts\ANTQUABI.TTF
|
||||||
|
Gill Sans MT-B C:\WINDOWS\Fonts\GILB____.TTF
|
||||||
|
游ゴシック Light C:\WINDOWS\Fonts\YuGothL.ttc
|
||||||
|
方正舒体 C:\WINDOWS\Fonts\FZSTK.TTF
|
||||||
|
华文中宋 C:\WINDOWS\Fonts\STZHONGS.TTF
|
||||||
|
TH SarabunPSK-B C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\THSarabunIT๙ Bold.ttf
|
||||||
|
Corbel Light Italic-I C:\WINDOWS\Fonts\corbelli.ttf
|
||||||
|
Harlow Solid Italic-I C:\WINDOWS\Fonts\HARLOWSI.TTF
|
||||||
|
Browallia New-B-I C:\WINDOWS\Fonts\browalia.ttc
|
||||||
|
Informal Roman C:\WINDOWS\Fonts\INFROMAN.TTF
|
||||||
|
HYShortSamul-Medium C:\WINDOWS\Fonts\H2SA1M.TTF
|
||||||
|
Cordia New-B-I0 C:\WINDOWS\Fonts\cordia.ttc
|
||||||
|
CordiaUPC-B C:\WINDOWS\Fonts\cordia.ttc
|
||||||
|
Bahnschrift C:\WINDOWS\Fonts\bahnschrift.ttf
|
||||||
|
Arial-I C:\WINDOWS\Fonts\ariali.ttf
|
||||||
|
Segoe UI Black-I C:\WINDOWS\Fonts\seguibli.ttf
|
||||||
|
Microsoft YaHei-B C:\WINDOWS\Fonts\msyhbd.ttc
|
||||||
|
LilyUPC-B C:\WINDOWS\Fonts\upclb.ttf
|
||||||
|
EucrosiaUPC0 C:\WINDOWS\Fonts\upcel.ttf
|
||||||
|
HYMyeongJo-Extra C:\WINDOWS\Fonts\H2MJRE.TTF
|
||||||
|
TH SarabunPSK Bold-B0 C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\THSarabunPSK Bold.ttf
|
||||||
|
Bell MT-I C:\WINDOWS\Fonts\BELLI.TTF
|
||||||
|
Dubai Bold-B C:\WINDOWS\Fonts\DUBAI-BOLD.TTF
|
||||||
|
HY헤드라인M C:\WINDOWS\Fonts\H2HDRM.TTF
|
||||||
|
Segoe UI Light-I C:\WINDOWS\Fonts\seguili.ttf
|
||||||
|
微软雅黑 C:\WINDOWS\Fonts\msyh.ttc
|
||||||
|
Bodoni MT-B C:\WINDOWS\Fonts\BOD_B.TTF
|
||||||
|
Gadugi C:\WINDOWS\Fonts\gadugi.ttf
|
||||||
|
Colonna MT C:\WINDOWS\Fonts\COLONNA.TTF
|
||||||
|
Constantia-B C:\WINDOWS\Fonts\constanb.ttf
|
||||||
|
Bernard MT Condensed C:\WINDOWS\Fonts\BERNHC.TTF
|
||||||
|
Eras Demi ITC C:\WINDOWS\Fonts\ERASDEMI.TTF
|
||||||
|
Bodoni MT Condensed C:\WINDOWS\Fonts\BOD_CR.TTF
|
||||||
|
Freestyle Script C:\WINDOWS\Fonts\FREESCPT.TTF
|
||||||
|
Century Schoolbook-B C:\WINDOWS\Fonts\SCHLBKB.TTF
|
||||||
|
新細明體-ExtB C:\WINDOWS\Fonts\mingliub.ttc
|
||||||
|
Lucida Sans Typewriter-B-I C:\WINDOWS\Fonts\LTYPEBO.TTF
|
||||||
|
Lucida Sans Typewriter-B C:\WINDOWS\Fonts\LTYPEB.TTF
|
||||||
|
Yu Gothic UI-B C:\WINDOWS\Fonts\YuGothB.ttc
|
||||||
|
Garamond-B C:\WINDOWS\Fonts\GARABD.TTF
|
||||||
|
Bodoni MT Condensed-I C:\WINDOWS\Fonts\BOD_CI.TTF
|
||||||
|
Gadugi-B C:\WINDOWS\Fonts\gadugib.ttf
|
||||||
|
KodchiangUPC0 C:\WINDOWS\Fonts\upckl.ttf
|
||||||
|
STXihei C:\WINDOWS\Fonts\STXIHEI.TTF
|
||||||
|
Expo M C:\WINDOWS\Fonts\HMFMMUEX.TTC
|
||||||
|
Trebuchet MS-B C:\WINDOWS\Fonts\trebucbd.ttf
|
||||||
|
Kristen ITC C:\WINDOWS\Fonts\ITCKRIST.TTF
|
||||||
|
TH Niramit AS Bold Italic-B C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\TH Niramit AS-IT๙ Bold Italic.ttf
|
||||||
|
Microsoft Yi Baiti C:\WINDOWS\Fonts\msyi.ttf
|
||||||
|
Bodoni MT Poster Compressed C:\WINDOWS\Fonts\BOD_PSTC.TTF
|
||||||
|
OCR A Extended C:\WINDOWS\Fonts\OCRAEXT.TTF
|
||||||
|
Bodoni MT C:\WINDOWS\Fonts\BOD_R.TTF
|
||||||
|
Corbel-I C:\WINDOWS\Fonts\corbeli.ttf
|
||||||
|
Arial Narrow Bold-B C:\WINDOWS\Fonts\ARIALNB.TTF
|
||||||
|
Candara-B-I C:\WINDOWS\Fonts\Candaraz.ttf
|
||||||
|
Snap ITC C:\WINDOWS\Fonts\SNAP____.TTF
|
||||||
|
Candara Light Italic-I C:\WINDOWS\Fonts\Candarali.ttf
|
||||||
|
Broadway C:\WINDOWS\Fonts\BROADW.TTF
|
||||||
|
Microsoft YaHei UI Light C:\WINDOWS\Fonts\msyhl.ttc
|
||||||
|
High Tower Text C:\WINDOWS\Fonts\HTOWERT.TTF
|
||||||
|
Browallia New-I C:\WINDOWS\Fonts\browalia.ttc
|
||||||
|
Microsoft JhengHei UI C:\WINDOWS\Fonts\msjh.ttc
|
||||||
|
JasmineUPC C:\WINDOWS\Fonts\upcji.ttf
|
||||||
|
FreesiaUPC-B C:\WINDOWS\Fonts\upcfb.ttf
|
||||||
|
Gill Sans MT C:\WINDOWS\Fonts\GIL_____.TTF
|
||||||
|
Wingdings 20 C:\WINDOWS\Fonts\WINGDNG2.TTF
|
||||||
|
Wingdings 3 C:\WINDOWS\Fonts\WINGDNG3.TTF
|
||||||
|
Webdings C:\WINDOWS\Fonts\webdings.ttf
|
||||||
|
Segoe UI-I C:\WINDOWS\Fonts\segoeuii.ttf
|
||||||
|
Centaur C:\WINDOWS\Fonts\CENTAUR.TTF
|
||||||
|
Vivaldi-I C:\WINDOWS\Fonts\VIVALDII.TTF
|
||||||
|
Perpetua-I C:\WINDOWS\Fonts\PERI____.TTF
|
||||||
|
Microsoft JhengHei UI-B C:\WINDOWS\Fonts\msjhbd.ttc
|
||||||
|
Consolas-B C:\WINDOWS\Fonts\consolab.ttf
|
||||||
|
AngsanaUPC-B C:\WINDOWS\Fonts\angsana.ttc
|
||||||
|
Nirmala UI C:\WINDOWS\Fonts\Nirmala.ttc
|
||||||
|
Lucida Bright-I C:\WINDOWS\Fonts\LBRITEI.TTF
|
||||||
|
HY견고딕 C:\WINDOWS\Fonts\H2GTRE.TTF
|
||||||
|
Lucida Sans C:\WINDOWS\Fonts\LSANS.TTF
|
||||||
|
Calisto MT-B C:\WINDOWS\Fonts\CALISTB.TTF
|
||||||
|
Consolas C:\WINDOWS\Fonts\consola.ttf
|
||||||
|
細明體_HKSCS-ExtB C:\WINDOWS\Fonts\mingliub.ttc
|
||||||
|
Calisto MT-B-I C:\WINDOWS\Fonts\CALISTBI.TTF
|
||||||
|
Yu Gothic C:\WINDOWS\Fonts\YuGothR.ttc
|
||||||
|
Ami R C:\WINDOWS\Fonts\HMKMAMI.TTF
|
||||||
|
Niagara Solid C:\WINDOWS\Fonts\NIAGSOL.TTF
|
||||||
|
Dubai C:\WINDOWS\Fonts\DUBAI-REGULAR.TTF
|
||||||
|
Candara-I C:\WINDOWS\Fonts\Candarai.ttf
|
||||||
|
NSimSun C:\WINDOWS\Fonts\simsun.ttc
|
||||||
|
BrowalliaUPC C:\WINDOWS\Fonts\browalia.ttc
|
||||||
|
Microsoft Tai Le-B C:\WINDOWS\Fonts\taileb.ttf
|
||||||
|
Microsoft New Tai Lue-B C:\WINDOWS\Fonts\ntailub.ttf
|
||||||
|
HY신명조 C:\WINDOWS\Fonts\H2MJSM.TTF
|
||||||
|
华文细黑 C:\WINDOWS\Fonts\STXIHEI.TTF
|
||||||
|
游ゴシック Medium C:\WINDOWS\Fonts\YuGothM.ttc
|
||||||
|
Comic Sans MS-I C:\WINDOWS\Fonts\comici.ttf
|
||||||
|
EucrosiaUPC C:\WINDOWS\Fonts\upcei.ttf
|
||||||
|
Mistral C:\WINDOWS\Fonts\MISTRAL.TTF
|
||||||
|
Footlight MT Light C:\WINDOWS\Fonts\FTLTLT.TTF
|
||||||
|
MS ゴシック C:\WINDOWS\Fonts\msgothic.ttc
|
||||||
|
Rage Italic C:\WINDOWS\Fonts\RAGE.TTF
|
||||||
|
Microsoft Uighur C:\WINDOWS\Fonts\MSUIGHUR.TTF
|
||||||
|
Gabriola C:\WINDOWS\Fonts\Gabriola.ttf
|
||||||
|
Yu Gothic UI Semibold-B C:\WINDOWS\Fonts\YuGothB.ttc
|
||||||
|
Segoe UI Light Italic-I C:\WINDOWS\Fonts\seguili.ttf
|
||||||
|
Calibri Light Italic-I C:\WINDOWS\Fonts\calibrili.ttf
|
||||||
|
Comic Sans MS C:\WINDOWS\Fonts\comic.ttf
|
||||||
|
Lucida Sans Typewriter C:\WINDOWS\Fonts\LTYPE.TTF
|
||||||
|
Papyrus C:\WINDOWS\Fonts\PAPYRUS.TTF
|
||||||
|
New Gulim C:\WINDOWS\Fonts\NGULIM.TTF
|
||||||
|
Perpetua-B-I C:\WINDOWS\Fonts\PERBI___.TTF
|
||||||
|
FZShuTi C:\WINDOWS\Fonts\FZSTK.TTF
|
||||||
|
Cordia New-I C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\cordiai.ttf
|
||||||
|
Brush Script MT-I C:\WINDOWS\Fonts\BRUSHSCI.TTF
|
||||||
|
Gloucester MT Extra Condensed C:\WINDOWS\Fonts\GLECB.TTF
|
||||||
|
Segoe UI Variable Light Display Regular C:\WINDOWS\Fonts\SegUIVar.ttf
|
||||||
|
HY목각파임B C:\WINDOWS\Fonts\H2MKPB.TTF
|
||||||
|
MingLiU-ExtB C:\WINDOWS\Fonts\mingliub.ttc
|
||||||
|
HYSinMyeongJo-Medium C:\WINDOWS\Fonts\H2MJSM.TTF
|
||||||
|
HYHeadLine-Medium C:\WINDOWS\Fonts\H2HDRM.TTF
|
||||||
|
Goudy Stout C:\WINDOWS\Fonts\GOUDYSTO.TTF
|
||||||
|
Verdana-B C:\WINDOWS\Fonts\verdanab.ttf
|
||||||
|
Candara Light C:\WINDOWS\Fonts\Candaral.ttf
|
||||||
|
Microsoft JhengHei-B C:\WINDOWS\Fonts\msjhbd.ttc
|
||||||
|
TH Niramit AS C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\TH NiramitIT๙ Italic.ttf
|
||||||
|
Perpetua Titling MT-B C:\WINDOWS\Fonts\PERTIBD.TTF
|
||||||
|
Rockwell Condensed-B C:\WINDOWS\Fonts\ROCCB___.TTF
|
||||||
|
HYGothic-Medium C:\WINDOWS\Fonts\H2GTRM.TTF
|
||||||
|
Nirmala UI-B C:\WINDOWS\Fonts\Nirmala.ttc
|
||||||
|
Pyunji R C:\WINDOWS\Fonts\HMFMPYUN.TTF
|
||||||
|
Georgia-I C:\WINDOWS\Fonts\georgiai.ttf
|
||||||
|
Tw Cen MT-B C:\WINDOWS\Fonts\TCB_____.TTF
|
||||||
|
Nirmala Text C:\WINDOWS\Fonts\Nirmala.ttc
|
||||||
|
Jokerman C:\WINDOWS\Fonts\JOKERMAN.TTF
|
||||||
|
Castellar C:\WINDOWS\Fonts\CASTELAR.TTF
|
||||||
|
Cambria C:\WINDOWS\Fonts\cambria.ttc
|
||||||
|
HY엽서L C:\WINDOWS\Fonts\H2PORL.TTF
|
||||||
|
新宋体 C:\WINDOWS\Fonts\simsun.ttc
|
||||||
|
LiSu C:\WINDOWS\Fonts\SIMLI.TTF
|
||||||
|
Palatino Linotype-B-I C:\WINDOWS\Fonts\palabi.ttf
|
||||||
|
Consolas-B-I C:\WINDOWS\Fonts\consolaz.ttf
|
||||||
|
Segoe MDL2 Assets C:\WINDOWS\Fonts\segmdl2.ttf
|
||||||
|
Microsoft PhagsPa C:\WINDOWS\Fonts\phagspa.ttf
|
||||||
|
FZYaoTi C:\WINDOWS\Fonts\FZYTK.TTF
|
||||||
|
Leelawadee C:\WINDOWS\Fonts\leelawad.ttf
|
||||||
|
Segoe UI Variable C:\WINDOWS\Fonts\SegUIVar.ttf
|
||||||
|
Parchment C:\WINDOWS\Fonts\PARCHM.TTF
|
||||||
|
Tw Cen MT-B-I C:\WINDOWS\Fonts\TCBI____.TTF
|
||||||
|
Arial Narrow Bold Italic-B-I C:\WINDOWS\Fonts\ARIALNBI.TTF
|
||||||
|
휴먼매직체 C:\WINDOWS\Fonts\HMKMMAG.TTF
|
||||||
|
Book Antiqua C:\WINDOWS\Fonts\BKANT.TTF
|
||||||
|
Juice ITC C:\WINDOWS\Fonts\JUICE___.TTF
|
||||||
|
Bodoni MT Condensed-B C:\WINDOWS\Fonts\BOD_CB.TTF
|
||||||
|
Cambria-I C:\WINDOWS\Fonts\cambriai.ttf
|
||||||
|
Constantia-B-I C:\WINDOWS\Fonts\constanz.ttf
|
||||||
|
Dubai Regular C:\WINDOWS\Fonts\DUBAI-REGULAR.TTF
|
||||||
|
隶书 C:\WINDOWS\Fonts\SIMLI.TTF
|
||||||
|
Segoe Print C:\WINDOWS\Fonts\segoepr.ttf
|
||||||
|
Magneto-B C:\WINDOWS\Fonts\MAGNETOB.TTF
|
||||||
|
Californian FB-I C:\WINDOWS\Fonts\CALIFI.TTF
|
||||||
|
Book Antiqua-B C:\WINDOWS\Fonts\ANTQUAB.TTF
|
||||||
|
TH SarabunPSK Regular C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\THSarabunIT๙.ttf
|
||||||
|
Cambria-B C:\WINDOWS\Fonts\cambriab.ttf
|
||||||
|
Gigi C:\WINDOWS\Fonts\GIGI.TTF
|
||||||
|
STZhongsong C:\WINDOWS\Fonts\STZHONGS.TTF
|
||||||
|
STXinwei C:\WINDOWS\Fonts\STXINWEI.TTF
|
||||||
|
Magic R C:\WINDOWS\Fonts\HMKMMAG.TTF
|
||||||
|
TH NiramitIT๙ -B C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\TH Niramit AS-IT๙ Bold Italic.ttf
|
||||||
|
Angsana New-B C:\WINDOWS\Fonts\angsana.ttc
|
||||||
|
Sitka Heading Semibold Italic Text Italic-I C:\WINDOWS\Fonts\SitkaVF-Italic.ttf
|
||||||
|
Calisto MT C:\WINDOWS\Fonts\CALIST.TTF
|
||||||
|
Corbel-B-I C:\WINDOWS\Fonts\corbelz.ttf
|
||||||
|
Goudy Old Style C:\WINDOWS\Fonts\GOUDOS.TTF
|
||||||
|
Ravie C:\WINDOWS\Fonts\RAVIE.TTF
|
||||||
|
Wingdings 2 C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\WINGDNG2.TTF
|
||||||
|
Tw Cen MT-I C:\WINDOWS\Fonts\TCMI____.TTF
|
||||||
|
Sylfaen C:\WINDOWS\Fonts\sylfaen.ttf
|
||||||
|
細明體-ExtB C:\WINDOWS\Fonts\mingliub.ttc
|
||||||
|
Lucida Fax-B C:\WINDOWS\Fonts\LFAXD.TTF
|
||||||
|
Angsana New-I C:\WINDOWS\Fonts\angsana.ttc
|
||||||
|
宋体 C:\WINDOWS\Fonts\simsun.ttc
|
||||||
|
Bahnschrift Light Condensed C:\WINDOWS\Fonts\bahnschrift.ttf
|
||||||
|
Javanese Text C:\WINDOWS\Fonts\javatext.ttf
|
||||||
|
Arial C:\WINDOWS\Fonts\arial.ttf
|
||||||
|
Franklin Gothic Medium Cond C:\WINDOWS\Fonts\FRAMDCN.TTF
|
||||||
|
Constantia C:\WINDOWS\Fonts\constan.ttf
|
||||||
|
Times New Roman C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\Times New Roman Font.ttf
|
||||||
|
Browallia New C:\WINDOWS\Fonts\browalia.ttc
|
||||||
|
Angsana New C:\WINDOWS\Fonts\angsana.ttc
|
||||||
|
BrowalliaUPC-B C:\WINDOWS\Fonts\browalia.ttc
|
||||||
|
LilyUPC-B-I C:\WINDOWS\Fonts\upclbi.ttf
|
||||||
|
JasmineUPC-B0 C:\WINDOWS\Fonts\upcjbi.ttf
|
||||||
|
Haettenschweiler C:\WINDOWS\Fonts\HATTEN.TTF
|
||||||
|
Gill Sans MT-B-I C:\WINDOWS\Fonts\GILBI___.TTF
|
||||||
|
JS Wansika C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\JS-Wansika-Italic.ttf
|
||||||
|
Poor Richard C:\WINDOWS\Fonts\POORICH.TTF
|
||||||
|
Agency FB C:\WINDOWS\Fonts\AGENCYR.TTF
|
||||||
|
Courier New-B-I C:\WINDOWS\Fonts\courbi.ttf
|
||||||
|
Felix Titling C:\WINDOWS\Fonts\FELIXTI.TTF
|
||||||
|
KodchiangUPC C:\WINDOWS\Fonts\upcki.ttf
|
||||||
|
Nirmala UI Semilight C:\WINDOWS\Fonts\Nirmala.ttc
|
||||||
|
휴먼둥근헤드라인 C:\WINDOWS\Fonts\HMKMRHD.TTF
|
||||||
|
Rockwell Condensed C:\WINDOWS\Fonts\ROCC____.TTF
|
||||||
|
Arial Narrow C:\WINDOWS\Fonts\ARIALN.TTF
|
||||||
|
Rockwell-I C:\WINDOWS\Fonts\ROCKI.TTF
|
||||||
|
Calibri Light-I C:\WINDOWS\Fonts\calibrili.ttf
|
||||||
|
Arial Narrow-B C:\WINDOWS\Fonts\ARIALNB.TTF
|
||||||
|
Copperplate Gothic Bold C:\WINDOWS\Fonts\COPRGTB.TTF
|
||||||
|
Franklin Gothic Demi Cond C:\WINDOWS\Fonts\FRADMCN.TTF
|
||||||
|
Microsoft Himalaya C:\WINDOWS\Fonts\himalaya.ttf
|
||||||
|
HYGungSo-Bold C:\WINDOWS\Fonts\H2GSRB.TTF
|
||||||
|
Courier New-I C:\WINDOWS\Fonts\couri.ttf
|
||||||
|
TH Niramit AS Bold-B C:\Users\USER\AppData\Local\Microsoft\Windows\Fonts\TH NiramitIT๙ Bold.ttf
|
||||||
|
Bell MT C:\WINDOWS\Fonts\BELL.TTF
|
||||||
|
Yu Gothic Medium C:\WINDOWS\Fonts\YuGothM.ttc
|
||||||
|
Yu Gothic UI Light C:\WINDOWS\Fonts\YuGothL.ttc
|
||||||
Binary file not shown.
BIN
bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
Normal file
BIN
bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll
Normal file
BIN
bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll
Normal file
BIN
bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll
Normal file
BIN
bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll
Normal file
BIN
bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll
Normal file
BIN
bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll
Normal file
BIN
bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll
Normal file
BIN
bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll
Normal file
Binary file not shown.
7
bin/Debug/net8.0/nuget.config
Normal file
7
bin/Debug/net8.0/nuget.config
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
|
||||||
|
<add key="71dev" value="https://nuget.71dev.com/v3/index.json" />
|
||||||
|
</packageSources>
|
||||||
|
</configuration>
|
||||||
Binary file not shown.
BIN
bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll
Normal file
BIN
bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll
Normal file
BIN
bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll
Normal file
BIN
bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll
Normal file
Binary file not shown.
1073
bin/Debug/net8.0/rmutr_report.deps.json
Normal file
1073
bin/Debug/net8.0/rmutr_report.deps.json
Normal file
File diff suppressed because it is too large
Load Diff
BIN
bin/Debug/net8.0/rmutr_report.dll
Normal file
BIN
bin/Debug/net8.0/rmutr_report.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/rmutr_report.pdb
Normal file
BIN
bin/Debug/net8.0/rmutr_report.pdb
Normal file
Binary file not shown.
19
bin/Debug/net8.0/rmutr_report.runtimeconfig.json
Normal file
19
bin/Debug/net8.0/rmutr_report.runtimeconfig.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net8.0",
|
||||||
|
"frameworks": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "8.0.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.AspNetCore.App",
|
||||||
|
"version": "8.0.0"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configProperties": {
|
||||||
|
"System.GC.Server": true,
|
||||||
|
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
8
bin/Debug/net8.0/rmutr_report.xml
Normal file
8
bin/Debug/net8.0/rmutr_report.xml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<doc>
|
||||||
|
<assembly>
|
||||||
|
<name>rmutr_report</name>
|
||||||
|
</assembly>
|
||||||
|
<members>
|
||||||
|
</members>
|
||||||
|
</doc>
|
||||||
Binary file not shown.
BIN
bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
Normal file
BIN
bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll
Normal file
BIN
bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user