123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- using compdfkit_tools.PDFControlUI;
- using ComPDFKitViewer.PdfViewer;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Data;
- using System.Windows.Documents;
- using System.Windows.Input;
- using System.Windows.Media;
- using System.Windows.Media.Imaging;
- using System.Windows.Navigation;
- using System.Windows.Shapes;
- namespace compdfkit_tools.PDFControl
- {
- public partial class CPDFThumbnailControl : UserControl
- {
- /// <summary>
- /// PDFViewer
- /// </summary>
- private CPDFViewer pdfView;
- /// <summary>
- /// 缩略图是否加载过
- /// </summary>
- public bool ThumbLoaded { get; set; }
- /// <summary>
- /// 缩放比例集合
- /// </summary>
- private int[] thumbnailSize = { 50, 100, 150, 200, 300, 500 };
- /// <summary>
- /// 缩放系数
- /// </summary>
- private int zoomLevel = 2;
- /// <summary>
- /// 缩略图数据列表
- /// </summary>
- private List<ThumbnailItem> thumbnailItemList { get; set; } = new List<ThumbnailItem>();
- private List<int> cachePageList = new List<int>();
- public CPDFThumbnailControl()
- {
- InitializeComponent();
- Loaded += PdfThumbnail_Loaded;
- }
- /// <summary>
- /// 加载完成事件
- /// </summary>
- private void PdfThumbnail_Loaded(object sender, RoutedEventArgs e)
- {
- ThumbControl.ViewChanged += ThumbControl_ViewChanged;
- ThumbControl.SelectionChanged += ThumbControl_SelectionChanged;
- }
- /// <summary>
- /// 缩略图列表选中更改事件
- /// </summary>
- private void ThumbControl_SelectionChanged(object sender, int e)
- {
- pdfView?.GoToPage(e);
- }
- /// <summary>
- /// 缩略图内容滚动事件
- /// </summary>
- private void ThumbControl_ViewChanged(object sender, ScrollChangedEventArgs e)
- {
- LoadVisibleThumbs();
- }
- /// <summary>
- /// 加载缩略图
- /// </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;
- PopulateThumbnailList();
- LoadVisibleThumbs();
- }
- /// <summary>
- /// 设置PDFViewer
- /// </summary>
- public void InitWithPDFViewer(CPDFViewer newPDFView)
- {
- pdfView = newPDFView;
- }
- 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 = pageSize.Width > pageSize.Height ? thumbnailWidth * 2 : (int)(pageSize.Width / pageSize.Height * thumbnailWidth * 2);
- int 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();
- }
- }
- }
- }
|