File: IPdfPage.cs
Web Access
Project: src\src\Graphics\src\Graphics\Graphics.csproj (Microsoft.Maui.Graphics)
using System;
using System.IO;
using System.Threading.Tasks;
 
namespace Microsoft.Maui.Graphics
{
	public interface IPdfPage : IDrawable, IDisposable
	{
		float Width { get; }
		float Height { get; }
		int PageNumber { get; }
 
		void Save(Stream stream);
		Task SaveAsync(Stream stream);
	}
}