using Paroxe.PdfRenderer.WebGL; using System; using System.Collections.Generic; using Paroxe.PdfRenderer.Internal; using UnityEngine; using System.Collections; // For WebGL namespace Paroxe.PdfRenderer { /// /// Represents a PDF page inside document. /// public sealed class PDFPage : IDisposable, IEquatable, ICoordinatedNativeDisposable { private IntPtr m_NativePointer; private PDFDocument m_Document; private int m_PageIndex; /// /// Rotations are clockwise /// public enum PageRotation { Normal = 0, Rotate90 = 1, Rotate180 = 2, Rotate270 = 3 }; public static PDFJS_Promise LoadPageAsync(PDFDocument document, int pageIndex) { PDFJS_Promise pagePromise = new PDFJS_Promise(); #if UNITY_WEBGL && !UNITY_EDITOR LoadPageParameters parameters = new LoadPageParameters(document, pageIndex); PDFJS_Library.Instance.PreparePromiseCoroutine(LoadPageCoroutine, pagePromise, parameters).Start(); #else pagePromise.HasFinished = true; pagePromise.HasSucceeded = true; pagePromise.HasReceivedJSResponse = true; pagePromise.Result = document.GetPage(pageIndex); #endif return pagePromise; } #if UNITY_WEBGL && !UNITY_EDITOR public PDFPage(PDFDocument document, IntPtr pageHandle, int pageIndex) { if (document == null) throw new ArgumentNullException("document"); if (pageIndex < 0) throw new ArgumentOutOfRangeException("pageIndex"); m_Document = document; m_PageIndex = pageIndex; m_NativePointer = pageHandle; } #endif #if !UNITY_WEBGL || UNITY_EDITOR public PDFPage(PDFDocument document, int pageIndex) { if (document == null) throw new ArgumentNullException("document"); if (pageIndex < 0) throw new ArgumentOutOfRangeException("pageIndex"); m_Document = document; m_PageIndex = pageIndex; PDFLibrary.Instance.DisposeCoordinator.EnsureNativeLibraryIsInitialized(); lock (PDFLibrary.nativeLock) { m_NativePointer = NativeMethods.FPDF_LoadPage(document.NativePointer, m_PageIndex); if (m_NativePointer != IntPtr.Zero) PDFLibrary.Instance.DisposeCoordinator.AddReference(this); } } #endif ~PDFPage() { Close(); } public void Dispose() { Close(); GC.SuppressFinalize(this); } private void Close() { if (m_NativePointer == IntPtr.Zero) return; #if !UNITY_WEBGL || UNITY_EDITOR PDFLibrary.Instance.DisposeCoordinator.RemoveReference(this); #else NativeMethods.PDFJS_ClosePage(m_NativePointer.ToInt32()); #endif m_NativePointer = IntPtr.Zero; } public IntPtr NativePointer { get { return m_NativePointer; } } public PDFDocument Document { get { return m_Document; } } public int PageIndex { get { return m_PageIndex; } } public Vector2 GetPageSize(float scale = 1.0f) { #if !UNITY_WEBGL || UNITY_EDITOR return m_Document.GetPageSize(m_PageIndex) * scale; #else return new Vector2( NativeMethods.PDFJS_GetPageWidth(m_NativePointer.ToInt32(), scale), NativeMethods.PDFJS_GetPageHeight(m_NativePointer.ToInt32(), scale)); #endif } #if UNITY_WEBGL && !UNITY_EDITOR internal static Vector2 GetPageSize(IntPtr pageHandle, float scale = 1.0f) { return new Vector2( NativeMethods.PDFJS_GetPageWidth(pageHandle.ToInt32(), scale), NativeMethods.PDFJS_GetPageHeight(pageHandle.ToInt32(), scale)); } #endif #if !UNITY_WEBGL /// /// Return an instance of PDFTextPage that give access the the current page text content /// /// public PDFTextPage GetTextPage() { return new PDFTextPage(this); } public PDFLink GetLinkAtPoint(Vector2 pagePoint) { IntPtr linkPtr = NativeMethods.FPDFLink_GetLinkAtPoint(m_NativePointer, pagePoint.x, pagePoint.y); if (linkPtr != IntPtr.Zero) return new PDFLink(this, linkPtr); return null; } public PDFLink GetLinkAtPoint(double pageX, double pageY) { IntPtr linkPtr = NativeMethods.FPDFLink_GetLinkAtPoint(m_NativePointer, pageX, pageY); if (linkPtr != IntPtr.Zero) return new PDFLink(this, linkPtr); return null; } public Vector2 DeviceToPage(int startX, int startY, int sizeX, int sizeY, PageRotation rotation, int deviceX, int deviceY) { double pageX; double pageY; NativeMethods.FPDF_DeviceToPage(m_NativePointer, startX, startY, sizeX, sizeY, (int)rotation, deviceX, deviceY, out pageX, out pageY); return new Vector2((float)pageX, (float)pageY); } public Vector2 PageToDevice(int startX, int startY, int sizeX, int sizeY, PageRotation rotation, int pageX, int pageY) { int deviceX; int deviceY; NativeMethods.FPDF_PageToDevice(m_NativePointer, startX, startY, sizeX, sizeY, (int)rotation, pageX, pageY, out deviceX, out deviceY); return new Vector2(deviceX, deviceY); } public Vector2 ConvertPagePositionToUnityUIDevicePosition(Vector2 pagePoint, Vector2 devicePageSize) { pagePoint = pagePoint.x / (devicePageSize.y / devicePageSize.x) * Vector2.right + pagePoint.y * Vector2.up; int device_x; int device_y; NativeMethods.FPDF_PageToDevice(m_NativePointer, 0, 0, (int)devicePageSize.y, (int)devicePageSize.y, 0, pagePoint.x, pagePoint.y, out device_x, out device_y); return new Vector2(device_x, device_y); } public Rect ConvertPageRectToDeviceRect(Rect pageRect, Vector2 devicePageSize) { Vector2 min = ConvertPagePositionToUnityUIDevicePosition(pageRect.min, devicePageSize); float mx = pageRect.max.x; float my = (pageRect.min - (pageRect.max - pageRect.min)).y; Vector2 max = ConvertPagePositionToUnityUIDevicePosition(new Vector2(mx, my), devicePageSize); Rect rect = new Rect(); rect.min = min; rect.max = max; return rect; } public Vector2 ConvertUnityUIDevicePositionToPagePosition(Vector2 devicePoint, Vector2 devicePageSize) { devicePoint = devicePoint.x * (devicePageSize.y / devicePageSize.x) * Vector2.right + devicePoint.y * Vector2.up; double page_x; double page_y; NativeMethods.FPDF_DeviceToPage(m_NativePointer, 0, 0, (int)devicePageSize.y, (int)devicePageSize.y, 0, (int)devicePoint.x, (int)devicePoint.y, out page_x, out page_y); return new Vector2((float)page_x, (float)page_y); } #endif public bool Equals(PDFPage other) { if (other == null) return false; return (m_NativePointer != IntPtr.Zero && m_NativePointer == other.m_NativePointer); } IntPtr ICoordinatedNativeDisposable.NativePointer { get { return NativePointer; } } ICoordinatedNativeDisposable ICoordinatedNativeDisposable.NativeParent { get { return m_Document; } } Action ICoordinatedNativeDisposable.GetDisposeMethod() { #if !UNITY_WEBGL || UNITY_EDITOR return NativeMethods.FPDF_ClosePage; #else return null; #endif } #if UNITY_WEBGL && !UNITY_EDITOR private class LoadPageParameters { public PDFDocument document; public int pageIndex; public LoadPageParameters(PDFDocument document, int pageIndex) { this.document = document; this.pageIndex = pageIndex; } } private static IEnumerator LoadPageCoroutine(PDFJS_PromiseCoroutine promiseCoroutine, IPDFJS_Promise promise, object par) { PDFLibrary.Instance.EnsureInitialized(); while (!PDFLibrary.Instance.IsInitialized) yield return null; PDFJS_Promise pagePromise = promise as PDFJS_Promise; LoadPageParameters parameters = par as LoadPageParameters; NativeMethods.PDFJS_LoadPage(promise.PromiseHandle, parameters.document.NativePointer.ToInt32(), parameters.pageIndex + 1); while (!pagePromise.HasReceivedJSResponse) yield return null; if (pagePromise.HasSucceeded) { int pageHandle = int.Parse(pagePromise.JSObjectHandle); PDFPage page = new PDFPage(parameters.document, new IntPtr(pageHandle), parameters.pageIndex); pagePromise.Result = page; pagePromise.HasFinished = true; promiseCoroutine.ExecuteThenAction(true, page); } else { pagePromise.Result = null; pagePromise.HasFinished = true; promiseCoroutine.ExecuteThenAction(false, null); } } #endif } }