123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023 |
- using Prism.Commands;
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Media;
- using System.Windows;
- using PDF_Master.Model.PropertyPanel.AnnotPanel;
- using System.Windows.Controls;
- using Prism.Regions;
- using ComPDFKitViewer.PdfViewer;
- using PDF_Master.Model;
- using Microsoft.Win32;
- using PDF_Master.CustomControl;
- using ComPDFKitViewer;
- using System.Windows.Input;
- using PDF_Master.Helper;
- using ComPDFKitViewer.AnnotEvent;
- using System.ComponentModel;
- using System.IO;
- using System.Drawing;
- using System.Drawing.Imaging;
- using PDF_Master.EventAggregators;
- using Prism.Events;
- using System.Windows.Media.Imaging;
- using PDFReader_WPF.Helper;
- using PDF_Master.Properties;
- using PDF_Master.Model.AnnotPanel;
- using System.Diagnostics;
- using ComPDFKit.PDFPage.Edit;
- using ComPDFKit.PDFPage;
- using PDFSettings;
- namespace PDF_Master.ViewModels.Tools
- {
- public class TextEditToolContentViewModel : BindableBase, INavigationAware
- {
- #region 属性与变量
- /// <summary>
- /// 本地配置中的编辑属性
- /// </summary>
- private PDFEditEvent pdfDefaultEditEvent;
- public ViewContentViewModel viewContentViewModel;
- private CPDFViewer PDFViewer;
- private IEventAggregator events;
- private IRegionManager regions;
- /// <summary>
- /// 用于区分事件的唯一码
- /// </summary>
- private string unicode;
- private Dictionary<string, string> btnToProperty = new Dictionary<string, string>();
- private bool _isTextEdit = false;
- public bool IsTextEdit
- {
- get { return _isTextEdit; }
- set
- {
- SetProperty(ref _isTextEdit, value);
- }
- }
- private bool _isImgEdit = false;
- public bool IsImgEdit
- {
- get { return _isImgEdit; }
- set
- {
- SetProperty(ref _isImgEdit, value);
- }
- }
- private bool _flg = false;
- public bool flg
- {
- get { return _flg; }
- set { SetProperty(ref _flg, value); }
- }
- /// <summary>
- /// 替换图片指令
- /// </summary>
- private bool _ReplaceImgflg = false;
- public bool ReplaceImgflg
- {
- get { return _ReplaceImgflg; }
- set { SetProperty(ref _ReplaceImgflg, value); }
- }
- /// <summary>
- /// 完成裁剪图片指令
- /// </summary>
- private bool _CropImgflg = false;
- public bool CropImgflg
- {
- get { return _CropImgflg; }
- set { SetProperty(ref _CropImgflg, value); }
- }
- /// <summary>
- /// 刷新预览图片指令
- /// </summary>
- private bool _REImgflg = false;
- public bool REImgflg
- {
- get { return _REImgflg; }
- set { SetProperty(ref _REImgflg, value); }
- }
- #endregion 属性与变量
- #region Command
- // 添加文本、图像
- public DelegateCommand<object> AddContentCommand { get; set; }
- public DelegateCommand AddTextCommand { get; set; }
- public DelegateCommand AddImgCommand { get; set; }
- public DelegateCommand EditTextModeCommand { get; set; }
- #endregion Command
- #region 初始化
- public TextEditToolContentViewModel(IRegionManager regionManager, IEventAggregator eventAggregator)
- {
- events = eventAggregator;
- unicode = App.mainWindowViewModel.SelectedItem.Unicode;
- regions = regionManager;
- InitCommand();
- InitBtnToProperty();
- }
- private void InitCommand()
- {
- AddContentCommand = new DelegateCommand<object>(AddContent);
- AddTextCommand = new DelegateCommand(AddText);
- AddImgCommand = new DelegateCommand(AddImg);
- EditTextModeCommand = new DelegateCommand(EditTextMode);
- }
- private void InitBtnToProperty()
- {
- btnToProperty.Add("Text", "TextEditProperty");
- btnToProperty.Add("Image", "ImageEditProperty");
- btnToProperty.Add("TextAndImage", "ImageTextEditProperty");
- btnToProperty.Add("PropertyPanelContentEdit", "PropertyPanelContentEdit");
- }
- #endregion 初始化
- #region 右键菜单
- //点击空白处时
- private ContextMenu EmptyStateMenu(object sender)
- {
- var popMenu = App.Current.FindResource("NoneMenu") as ContextMenu;
- CustomPopMenu customMenu = new CustomPopMenu(popMenu, sender);
- //粘贴
- customMenu.SetMenuBinding(0, ApplicationCommands.Paste);
- //添加文本
- customMenu.SetMenuBinding(1, AddTextCommand);
- //添加图像
- customMenu.SetMenuBinding(2, AddImgCommand);
- return popMenu;
- }
- //选中文字的框
- private ContextMenu SelectTextBorder(object sender)
- {
- var popMenu = App.Current.FindResource("SelectTextMenu") as ContextMenu;
- CustomPopMenu customMenu = new CustomPopMenu(popMenu, sender);
- //复制
- customMenu.SetMenuBinding(0, ApplicationCommands.Copy);
- //剪切
- customMenu.SetMenuBinding(1, ApplicationCommands.Cut);
- //粘贴
- customMenu.SetMenuBinding(2, ApplicationCommands.Paste);
- //删除
- customMenu.SetMenuBinding(3, ApplicationCommands.Delete);
- customMenu.SetVisibilityProperty(6, false);
- return popMenu;
- }
- //选中文字内容
- private ContextMenu SelectTextContent(object sender)
- {
- var popMenu = App.Current.FindResource("SelectContentMenu") as ContextMenu;
- CustomPopMenu customMenu = new CustomPopMenu(popMenu, sender);
- //复制
- customMenu.SetMenuBinding(0, ApplicationCommands.Copy);
- //剪切
- customMenu.SetMenuBinding(1, ApplicationCommands.Cut);
- //粘贴
- customMenu.SetMenuBinding(2, ApplicationCommands.Paste);
- //粘贴并匹配样式
- customMenu.SetVisibilityProperty(3, false);
- //删除
- customMenu.SetMenuBinding(4, ApplicationCommands.Delete);
- //全部选定
- customMenu.SetMenuBinding(5, ApplicationCommands.SelectAll);
- return popMenu;
- }
- //编辑中右键
- private ContextMenu EditTextContent(object sender)
- {
- var popMenu = App.Current.FindResource("NoneSelectContentMenu") as ContextMenu;
- CustomPopMenu customMenu = new CustomPopMenu(popMenu, sender);
- ////复制
- //customMenu.SetMenuBinding(0, ApplicationCommands.Copy);
- ////剪切
- //customMenu.SetMenuBinding(1, ApplicationCommands.Cut);
- //全部选定
- customMenu.SetMenuBinding(0, ApplicationCommands.SelectAll);
- //粘贴
- customMenu.SetMenuBinding(1, ApplicationCommands.Paste);
- //粘贴并匹配样式
- customMenu.SetVisibilityProperty(2, false);
- ////删除
- //customMenu.SetMenuBinding(4, ApplicationCommands.Delete);
- return popMenu;
- }
- #endregion 右键菜单
- #region 图片右键菜单
- //选中图像时
- private ContextMenu SelectImgPDFEdit(object sender)
- {
- var popMenu = App.Current.FindResource("SelectImgMenu") as ContextMenu;
- CustomPopMenu customMenu = new CustomPopMenu(popMenu, sender);
- //复制
- customMenu.SetMenuBinding(0, ApplicationCommands.Copy);
- //剪切
- customMenu.SetMenuBinding(1, ApplicationCommands.Cut);
- //粘贴
- customMenu.SetMenuBinding(2, ApplicationCommands.Paste);
- //删除
- customMenu.SetMenuBinding(3, ApplicationCommands.Delete);
- //裁剪
- customMenu.SetMenuBinding(4, new DelegateCommand(CropMode));
- //替换
- customMenu.SetMenuBinding(5, new DelegateCommand(ReplaceImg));
- //导出
- customMenu.SetMenuBinding(6, new DelegateCommand(ExportImg));
- return popMenu;
- }
- //选中裁剪图像时
- private ContextMenu CropImgPDFEdit(object sender)
- {
- var popMenu = App.Current.FindResource("CropImgMenu") as ContextMenu;
- CustomPopMenu customMenu = new CustomPopMenu(popMenu, sender);
- //确认裁剪
- customMenu.SetMenuBinding(0, new DelegateCommand(CropImg));
- //取消裁剪
- customMenu.SetMenuBinding(1, new DelegateCommand(CancelCropImg));
- //还原裁剪
- customMenu.SetMenuBinding(2, new DelegateCommand(RestoreCropImg));
- return popMenu;
- }
- //多选图片右键
- private ContextMenu SelectMoreImage(object sender)
- {
- var popMenu = App.Current.FindResource("SelectMoreImageMenu") as ContextMenu;
- CustomPopMenu customMenu = new CustomPopMenu(popMenu, sender);
- //复制
- customMenu.SetMenuBinding(0, ApplicationCommands.Copy);
- //剪切
- customMenu.SetMenuBinding(1, ApplicationCommands.Cut);
- //粘贴
- customMenu.SetMenuBinding(2, ApplicationCommands.Paste);
- //删除
- customMenu.SetMenuBinding(3, ApplicationCommands.Delete);
- //导出
- customMenu.SetMenuBinding(4, new DelegateCommand(ExportImg));
- return popMenu;
- }
- #endregion 图片右键菜单
- #region 快捷键
- private void ShortCut_KeyDown(object sender, KeyEventArgs e)
- {
- try
- {
- if (e.Key == Key.Escape)
- {
- if (PDFViewer != null)
- {
- //缩小esc的操作范围
- if (PDFViewer.ToolManager != null && PDFViewer.GetPDFEditCreateType() == ComPDFKit.PDFPage.CPDFEditType.EditText)
- {
- if (PDFViewer.GetPDFEditSelectionCount(ComPDFKit.PDFPage.CPDFEditType.EditText) == 0)
- {
- PDFViewer.RemovePDFEditEmptyText();
- //只有在有画框的时候才进行
- if (PDFViewer.MouseMode == MouseModes.PDFEdit && PDFViewer.ToolManager.HasTool == true)
- {
- PDFViewer.RemoveTool(false);
- }
- else if (IsTextEdit == true || IsImgEdit == true)
- {
- IsImgEdit = false;
- IsTextEdit = false;
- PDFViewer.SetPDFEditCreateType(ComPDFKit.PDFPage.CPDFEditType.None);
- //文本和图像都框选
- PDFViewer.SetPDFEditType(ComPDFKit.PDFPage.CPDFEditType.EditText | ComPDFKit.PDFPage.CPDFEditType.EditImage);
- PDFViewer.SetMouseMode(MouseModes.PDFEdit);
- PDFViewer.ReloadDocument();
- ShowPropertyPanel(false);
- }
- }
- {
- PDFViewer.ClearSelectPDFEdit();
- PDFViewer.RemovePDFEditEmptyText();
- PDFViewer.ReloadDocument();
- }
- }
- else if (PDFViewer.ToolManager != null && PDFViewer.GetPDFEditCreateType() == ComPDFKit.PDFPage.CPDFEditType.EditImage)
- {
- if (PDFViewer.GetPDFEditSelectionCount(ComPDFKit.PDFPage.CPDFEditType.EditImage) == 0)
- {
- PDFViewer.RemovePDFEditEmptyText();
- if (PDFViewer.MouseMode == MouseModes.PDFEdit && PDFViewer.ToolManager.HasTool == true)
- {
- PDFViewer.RemoveTool(false);
- }
- else if (IsTextEdit == true || IsImgEdit == true)
- {
- IsImgEdit = false;
- IsTextEdit = false;
- PDFViewer.SetPDFEditCreateType(ComPDFKit.PDFPage.CPDFEditType.None);
- //文本和图像都框选
- PDFViewer.SetPDFEditType(ComPDFKit.PDFPage.CPDFEditType.EditText | ComPDFKit.PDFPage.CPDFEditType.EditImage);
- PDFViewer.SetMouseMode(MouseModes.PDFEdit);
- PDFViewer.ReloadDocument();
- ShowPropertyPanel(false);
- }
- }
- else
- {
- PDFViewer.ClearSelectPDFEdit();
- PDFViewer.ReloadDocument();
- }
- }
- else if (PDFViewer.ToolManager != null)
- {
- PDFViewer.ClearSelectPDFEdit();
- AddToPropertyPanel("PropertyPanelContentEdit", null);
- PDFViewer.ReloadDocument();
- }
- }
- }
- }
- catch
- {
- }
- }
- #endregion 快捷键
- //模式选择进入
- public void AddContent(object obj)
- {
- if (PDFViewer == null || obj == null || obj as CustomIconToggleBtn == null) return;
- //判断是否已退出登录,限制编辑操作
- if (!App.IsLogin)
- {
- IsImgEdit = false;
- IsTextEdit = false;
- PDFViewer.SetPDFEditType(ComPDFKit.PDFPage.CPDFEditType.None);
- PDFViewer.ReloadDocument();
- App.mainWindowViewModel.OpenLogin();
- return;
- }
- var btn = obj as CustomIconToggleBtn;
- EnterEditMode((bool)btn.IsChecked, btn.Tag.ToString());
- }
- //编辑按钮逻辑,暂时保留
- private void EditTextMode()
- {
- }
- //对应模式的逻辑
- private void EnterEditMode(bool isCheckMode, string modeType)
- {
- if (isCheckMode)
- {
- if (modeType == "Text")
- {
- DataTrackingHelper.SetSendInformation(DataTrackingHelper.EventType.Purchase_EditPDF, DataTrackingHelper.EntryPathKeyType.SubTbr_Tools);
- DataTrackingHelper.AddFirstAndSecondaryPath(DataTrackingHelper.FirstPath.Reading, DataTrackingHelper.SecondaryPath.EditText);
- DataTrackingHelper.IsClearEntryPath = true;
- DataTrackingHelper.SendEvent(DataTrackingHelper.EventType.SubTbr_EditPDF, "SubTbr_Btn", "Btn_SubTbr_AddText");
- IsImgEdit = false;
- IsTextEdit = true;
- //只框选文本
- PDFViewer.SetPDFEditType(ComPDFKit.PDFPage.CPDFEditType.EditText);
- PDFViewer.SetMouseMode(MouseModes.PDFEdit);
- PDFViewer.ReloadDocument();
- PDFViewer.SetPDFEditCreateType(ComPDFKit.PDFPage.CPDFEditType.EditText);
- pdfDefaultEditEvent = PDFEditHelper.GetPDFEditDefaultProperty(out DefaultEditProperty defaultEdit, PDFViewer);
- //单击添加文本
- PDFViewer.ToolManager.EnableClickCreate = true;
- PDFViewer.ToolManager.ClickCreateWidth = 60;
- PDFViewer.ToolManager.ClickCreateHeight = 30;
- List<PDFEditEvent> pdfEditEvents = new List<PDFEditEvent>();
- if (pdfDefaultEditEvent != null)
- {
- pdfEditEvents.Add(pdfDefaultEditEvent);
- }
- AddToPropertyPanel("Text", pdfEditEvents);
- ShowPropertyPanel(true);
- }
- else
- {
- DataTrackingHelper.SetSendInformation(DataTrackingHelper.EventType.Purchase_EditPDF, DataTrackingHelper.EntryPathKeyType.SubTbr_Tools);
- DataTrackingHelper.IsClearEntryPath = true;
- DataTrackingHelper.AddFirstAndSecondaryPath(DataTrackingHelper.FirstPath.Reading, DataTrackingHelper.SecondaryPath.EditImage);
- DataTrackingHelper.SendEvent(DataTrackingHelper.EventType.SubTbr_EditPDF, "SubTbr_Btn", "Btn_SubTbr_AddImage");
- IsImgEdit = true;
- IsTextEdit = false;
- //只框选图像
- PDFViewer.SetPDFEditType(ComPDFKit.PDFPage.CPDFEditType.EditImage);
- PDFViewer.SetPDFEditCreateType(ComPDFKit.PDFPage.CPDFEditType.EditImage);
- PDFViewer.SetMouseMode(MouseModes.PDFEdit);
- PDFViewer.ReloadDocument();
- //未设置,将无法触发Active事件
- PDFViewer.ToolManager.EnableClickCreate = true;
- PDFViewer.ToolManager.ClickCreateWidth = 60;
- PDFViewer.ToolManager.ClickCreateHeight = 30;
- AddToPropertyPanel("PropertyPanelContentEdit", null);
- ShowPropertyPanel(true);
- }
- }
- else
- {
- IsImgEdit = false;
- IsTextEdit = false;
- //添加按钮取消选中 清除空文本和选中文本框的状态
- PDFViewer.ClearSelectPDFEdit();
- PDFViewer.RemovePDFEditEmptyText();
- PDFViewer.SetPDFEditCreateType(ComPDFKit.PDFPage.CPDFEditType.None);
- //文本和图像都框选
- PDFViewer.SetPDFEditType(ComPDFKit.PDFPage.CPDFEditType.EditText | ComPDFKit.PDFPage.CPDFEditType.EditImage);
- PDFViewer.SetMouseMode(MouseModes.PDFEdit);
- PDFViewer.ReloadDocument();
- ShowPropertyPanel(false);
- }
- }
- #region Command功能
- private void AddText()
- {
- EnterEditMode(true, "Text");
- }
- private void AddImg()
- {
- EnterEditMode(true, "Image");
- }
- //进入裁剪模式
- private void CropMode()
- {
- if (TextEditEvent != null)
- {
- TextEditEvent.ClipImage = true;
- TextEditEvent.UpdatePDFEditByEventArgs();
- flg = true;
- }
- }
- //取消裁剪
- private void CancelCropImg()
- {
- if (TextEditEvent != null)
- {
- TextEditEvent.ClipImage = false;
- TextEditEvent.CancelClip();
- flg = false;
- TextEditEvent.UpdatePDFEditByEventArgs();
- }
- }
- //还原裁剪
- private void RestoreCropImg()
- {
- if (TextEditEvent != null)
- {
- TextEditEvent.RestoreClip();
- events.GetEvent<PageEditNotifyEvent>().Publish(new PageEditNotifyEventArgs(unicode));
- }
- }
- //完成裁剪
- private void CropImg()
- {
- CropImgflg = true;
- }
- //导出图片
- private void ExportImg()
- {
- if (PDFViewer == null || TextEditEvent == null || TextEditEvent.EditType != ComPDFKit.PDFPage.CPDFEditType.EditImage) return;
- System.Windows.Forms.FolderBrowserDialog folder = new System.Windows.Forms.FolderBrowserDialog();
- folder.SelectedPath = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
- if (folder.ShowDialog() == System.Windows.Forms.DialogResult.OK)
- {
- if (string.IsNullOrEmpty(folder.SelectedPath))
- return;
- var keyValueList = PDFViewer.GetSelectedImages();
- int i = 0;
- foreach (var bitmap in keyValueList)
- {
- foreach (var bitmapItem in bitmap.Value)
- {
- bitmapItem.Save(folder.SelectedPath + "\\" + i + ".png", System.Drawing.Imaging.ImageFormat.Png);
- i++;
- }
- }
- var strFilePath = folder.SelectedPath + "\\0.png";
- CommonHelper.ShowFileBrowser(strFilePath);
- }
- }
- //替换图片
- private void ReplaceImg()
- {
- ReplaceImgflg = true;
- }
- //选中的图像
- private System.Windows.Media.Imaging.BitmapSource _currentImg;
- public System.Windows.Media.Imaging.BitmapSource CurrentImg
- { get { return _currentImg; } set { SetProperty(ref _currentImg, value); } }
- private void GetImagePreView()
- {
- try
- {
- var list = PDFViewer.GetSelectedImages();
- if (list != null && list.Count > 0)
- {
- System.Drawing.Bitmap bitmap = null;
- foreach (var item in list)
- {
- if (item.Value.Count > 0)
- {
- bitmap = item.Value[0];
- break;
- }
- }
- if (bitmap != null)
- {
- IntPtr ip = bitmap.GetHbitmap();
- System.Windows.Media.Imaging.BitmapSource bitmapSource = System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(ip, IntPtr.Zero, Int32Rect.Empty,
- System.Windows.Media.Imaging.BitmapSizeOptions.FromEmptyOptions());
- CurrentImg = bitmapSource;
- }
- }
- }
- catch
- {
- }
- }
- #endregion Command功能
- //传参数给属性面板
- private void AddToPropertyPanel(string type, List<PDFEditEvent> e)
- {
- if (btnToProperty.ContainsKey(type))
- {
- NavigationParameters parameters = new NavigationParameters();
- parameters.Add(ParameterNames.PDFViewer, PDFViewer);
- parameters.Add(ParameterNames.AnnotEvent, e);
- parameters.Add(ParameterNames.TextEditToolContentViewModel, this);
- System.Windows.Application.Current.Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Send, new Action(() =>
- {
- regions.RequestNavigate(RegionNames.PropertyRegionName, btnToProperty[type], parameters);
- }));
- if (e != null)
- {
- ShowPropertyPanel(true);
- }
- else if (e == null && IsImgEdit == false && IsTextEdit == false)
- {
- ShowPropertyPanel(false);
- }
- }
- }
- //控制属性面板是否展示
- private void ShowPropertyPanel(bool show = true)
- {
- viewContentViewModel.IsPropertyOpen = show;
- }
- private void OnViewModel1PropertyChanged(object sender, PropertyChangedEventArgs e)
- {
- if (e.PropertyName == "TabSelectedIndex")
- {
- if (viewContentViewModel.ToolTooRow == new GridLength(40))
- {
- IsImgEdit = false;
- IsTextEdit = false;
- PDFViewer.SetPDFEditType(ComPDFKit.PDFPage.CPDFEditType.EditText | ComPDFKit.PDFPage.CPDFEditType.EditImage);
- PDFViewer.SetMouseMode(MouseModes.PDFEdit);
- PDFViewer.ReloadDocument();
- PDFViewer.SetPDFEditCreateType(ComPDFKit.PDFPage.CPDFEditType.None);
- AddToPropertyPanel("PropertyPanelContentEdit", null);
- ShowPropertyPanel(false);
- }
- else
- {
- PDFViewer.SetPDFEditType(ComPDFKit.PDFPage.CPDFEditType.None);
- PDFViewer.ReloadDocument();
- }
- }
- }
- public void OnNavigatedTo(NavigationContext navigationContext)
- {
- navigationContext.Parameters.TryGetValue<CPDFViewer>(ParameterNames.PDFViewer, out PDFViewer);
- navigationContext.Parameters.TryGetValue<ViewContentViewModel>(ParameterNames.ViewContentViewModel, out viewContentViewModel);
- if (PDFViewer != null)
- {
- viewContentViewModel.PropertyChanged += OnViewModel1PropertyChanged;
- //左键激活
- PDFViewer.PDFEditActiveHandler -= PDFViewer_PDFEditActiveHandler;
- PDFViewer.PDFEditActiveHandler += PDFViewer_PDFEditActiveHandler;
- //右键
- PDFViewer.PDFEditCommandHandler -= PDFViewer_PDFEditCommandHandler;
- PDFViewer.PDFEditCommandHandler += PDFViewer_PDFEditCommandHandler;
- //图片添加
- PDFViewer.CustomNotifyHandler -= PDFViewer_CustomNotifyHandler;
- PDFViewer.CustomNotifyHandler += PDFViewer_CustomNotifyHandler;
- //粘贴后选中
- PDFViewer.PDFEditHandler -= PDFViewer_PDFEditHandler;
- PDFViewer.PDFEditHandler += PDFViewer_PDFEditHandler;
- KeyEventsHelper.KeyDown -= ShortCut_KeyDown;
- KeyEventsHelper.KeyDown += ShortCut_KeyDown;
- pdfDefaultEditEvent = PDFEditHelper.GetPDFEditDefaultProperty(out DefaultEditProperty defaultEdit, PDFViewer);
- }
- }
- private void PDFViewer_PDFEditHandler(object sender, List<PDFEditSelectionData> e)
- {
- if (e != null && e.Count > 0)
- {
- foreach (var item in e)
- {
- if (item is PDFEditSelectionData editSelectionData)
- {
- switch (editSelectionData.Action)
- {
- case ActionType.Add:
- PDFViewer.ClearSelectPDFEdit();
- PDFViewer.SelectPDFEdit(e, true);
- break;
- case ActionType.Modify:
- break;
- }
- }
- }
- }
- }
- protected PDFEditEvent TextEditEvent;
- //左键激活逻辑
- private void PDFViewer_PDFEditActiveHandler(object sender, List<PDFEditEvent> e)
- {
- PDFViewer.ToolManager.IgnoreMoveDistance = 5;
- //判断是否已退出登录,限制编辑操作
- if (!App.IsLogin)
- {
- IsImgEdit = false;
- IsTextEdit = false;
- PDFViewer.SetPDFEditType(ComPDFKit.PDFPage.CPDFEditType.None);
- PDFViewer.ReloadDocument();
- App.mainWindowViewModel.OpenLogin();
- return;
- }
- //从配置文件拿样式
- pdfDefaultEditEvent = PDFEditHelper.GetPDFEditDefaultProperty(out DefaultEditProperty defaultEdit, PDFViewer);
- if (e != null && e.Count > 0)
- {
- TextEditEvent = e[0];
- bool isText = false;
- bool isImg = false;
- foreach (var item in e)
- {
- if (item.EditType == ComPDFKit.PDFPage.CPDFEditType.EditImage)
- {
- isImg = true;
- }
- if (item.EditType == ComPDFKit.PDFPage.CPDFEditType.EditText)
- {
- isText = true;
- }
- }
- if (isText == true && isImg == false)
- {
- if (e.Count == 1 && string.IsNullOrEmpty(e[0].FontName))
- {
- e = SynchronizeToPropertyPanel(e, defaultEdit);
- }
- AddToPropertyPanel("Text", e);
- }
- if (isText == false && isImg == true)
- {
- AddToPropertyPanel("Image", e);
- }
- if (isText == true && isImg == true)
- {
- AddToPropertyPanel("TextAndImage", e);
- }
- }
- ///未事先设置 if里面的内容,单击添加文本会失败
- //else if(IsTextEdit==true)
- //{
- // //单击添加文本
- // PDFViewer.ToolManager.EnableClickCreate = true;
- // PDFViewer.ToolManager.ClickCreateWidth = 60;
- // PDFViewer.ToolManager.ClickCreateHeight = 30;
- // AddToPropertyPanel("Text", null);
- //}
- else
- {
- Trace.WriteLine("PropertyPanelContentEdit");
- AddToPropertyPanel("PropertyPanelContentEdit", null);
- }
- events.GetEvent<PageEditNotifyEvent>().Publish(new PageEditNotifyEventArgs(unicode));
- }
- /// <summary>
- /// 拿配置文件的属性,刷新属性面板
- /// </summary>
- /// <param name="e"></param>
- /// <param name="defaultEdit"></param>
- /// <returns></returns>
- private List<PDFEditEvent> SynchronizeToPropertyPanel(List<PDFEditEvent> e, DefaultEditProperty defaultEdit)
- {
- List<PDFEditEvent> editEvents = new List<PDFEditEvent>();
- PDFEditEvent editEvent = e[0];
- if (defaultEdit != null)
- {
- editEvent.FontName = defaultEdit.FontName;
- editEvent.FontSize = defaultEdit.FontSize;
- editEvent.TextAlign = defaultEdit.TextAlign;
- editEvent.AutoBlock = false;
- //editEvent.ClipImage = defaultEdit.ClipImage;
- //editEvent.EditType = defaultEdit.EditType;
- editEvent.FontColor = defaultEdit.FontColor;
- //editEvent.HorizontalMirror = defaultEdit.HorizontalMirror;
- //editEvent.VerticalMirror = defaultEdit.VerticalMirror;
- editEvent.IsBold = defaultEdit.IsBold;
- editEvent.IsItalic = defaultEdit.IsItalic;
- //editEvent.ReplaceImagePath = defaultEdit.ReplaceImagePath;
- //editEvent.Rotate = defaultEdit.Rotate;
- //editEvent.Transparency = defaultEdit.Transparency;
- //PDFViewer.SetPDFEditParam(editEvent);
- e[0] = editEvent;
- editEvents = e;
- }
- return editEvents;
- }
- //右键点击逻辑
- private void PDFViewer_PDFEditCommandHandler(object sender, PDFEditCommand e)
- {
- if (e == null)
- return;
- switch (e.CommandType)
- {
- case CommandType.Context:
- if (e.EditType == ComPDFKit.PDFPage.CPDFEditType.None)//点击空白区域
- {
- e.PopupMenu = EmptyStateMenu(sender);
- }
- else if (e.EditType == ComPDFKit.PDFPage.CPDFEditType.EditText)
- {
- //文字编辑
- if (e.PressOnBorder == true)
- {
- e.PopupMenu = SelectTextBorder(sender);
- }
- else if (e.PressOnSelectedText == true)
- {
- e.PopupMenu = SelectTextContent(sender);
- }
- else if (e.SelectText == "")
- {
- e.PopupMenu = EditTextContent(sender);
- }
- else
- {
- e.PopupMenu = SelectTextContent(sender);
- }
- }
- else if (e.EditType == ComPDFKit.PDFPage.CPDFEditType.EditImage)
- {
- if (e.IsClipState == true)
- {
- e.PopupMenu = CropImgPDFEdit(sender);
- }
- else
- {
- e.PopupMenu = SelectImgPDFEdit(sender);
- }
- }
- break;
- default:
- e.DoCommand();
- break;
- }
- if (e.PopupMenu != null)
- {
- e.Handle = true;
- }
- flg = e.IsClipState;
- }
- //图片添加逻辑
- private void PDFViewer_CustomNotifyHandler(object sender, CustomNotityData e)
- {
- //图片创建
- if (e.NotifyType == CustomNotifyType.PDFEditImageCreate)
- {
- OpenFileDialog openFileDialog = new OpenFileDialog();
- openFileDialog.Filter = "Image Files(*.jpg;*.jpeg;*.png;*.bmp)|*.jpg;*.jpeg;*.png;*.bmp;";
- if (openFileDialog.ShowDialog() == true)
- {
- PDFViewer.AddPDFEditImage(CompressImage(openFileDialog.FileName, 800), 500, 500);
- events.GetEvent<PageEditNotifyEvent>().Publish(new PageEditNotifyEventArgs(unicode));
- }
- }
- //图片调整大小
- else if (e.NotifyType == CustomNotifyType.PDFEditImageResize)
- {
- REImgflg = true;
- events.GetEvent<PageEditNotifyEvent>().Publish(new PageEditNotifyEventArgs(unicode));
- }
- }
- /// <summary>
- /// 压缩
- /// </summary>
- /// <param name="filePath"></param>
- /// <param name="maxwidth"></param>
- /// <returns></returns>
- public static string CompressImage(string filePath, int maxwidth = 600)
- {
- try
- {
- string sourcepath = filePath;
- var guid = Guid.NewGuid().ToString();
- string folder = Path.Combine(App.CurrentPath, "Temp");
- if (!Directory.Exists(folder))
- {
- Directory.CreateDirectory(folder);
- }
- var path = System.IO.Path.Combine(App.CurrentPath, "Temp", guid);
- Bitmap bitmap = new Bitmap(sourcepath);
- var b = bitmap;
- //bitmap.Dispose();
- double scale = Math.Min((double)maxwidth / b.Width, (double)maxwidth / b.Height);
- scale = Math.Min(scale, 1);
- System.Drawing.Size newsize = new System.Drawing.Size(maxwidth, maxwidth);
- newsize.Width = (int)(scale * b.Width);
- newsize.Height = (int)(scale * b.Height);
- if (!File.Exists(path))
- {
- if (CheckTextFile(sourcepath) == FileExtension.PNG)
- {
- using (var bp = new Bitmap(b, (int)newsize.Width, (int)newsize.Height))
- {
- bp.Save(path, ImageFormat.Png);
- }
- }
- else
- {
- using (var bp = new Bitmap(b, (int)newsize.Width, (int)newsize.Height))
- {
- bp.Save(path, ImageFormat.Jpeg);
- }
- }
- }
- return path;
- }
- catch
- {
- return filePath;
- }
- }
- /// <summary>
- /// 根据图片数据判断图片类型
- /// </summary>
- /// <param name="fileName"></param>
- /// <returns></returns>
- public static FileExtension CheckTextFile(string fileName)
- {
- FileStream fs = new FileStream(fileName, FileMode.Open, FileAccess.Read);
- System.IO.BinaryReader br = new System.IO.BinaryReader(fs);
- string fileType = string.Empty; ;
- try
- {
- byte data = br.ReadByte();
- fileType += data.ToString();
- data = br.ReadByte();
- fileType += data.ToString();
- FileExtension extension;
- try
- {
- extension = (FileExtension)Enum.Parse(typeof(FileExtension), fileType);
- }
- catch
- {
- extension = FileExtension.VALIDFILE;
- }
- return extension;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (fs != null)
- {
- fs.Close();
- br.Close();
- }
- }
- }
- public bool IsNavigationTarget(NavigationContext navigationContext)
- {
- return true;
- }
- public void OnNavigatedFrom(NavigationContext navigationContext)
- {
- IsImgEdit = false;
- IsTextEdit = false;
- PDFViewer.PDFEditActiveHandler -= PDFViewer_PDFEditActiveHandler;
- PDFViewer.PDFEditCommandHandler -= PDFViewer_PDFEditCommandHandler;
- PDFViewer.CustomNotifyHandler -= PDFViewer_CustomNotifyHandler;
- PDFViewer.PDFEditHandler -= PDFViewer_PDFEditHandler;
- KeyEventsHelper.KeyDown -= ShortCut_KeyDown;
- ShowPropertyPanel(false);
- }
- }
- }
|