1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- using ComPDFKit.PDFDocument;
- using ComPDFKit.PDFPage;
- using System;
- using System.IO;
- namespace FlattenTest
- {
- internal class FlattenTest
- {
- static private string outputPath = Path.GetDirectoryName(Path.GetDirectoryName(Path.GetDirectoryName(System.IO.Directory.GetCurrentDirectory()))) + "\\Output\\Flatten";
- static void Main(string[] args)
- {
- #region Perparation work
- Console.WriteLine("Running Flatten test sample…\r\n");
- SDKLicenseHelper.LicenseVerify();
- if (!Directory.Exists(outputPath))
- {
- Directory.CreateDirectory(outputPath);
- }
- #endregion
- #region Sample1: Flatten
- CPDFDocument document = CPDFDocument.InitWithFilePath("Annotations.pdf");
- if (Flatten(document))
- {
- Console.WriteLine("Flatten done.");
- }
- else
- {
- Console.WriteLine("Flatten failed.");
- }
- Console.WriteLine("--------------------");
- document.Release();
- #endregion
- Console.WriteLine("Done");
- Console.WriteLine("--------------------");
- Console.ReadLine();
- }
- /// <summary>
- /// Flatten documentation with comments
- /// </summary>
- /// <param name="document">document with many annotation. </param>
- /// <returns></returns>
- static private bool Flatten(CPDFDocument document)
- {
- int annotationCount = 0;
- for (int i = 0; i < document.PageCount; i++)
- {
- CPDFPage page = document.PageAtIndex(i);
- annotationCount += page.GetAnnotCount();
- }
- Console.Write("{0} annotations in the file. ", annotationCount);
- string flattenPath = outputPath + "\\FlattenTest.pdf";
- if (!document.WriteFlattenToFilePath(flattenPath))
- {
- return false;
- }
- Console.WriteLine("Browse the changed file in " + flattenPath);
- //Verify: Check if the number of comments in the new document is 0
- CPDFDocument flattenDocument = CPDFDocument.InitWithFilePath(flattenPath);
- int newCount = 0;
- for (int i = 0; i < flattenDocument.PageCount; i++)
- {
- CPDFPage page = flattenDocument.PageAtIndex(i);
- newCount += page.GetAnnotCount();
- }
- Console.WriteLine("{0} annotations in the new file. ", newCount);
- if (!(newCount == 0))
- {
- return false;
- }
- return true;
- }
- }
- }
|