Skip to content

Commit

Permalink
Merge pull request #28 from datalogics/develop
Browse files Browse the repository at this point in the history
Update main from develop
  • Loading branch information
datalogics-aarroyo authored Apr 11, 2024
2 parents 1850e90 + b3bf46e commit c4e7d30
Show file tree
Hide file tree
Showing 69 changed files with 374 additions and 76 deletions.
188 changes: 188 additions & 0 deletions .github/workflows/test-net-framework-samples.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,188 @@
name: test-samples

on:
pull_request:
push:
branches: [ develop, main ]

jobs:
test-samples:
runs-on: windows-2019
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
dir: [
'Annotations/Annotations/',
'Annotations/InkAnnotations/',
'Annotations/LinkAnnotation/',
'Annotations/PolygonAnnotations/',
'Annotations/PolyLineAnnotations/',
'ContentCreation/AddElements/',
'ContentCreation/AddHeaderFooter/',
'ContentCreation/Clips/',
'ContentCreation/CreateBookmarks/',
'ContentCreation/GradientShade/',
'ContentCreation/MakeDocWithCalGrayColorSpace/',
'ContentCreation/MakeDocWithCalRGBColorSpace/',
'ContentCreation/MakeDocWithDeviceNColorSpace/',
'ContentCreation/MakeDocWithICCBasedColorSpace/',
'ContentCreation/MakeDocWithIndexedColorSpace/',
'ContentCreation/MakeDocWithLabColorSpace/',
'ContentCreation/MakeDocWithSeparationColorSpace/',
'ContentCreation/NameTrees/',
'ContentCreation/NumberTrees/',
'ContentCreation/RemoteGoToActions/',
'ContentCreation/WriteNChannelTiff/',
'ContentModification/Action/',
'ContentModification/AddCollection/',
'ContentModification/ChangeLayerConfiguration/',
'ContentModification/ChangeLinkColors/',
'ContentModification/CreateLayer/',
'ContentModification/ExtendedGraphicStates/',
'ContentModification/FlattenTransparency/',
'ContentModification/LaunchActions/',
'ContentModification/MergePDF/',
'ContentModification/PageLabels/',
'ContentModification/PDFObject/',
'ContentModification/UnderlinesAndHighlights/',
'ContentModification/Watermark/',
'Display/DisplayPDF/',
'Display/DotNETViewer/',
'Display/DotNETViewerComponent/',
'Display/PDFObjectExplorer/',
'DocumentConversion/ColorConvertDocument/',
'DocumentConversion/ConvertToOffice/',
'DocumentConversion/CreateDocFromXPS/',
'DocumentConversion/Factur-XConverter/',
'DocumentConversion/PDFAConverter/',
'DocumentConversion/PDFXConverter/',
'DocumentConversion/ZUGFeRDConverter/',
'DocumentOptimization/PDFOptimize/',
'Images/DocToImages/',
'Images/DrawSeparations/',
'Images/DrawToBitmap/',
'Images/EPSSeparations/',
'Images/GetSeparatedImages/',
'Images/ImageEmbedICCProfile/',
'Images/ImageExport/',
'Images/ImageExtraction/',
'Images/ImageFromStream/',
'Images/ImageImport/',
'Images/ImageResampling/',
'Images/ImageSoftMask/',
'Images/OutputPreview/',
'Images/RasterizePage/',
'InformationExtraction/ListBookmarks/',
'InformationExtraction/ListInfo/',
'InformationExtraction/ListLayers/',
'InformationExtraction/ListPaths/',
'InformationExtraction/Metadata/',
'OpticalCharacterRecognition/AddTextToDocument/',
'OpticalCharacterRecognition/AddTextToImage/',
'Other/MemoryFileSystem/',
'Other/StreamIO/',
'Printing/PrintPDF/',
'Printing/PrintPDFGUI/',
'Security/AddRegexRedaction/',
'Security/Redactions/',
'Text/AddGlyphs/',
'Text/AddUnicodeText/',
'Text/AddVerticalText/',
'Text/ExtractAcroFormFieldData/',
'Text/ExtractCJKTextByPatternMatch/',
'Text/ExtractTextByPatternMatch/',
'Text/ExtractTextByRegion/',
'Text/ExtractTextFromAnnotations/',
'Text/ExtractTextFromMultiRegions/',
'Text/ExtractTextPreservingStyleAndPositionInfo/',
'Text/ListWords/',
'Text/RegexExtractText/',
'Text/RegexTextSearch/',
'Text/TextExtract/'
]

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2

- name: Print PATH variable
run: echo $PATH

- name: Setup NuGet.exe
uses: nuget/setup-nuget@v2

- name: Install NuGet packages
working-directory: ${{ matrix.dir }}
run: |
sample_name=$(basename "$PWD")
echo "Installing NuGet packages..."
if [ "$sample_name" == "DotNETViewer" ]; then
nuget.exe restore ../DotNETViewerComponent/DotNETViewerComponent.csproj
nuget.exe restore $sample_name.csproj
else
nuget.exe restore $sample_name.csproj
fi
- name: Build samples
working-directory: ${{ matrix.dir }}
run: |
sample_name=$(basename "$PWD")
echo "Building $sample_name sample..."
if [ "$sample_name" == "DotNETViewer" ]; then
msbuild.exe ../DotNETViewerComponent/DotNETViewerComponent.csproj //p:Configuration=Release //p:Platform=x64
msbuild.exe $sample_name.csproj //p:Configuration=Release //p:Platform=x64
else
msbuild.exe $sample_name.csproj //p:Configuration=Release //p:Platform=x64
fi
- name: Run samples
working-directory: ${{ matrix.dir }}
run: |
sample_name=$(basename "$PWD")
if [ "$sample_name" != "PrintPDF" ] && [ "$sample_name" != "PrintPDFGUI" ] && [ "$sample_name" != "DisplayPDF" ] && [ "$sample_name" != "DotNETViewer" ] && [ "$sample_name" != "DotNETViewerComponent" ] && [ "$sample_name" != "PDFObjectExplorer" ]; then
if [ "$sample_name" == "DocToImages" ]; then
bin/Release/$sample_name.exe -format=png $HOME/.nuget/packages/adobe.pdf.library.sampleinput/1.0.0/build/Resources/Sample_Input/ducky.pdf
else
bin/Release/$sample_name.exe
fi
else
echo "$sample_name will not be run due to GitHub runner limitations."
fi
- name: Set sample_name variable
id: set-sample-name
working-directory: ${{matrix.dir}}
run: echo "SAMPLE_NAME=$(basename "$PWD")" >> "$GITHUB_ENV"

- name: Save artifacts
uses: actions/upload-artifact@v4
with:
name: output-${{ env.SAMPLE_NAME }}
path: |
${{matrix.dir}}*.docx
${{matrix.dir}}*.xslx
${{matrix.dir}}*.pptx
${{matrix.dir}}*.pdf
${{matrix.dir}}*.tif
${{matrix.dir}}*.png
${{matrix.dir}}*.jpg
${{matrix.dir}}*.eps
${{matrix.dir}}*.tiff
${{matrix.dir}}*.bmp
${{matrix.dir}}*.gif
${{matrix.dir}}*.json
${{matrix.dir}}*.txt
${{matrix.dir}}*.csv
- name: List files
run: |
ls ${{matrix.dir}}
4 changes: 2 additions & 2 deletions Annotations/InkAnnotations/InkAnnotations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ static void Main(string[] args)

// Update the page's content and save the file with clipping
page.UpdateContent();
doc.Save(SaveFlags.Full, "../InkAnnotations-out1.pdf");
doc.Save(SaveFlags.Full, "InkAnnotations-out1.pdf");
Console.WriteLine("Saved InkAnnotations-out1.pdf");

// Remove 0th scribble
Expand All @@ -123,7 +123,7 @@ static void Main(string[] args)

// Update the page's content and save the file with clipping
page.UpdateContent();
doc.Save(SaveFlags.Full, "../InkAnnotations-out2.pdf");
doc.Save(SaveFlags.Full, "InkAnnotations-out2.pdf");

// Kill the doc object
doc.Dispose();
Expand Down
2 changes: 1 addition & 1 deletion Annotations/LinkAnnotation/LinkAnnotation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ static void Main(string[] args)
Console.WriteLine("Initialized the library.");

String sInput = Library.ResourceDirectory + "Sample_Input/sample.pdf";
String sOutput = "../LinkAnnotation-out.pdf";
String sOutput = "LinkAnnotation-out.pdf";

if (args.Length > 0)
sInput = args[0];
Expand Down
2 changes: 1 addition & 1 deletion Annotations/PolyLineAnnotations/PolyLineAnnotations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ static void Main(string[] args)
{
Console.WriteLine("Initialized the library.");

String sOutput = "../PolyLineAnnotations-out.pdf";
String sOutput = "PolyLineAnnotations-out.pdf";

if (args.Length > 0)
sOutput = args[0];
Expand Down
2 changes: 1 addition & 1 deletion Annotations/PolygonAnnotations/PolygonAnnotations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ static void Main(string[] args)
{
Console.WriteLine("Initialized the library.");

String sOutput = "../PolygonAnnotations-out.pdf";
String sOutput = "PolygonAnnotations-out.pdf";

if (args.Length > 0)
sOutput = args[0];
Expand Down
2 changes: 1 addition & 1 deletion ContentCreation/AddElements/AddElements.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ static void Main(string[] args)
{
Console.WriteLine("Initialized the library.");

String sOutput = "../AddElements-out.pdf";
String sOutput = "AddElements-out.pdf";

if (args.Length > 0)
sOutput = args[0];
Expand Down
2 changes: 1 addition & 1 deletion ContentCreation/AddHeaderFooter/AddHeaderFooter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ static void Main(string[] args)
{
Console.WriteLine("Initialized the library.");

String sOutput = "../AddHeaderFooter-out.pdf";
String sOutput = "AddHeaderFooter-out.pdf";

Console.WriteLine("Output file: " + sOutput);

Expand Down
2 changes: 1 addition & 1 deletion ContentCreation/Clips/Clips.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ static void Main(string[] args)
{
Console.WriteLine("Initialized the library.");

String sOutput = "../Clips-out.pdf";
String sOutput = "Clips-out.pdf";

if (args.Length > 0)
sOutput = args[0];
Expand Down
2 changes: 1 addition & 1 deletion ContentCreation/CreateBookmarks/CreateBookmarks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ static void Main(string[] args)
Console.WriteLine("Initialized the library.");

String sInput = Library.ResourceDirectory + "Sample_Input/sample.pdf";
String sOutput = "../Bookmark-out.pdf";
String sOutput = "Bookmark-out.pdf";

if (args.Length > 0)
sInput = args[0];
Expand Down
2 changes: 1 addition & 1 deletion ContentCreation/GradientShade/GradientShade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ static void Main(string[] args)
{
Console.WriteLine("Initialized the library.");

String sOutput = "../GradientShade-out.pdf";
String sOutput = "GradientShade-out.pdf";

if (args.Length > 0)
sOutput = args[0];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ static void Main(string[] args)
using (Library lib = new Library())
{

String sOutput = "../CalGray-out.pdf";
String sOutput = "CalGray-out.pdf";

if (args.Length > 0)
sOutput = args[0];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ static void Main(string[] args)
{
using (Library lib = new Library())
{
String sOutput = "../CalRGB-out.pdf";
String sOutput = "CalRGB-out.pdf";

if (args.Length > 0)
sOutput = args[0];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ static void Main(string[] args)
{
using (Library lib = new Library())
{
String sOutput = "../DeviceN-out.pdf";
String sOutput = "DeviceN-out.pdf";

if (args.Length > 0)
sOutput = args[0];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ static void Main(string[] args)
{

String sInput = Library.ResourceDirectory + "Sample_Input/sRGB_IEC61966-2-1_noBPC.icc";
String sOutput = "../ICCBased-out.pdf";
String sOutput = "ICCBased-out.pdf";

if (args.Length > 0)
sInput = args[0];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ static void Main(string[] args)
using (Library lib = new Library())
{

String sOutput = "../Indexed-out.pdf";
String sOutput = "Indexed-out.pdf";

if (args.Length > 0)
sOutput = args[0];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ static void Main(string[] args)
using (Library lib = new Library())
{

String sOutput = "../Lab-out.pdf";
String sOutput = "Lab-out.pdf";

if (args.Length > 0)
sOutput = args[0];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ static void Main(string[] args)
using (Library lib = new Library())
{

String sOutput = "../Separation-out.pdf";
String sOutput = "Separation-out.pdf";

if (args.Length > 0)
sOutput = args[0];
Expand Down
2 changes: 1 addition & 1 deletion ContentCreation/RemoteGoToActions/RemoteGoToActions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ static void Main(string[] args)
{

String sFileSpec = Library.ResourceDirectory + "Sample_Input/ducky.pdf";
String sOutput = "../RemoteGoToActions-out.pdf";
String sOutput = "RemoteGoToActions-out.pdf";

if (args.Length > 0)
sFileSpec = args[0];
Expand Down
2 changes: 1 addition & 1 deletion ContentCreation/WriteNChannelTiff/WriteNChannelTiff.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ static void Main(string[] args)
Console.WriteLine("Initialized the library.");

String sInput = Library.ResourceDirectory + "Sample_Input/sample.pdf";
String sOutput = "../WriteNChannelTiff-out.tif";
String sOutput = "WriteNChannelTiff-out.tif";

if(args.Length > 0)
sInput = args[0];
Expand Down
2 changes: 1 addition & 1 deletion ContentModification/Action/Action.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ static void Main(string[] args)

using (Library lib = new Library())
{
String sOutput = "../Action-out.pdf";
String sOutput = "Action-out.pdf";

Console.WriteLine("Initialized the library.");

Expand Down
2 changes: 1 addition & 1 deletion ContentModification/AddCollection/AddCollection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ static void Main(string[] args)
Console.WriteLine("Initialized the library.");

String sInput = Library.ResourceDirectory + "Sample_Input/Attachments.pdf";
String sOutput = "../Portfolio.pdf";
String sOutput = "Portfolio.pdf";

if (args.Length > 0)
sInput = args[0];
Expand Down
Loading

0 comments on commit c4e7d30

Please sign in to comment.