mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-04-05 20:55:01 +08:00
Enable trimming and AOT (#939)
* Enable trimming and AOT analysis for all none-test projects * Try annotating various XmlSerializer related functions with RequiresUnreferencedCode * fix remaining AOT warnings * fix attribute warning message --------- Co-authored-by: Richard Webb <richard.webb@helpsystems.com>
This commit is contained in:
parent
8ca539942d
commit
7db347e9f7
6
src/Directory.Build.targets
Normal file
6
src/Directory.Build.targets
Normal file
@ -0,0 +1,6 @@
|
||||
<Project>
|
||||
<PropertyGroup Condition="'$(IsTestProject)' != 'true'">
|
||||
<IsTrimmable Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">true</IsTrimmable>
|
||||
<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">true</IsAotCompatible>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@ -4,6 +4,7 @@
|
||||
using Content;
|
||||
using DocumentLayoutAnalysis;
|
||||
using System;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.Globalization;
|
||||
using System.Linq;
|
||||
using System.Xml;
|
||||
@ -94,6 +95,9 @@
|
||||
/// </summary>
|
||||
/// <param name="document">The document to extract page layouts from.</param>
|
||||
/// <param name="includePaths">Draw PdfPaths present in the page.</param>
|
||||
#if NET6_0_OR_GREATER
|
||||
[RequiresUnreferencedCode("Members from AltoDocument may be trimmed if not referenced directly")]
|
||||
#endif
|
||||
public string Get(PdfDocument document, bool includePaths = false)
|
||||
{
|
||||
var altoDocument = CreateAltoDocument("unknown");
|
||||
@ -105,6 +109,9 @@
|
||||
/// Get the Alto (XML) string of the page layout. Excludes <see cref="T:UglyToad.PdfPig.Geometry.PdfSubpath" />s.
|
||||
/// </summary>
|
||||
/// <param name="page">The page to export the XML layout for.</param>
|
||||
#if NET6_0_OR_GREATER
|
||||
[RequiresUnreferencedCode("Members from AltoDocument may be trimmed if not referenced directly")]
|
||||
#endif
|
||||
public string Get(Page page) => Get(page, false);
|
||||
|
||||
/// <summary>
|
||||
@ -112,6 +119,9 @@
|
||||
/// </summary>
|
||||
/// <param name="page">The page to export the XML layout for.</param>
|
||||
/// <param name="includePaths">Whether the output should include the PdfPaths present in the page.</param>
|
||||
#if NET6_0_OR_GREATER
|
||||
[RequiresUnreferencedCode("Members from AltoDocument may be trimmed if not referenced directly")]
|
||||
#endif
|
||||
public string Get(Page page, bool includePaths)
|
||||
{
|
||||
var document = CreateAltoDocument("unknown");
|
||||
@ -355,6 +365,9 @@
|
||||
};
|
||||
}
|
||||
|
||||
#if NET6_0_OR_GREATER
|
||||
[RequiresUnreferencedCode("Members from AltoDocument may be trimmed if not referenced directly")]
|
||||
#endif
|
||||
private string Serialize(AltoDocument altoDocument)
|
||||
{
|
||||
var serializer = new XmlSerializer(typeof(AltoDocument));
|
||||
@ -377,6 +390,9 @@
|
||||
/// <summary>
|
||||
/// Deserialize an <see cref="AltoDocument"/> from a given Alto format XML document.
|
||||
/// </summary>
|
||||
#if NET6_0_OR_GREATER
|
||||
[RequiresUnreferencedCode("Members from AltoDocument may be trimmed if not referenced directly")]
|
||||
#endif
|
||||
public static AltoDocument Deserialize(string xmlPath)
|
||||
{
|
||||
var serializer = new XmlSerializer(typeof(AltoDocument));
|
||||
|
@ -4,6 +4,7 @@
|
||||
using Core;
|
||||
using DocumentLayoutAnalysis;
|
||||
using System;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.Linq;
|
||||
using UglyToad.PdfPig.DocumentLayoutAnalysis.PageSegmenter;
|
||||
using UglyToad.PdfPig.Graphics;
|
||||
@ -118,6 +119,9 @@
|
||||
/// Get the hOCR (HTML) string of the page layout. Excludes PdfPaths.
|
||||
/// </summary>
|
||||
/// <param name="page">The page.</param>
|
||||
#if NET6_0_OR_GREATER
|
||||
[RequiresUnreferencedCode("'RequiresUnreferencedCodeAttribute' annotations must match across all interface implementations or overrides.")]
|
||||
#endif
|
||||
public string Get(Page page)
|
||||
{
|
||||
return Get(page, false);
|
||||
|
@ -1,6 +1,7 @@
|
||||
namespace UglyToad.PdfPig.DocumentLayoutAnalysis.Export
|
||||
{
|
||||
using Content;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
/// <summary>
|
||||
/// Exports the page's text into the desired format.
|
||||
@ -12,6 +13,9 @@
|
||||
/// </summary>
|
||||
/// <param name="page">The page to convert to the format.</param>
|
||||
/// <returns>The <see langword="string"/> containing the page contents represented in a compatible format.</returns>
|
||||
#if NET6_0_OR_GREATER
|
||||
[RequiresUnreferencedCode("'RequiresUnreferencedCodeAttribute' annotations must match across all interface implementations or overrides.")]
|
||||
#endif
|
||||
string Get(Page page);
|
||||
}
|
||||
}
|
||||
|
@ -10,6 +10,7 @@
|
||||
using ReadingOrderDetector;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.Linq;
|
||||
using System.Xml;
|
||||
using System.Xml.Serialization;
|
||||
@ -105,6 +106,9 @@
|
||||
/// Get the PAGE-XML (XML) string of the pages layout. Excludes PdfPaths.
|
||||
/// </summary>
|
||||
/// <param name="page"></param>
|
||||
#if NET6_0_OR_GREATER
|
||||
[RequiresUnreferencedCode("Members from PageXmlDocument may be trimmed if not referenced directly")]
|
||||
#endif
|
||||
public string Get(Page page)
|
||||
{
|
||||
return Get(page, false);
|
||||
@ -115,6 +119,9 @@
|
||||
/// </summary>
|
||||
/// <param name="page"></param>
|
||||
/// <param name="includePaths">Draw PdfPaths present in the page.</param>
|
||||
#if NET6_0_OR_GREATER
|
||||
[RequiresUnreferencedCode("Members from PageXmlDocument may be trimmed if not referenced directly")]
|
||||
#endif
|
||||
public string Get(Page page, bool includePaths)
|
||||
{
|
||||
PageXmlData data = new PageXmlData();
|
||||
@ -373,6 +380,9 @@
|
||||
};
|
||||
}
|
||||
|
||||
#if NET6_0_OR_GREATER
|
||||
[RequiresUnreferencedCode("Members from PageXmlDocument may be trimmed if not referenced directly")]
|
||||
#endif
|
||||
private string Serialize(PageXmlDocument pageXmlDocument)
|
||||
{
|
||||
XmlSerializer serializer = new XmlSerializer(typeof(PageXmlDocument));
|
||||
@ -395,6 +405,9 @@
|
||||
/// <summary>
|
||||
/// Deserialize an <see cref="PageXmlDocument"/> from a given PAGE format XML document.
|
||||
/// </summary>
|
||||
#if NET6_0_OR_GREATER
|
||||
[RequiresUnreferencedCode("Members from PageXmlDocument may be trimmed if not referenced directly")]
|
||||
#endif
|
||||
public static PageXmlDocument Deserialize(string xmlPath)
|
||||
{
|
||||
XmlSerializer serializer = new XmlSerializer(typeof(PageXmlDocument));
|
||||
|
@ -2,6 +2,7 @@
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Xml;
|
||||
@ -65,6 +66,9 @@
|
||||
/// <summary>
|
||||
/// Get the page contents as an SVG.
|
||||
/// </summary>
|
||||
#if NET6_0_OR_GREATER
|
||||
[RequiresUnreferencedCode("'RequiresUnreferencedCodeAttribute' annotations must match across all interface implementations or overrides.")]
|
||||
#endif
|
||||
public string Get(Page page)
|
||||
{
|
||||
var builder = new StringBuilder($"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width='{Math.Round(page.Width, Rounding)}' height='{Math.Round(page.Height, Rounding)}'>\n<g transform=\"scale(1, 1) translate(0, 0)\">\n");
|
||||
|
@ -10,6 +10,7 @@ EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C55738D2-3165-4D03-9CE2-10A2E2EEC465}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
.editorconfig = .editorconfig
|
||||
Directory.Build.targets = Directory.Build.targets
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UglyToad.PdfPig.Fonts", "UglyToad.PdfPig.Fonts\UglyToad.PdfPig.Fonts.csproj", "{BBC8F94C-6E94-43FF-AB2E-47FF3C2B999F}"
|
||||
|
Loading…
Reference in New Issue
Block a user