Skip to content

Commit

Permalink
Add export error info, v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
aMytho committed Feb 15, 2024
1 parent 0368353 commit e39a323
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Pages/About.razor
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@* Copyright (C) Jonathan Shull - See license file at github.com/amytho/pdf-acc-toolset *@
@page "/about"
@using Pdf_Acc_Toolset.Services;

<PageTitle>About</PageTitle>

Expand All @@ -8,6 +9,8 @@
About
</h1>

<p>Version @Config.Version</p>

<h2>Purpose</h2>
<p>
The Pdf Acc (Accessibility) Toolset is a utility for making PDFs accessible. It has a variety of tools to assist in the remediation process. Most of them deal with the tag tree. Since many operations are repetitive by nature, they are easily automated. The toolset can also help in setting basic PDF metadata. These features will expand over time to cover more parts of the accessibility process.
Expand Down
11 changes: 11 additions & 0 deletions Pages/Save.razor
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,17 @@
You can choose to run the remaining tasks or just export the file.
</p>

<p class="text-lg mt-4">
If you are having export errors try the below options:
</p>
<ul class="text-lg mt-2 list-disc ml-2">
<li class="mt-2">"Save Changes" during the import process.
This rewrites some of the metadata which can help if it is corrupted.</li>
<li class="mt-2">Convert the PDF to v1.7 or greater. This can be done in Acrobat via the File -> Save As -> Optimized PDF. Select the latest PDF/Acrobat version.</li>
<li class="mt-2">Export the PDF to a non-PDF format. Convert the new file back into a PDF with modern software.</li>
<li class="mt-2">Create a blank PDF in Microsoft Word or Libre Writer. Export to a PDF. Combine this new PDF with the old PDF. Save the file. Remove the new page. This will force a conversion to a newer version.</li>
</ul>

<hr class="w-11/12 text-center m-4">
<h3 class="text-xl">PDF Summary</h3>

Expand Down
2 changes: 1 addition & 1 deletion Services/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ namespace Pdf_Acc_Toolset.Services;

public static class Config
{
public static string Version { get; set; } = "1.0.1";
public static string Version { get; set; } = "1.0.2";

public static string Env { get; set; } = "Development";
}

0 comments on commit e39a323

Please sign in to comment.