123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- 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
- {
- /// <summary>
- /// PDFViewer
- /// </summary>
- private CPDFViewer pdfView;
- /// <summary>
- /// Whether the thumbnail has been loaded
- /// </summary>
- public bool ThumbLoaded { get; set; }
- /// <summary>
- /// A collection of scale factors
- /// </summary>
- private int[] thumbnailSize = { 50, 100, 150, 200, 300, 500 };
- /// <summary>
- /// Scale factor
- /// </summary>
- private int zoomLevel = 2;
- /// <summary>
- /// A list of thumbnail data
- /// </summary>
- private List<ThumbnailItem> thumbnailItemList { get; set; } = new List<ThumbnailItem>();
- private List<int> cachePageList = new List<int>();
- public CPDFThumbnailControl()
- {
- InitializeComponent();
- Loaded += PdfThumbnail_Loaded;
- }
- /// <summary>
- /// Load completion event
- /// </summary>
- private void PdfThumbnail_Loaded(object sender, RoutedEventArgs e)
- {
- ThumbControl.ViewChanged += ThumbControl_ViewChanged;
- ThumbControl.SelectionChanged += ThumbControl_SelectionChanged;
- }
- /// <summary>
- /// The thumbnail list selects the change event
- /// </summary>
- private void ThumbControl_SelectionChanged(object sender, int e)
- {
- pdfView?.GoToPage(e);
- }
- /// <summary>
- /// Thumbnail content scrolling events
- /// </summary>
- private void ThumbControl_ViewChanged(object sender, ScrollChangedEventArgs e)
- {
- LoadVisibleThumbs();
- }
- /// <summary>
- /// Load thumbnails
- /// </summary>
- 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<string, object> e)
- {
- if (e.Key == "RenderNum")
- {
- SelectThumbItemWithoutGoTo(pdfView.CurrentIndex);
- }
- }
- /// <summary>
- /// Set up PDFViewer
- /// </summary>
- public void InitWithPDFViewer(CPDFViewer newPDFView)
- {
- pdfView = newPDFView;
- }
- /// <summary>
- /// Set the selected thumbnail
- /// </summary>
- 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();
- }
- }
- }
- }
|