using Compdfkit_Tools.PDFControlUI;
using ComPDFKitViewer.PdfViewer;
using System;
using System.Collections.Generic;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
namespace Compdfkit_Tools.PDFControl
{
public partial class CPDFThumbnailControl : UserControl
{
///
/// PDFViewer
///
private CPDFViewer pdfView;
///
/// Whether the thumbnail has been loaded
///
public bool ThumbLoaded { get; set; }
///
/// A collection of scale factors
///
private int[] thumbnailSize = { 50, 100, 150, 200, 300, 500 };
///
/// Scale factor
///
private int zoomLevel = 2;
///
/// A list of thumbnail data
///
private List thumbnailItemList { get; set; } = new List();
private List cachePageList = new List();
public CPDFThumbnailControl()
{
InitializeComponent();
Loaded += PdfThumbnail_Loaded;
}
///
/// Load completion event
///
private void PdfThumbnail_Loaded(object sender, RoutedEventArgs e)
{
ThumbControl.ViewChanged += ThumbControl_ViewChanged;
ThumbControl.SelectionChanged += ThumbControl_SelectionChanged;
}
///
/// The thumbnail list selects the change event
///
private void ThumbControl_SelectionChanged(object sender, int e)
{
pdfView?.GoToPage(e);
}
///
/// Thumbnail content scrolling events
///
private void ThumbControl_ViewChanged(object sender, ScrollChangedEventArgs e)
{
LoadVisibleThumbs();
}
///
/// Load thumbnails
///
public void LoadThumb()
{
if (pdfView == null || pdfView.Document == null || ThumbLoaded)
{
return;
}
if (pdfView.Document.IsLocked)
{
return;
}
cachePageList.Clear();
pdfView.OnThumbnailGenerated -= OnThumbnailGenerated;
pdfView.OnThumbnailGenerated += OnThumbnailGenerated;
pdfView.RenderCompleted -= PdfView_RenderCompleted;
pdfView.RenderCompleted += PdfView_RenderCompleted;
PopulateThumbnailList();
LoadVisibleThumbs();
}
private void PdfView_RenderCompleted(object sender, KeyValuePair e)
{
if (e.Key == "RenderNum")
{
SelectThumbItemWithoutGoTo(pdfView.CurrentIndex);
}
}
///
/// Set up PDFViewer
///
public void InitWithPDFViewer(CPDFViewer newPDFView)
{
pdfView = newPDFView;
}
///
/// Set the selected thumbnail
///
public void SelectThumbItem(int newIndex)
{
ThumbControl?.SelectItem(newIndex);
}
public void SelectThumbItemWithoutGoTo(int newIndex)
{
ThumbControl?.SelectItemWithoutGoTo(newIndex);
}
private void PopulateThumbnailList()
{
int thumbnailWidth = thumbnailSize[zoomLevel];
thumbnailItemList.Clear();
for (int i = 0; i < pdfView.Document.PageCount; i++)
{
Size pageSize = pdfView.Document.GetPageSize(i);
int imageWidth = 0;
int imageHeight = 0;
if(pageSize.Width>0 && pageSize.Height>0)
{
imageWidth = pageSize.Width > pageSize.Height ? thumbnailWidth * 2 : (int)(pageSize.Width / pageSize.Height * thumbnailWidth * 2);
imageHeight = pageSize.Height > pageSize.Width ? thumbnailWidth * 2 : (int)(pageSize.Height / pageSize.Width * thumbnailWidth * 2);
Image img = new Image()
{
Margin = new Thickness(0, 0, 5, 0),
Width = imageWidth,
Height = imageHeight,
Stretch = Stretch.Uniform,
};
ThumbnailItem addItem = new ThumbnailItem();
addItem.ImageHeight = imageHeight;
addItem.ImageWidth = imageWidth;
addItem.ThumbnailHeight = thumbnailWidth;
addItem.ThumbnailWidth = thumbnailWidth;
addItem.PageIndex = i;
addItem.ImageData = img;
thumbnailItemList.Add(addItem);
}
}
ThumbControl.SetThumbResult(thumbnailItemList);
}
private async void LoadVisibleThumbs()
{
try
{
foreach (ThumbnailItem item in thumbnailItemList)
{
if (ThumbControl.IsItemVisible(item) == false)
{
continue;
}
if (item.ImageData == null || item.ImageData.Source == null)
{
if (cachePageList.Contains(item.PageIndex) == false)
{
cachePageList.Add(item.PageIndex);
await pdfView.GetThumbnail(item.PageIndex, item.ImageWidth, item.ImageHeight);
}
}
}
}
catch (Exception ex)
{
}
}
private void OnThumbnailGenerated(int pageIndex, byte[] thumb, int w, int h)
{
try
{
if (thumbnailItemList != null && thumbnailItemList.Count > pageIndex)
{
PixelFormat fmt = PixelFormats.Bgra32;
BitmapSource bps = BitmapSource.Create(w, h, 96.0, 96.0, fmt, null, thumb, (w * fmt.BitsPerPixel + 7) / 8);
ThumbnailItem thumbItem = thumbnailItemList[pageIndex];
thumbItem.ImageData.Source = bps;
}
}
catch (Exception ex)
{
}
}
private void ThumbControl_SizeChanged(object sender, SizeChangedEventArgs e)
{
LoadVisibleThumbs();
}
private void ThumbControl_MouseWheel(object sender, MouseWheelEventArgs e)
{
if (Keyboard.IsKeyDown(Key.LeftCtrl) || Keyboard.IsKeyDown(Key.RightCtrl))
{
e.Handled = true;
if (e.Delta < 0)
{
zoomLevel = Math.Max(0, --zoomLevel);
}
else
{
zoomLevel = Math.Min(thumbnailSize.Length - 1, ++zoomLevel);
}
LoadThumb();
}
}
}
}