ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 TImageEnView PopupMenus: File Popup Menu?

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
PeterPanino Posted - Mar 20 2025 : 04:04:51
TImageEnView has a couple of pre-made popup menus:

Image Editing Popup Menu
Image Selection Popup Menu
Image Viewing Popup Menu
Layer Editing Popup Menu
Layer Selection Popup Menu
PDF Editing Popup Menu
PDF Viewing Popup Menu

Unfortunately, there is no pre-made File popup menu that allows the user to save the viewed image to a file. This would come in handy for a quick image viewer with no other UI.
2   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - Mar 20 2025 : 15:57:54
Hi Peter

You can just remove all the unwanted editing items and just add Save ones

IEGlobalSettings().ImageEditingPopupMenu := [ ivbImageSave ];
ImageEnView1.PopupMenus := [ ievEditing ];

http://www.imageen.com/help/TIEGlobalSettings.ImageEditingPopupMenu.html

Nigel
Xequte Software
www.imageen.com
PeterPanino Posted - Mar 20 2025 : 04:37:22
Nevermind, I've made a custom popup menu to save the image:

with ImageEnViewPreview.IO do
  SaveToFile(ExecuteSaveDialog());