当前位置:网站首页>Image processing toolkit imagexpresshow to view events
Image processing toolkit imagexpresshow to view events
2020-11-06 22:27:00 【roffey】
ImagXpress Is the most advanced color image and photo image processing kit , It's released in the form of :.NET Control 、COM Components 、VC Components . use ImagXpress , Developers build applications that support image browsing 、 edit 、 Print 、TWAIN scanning 、 File format conversion and so on .ImagXpress A comprehensive set of image processing functions is provided , Support 30 Multiple file formats , With amazing image processing speed .ImagXpress The image function provided also includes : Copy 、 rotate 、 Keep the image transparent 、 A variety of image scaling algorithms 、 Advanced scroll bar 、 Automatic resizing and image fusion .
- After selecting the tool , Will lead to ToolbarSelect event , To tell the application which tool to choose .
- When using tools , In the following cases ,ToolUse Event raises the notification application : Click the tool , The tool is active and is no longer in use .
- When the toolbar window opens , take trigger ToolbarOpen event .
- When the toolbar window is closed , take trigger ToolbarClose event .
- After selecting the menu item , Will pop up MenuSelect To inform the application of the choice . When this event was triggered , Put the menu ID Provided to the event handler .
VB Example
// Write the event handler to the scheduler when the user makes a menu selection
Sub IX1_MenuSelect (long menuType, long tool, long topMenuID, long subMenuID, long user1, long user2)
if (menuType = MenuContext) then
Select Case topMenuID
Case 100 ' Color
MyObj.Color = user1
Case 200 ' Size
MyObj.Size = user1
Case 300 ' Type
SelectCase subMenuID
Case 310
MyObj.DrawLine
Case 320
MyObj.DrawEllipse
Case 330
MyObj.DrawRect
End Select
end if
end sub
End user scrolling
The end user of the application can use the scroll bar to change in “ View the window ” The image section of view in .
If the scroll bar is enabled , When you click the scroll bar , Will lead to Scroll event , To alert the application that there is a scrolling request . Set up ScrollBarLargeChangeH,ScrollBarLargeChangeV,ScrollBarSmallChangeH and ScrollBarSmallChangeV Property to indicate the amount of requested changes to the horizontal and vertical position of the view . The view updates on the next paint .
End user cursor moves
Track the position of the cursor in the displayed image , As shown below :
- stay XPOS and YPos The read-only property returns the logical position of the cursor in the displayed image , In pixels .
- Of DIBXpos and DIBYpos Read only property relative to return cursor position to DIB, In pixels .
- Described PixelColor The color of the pixel returned by the read-only property at the current cursor position .
To display the coordinates of the image and DIB Coordinate conversion between coordinates in , Please use TranslateX and TranslateY Method .
End user mouse and button operations
- When the end user of the application uses the mouse , Mouse events ( Click on ,DBLCLICK, Of MouseUp, Of MouseDown,MouseMove event ,OLEDragDrop and OLEDragOver), If they have enabled ( raise EventSetEnabled,EventGetEnabled).
- The end user of the application presses a key , Key events ( Of KeyDown, Key response ,KEYUP If the key is enabled () elevated KeysGetEnabled,KeysSetEnabled), If critical events are enabled (EventSetEnabled,EventGetEnabled).
This article is reprinted from 【 Huidu technology 】. Any reprint is welcome , But be sure to indicate the source 、 Do not modify the original link , Respect for the work of others
版权声明
本文为[roffey]所创,转载请带上原文链接,感谢
边栏推荐
- August 14, 2020: what are the execution engines for data tasks?
- 2020-08-29: process thread differences, in addition to the inclusion relationship, the underlying details?
- Stickinengine architecture 11 message queue
- Application of UHF RFID medical blood management system
- JVM class loading mechanism
- “非洲用户的付费意愿并不低”——专访四达时代研发总监张亮
- Stm32f030c6t6 compatible to replace mm32spin05pf
- Plug in bilibilibili new version 0.5.5
- 实验一
- 2020-09-04: do you understand the function call convention?
猜你喜欢
Markdown tricks
How to add modules to nginx image?
Detect certificate expiration script
How to manage the authority of database account?
How to make characters move
小程序商城系统插件代码该如何写?怎么用代码检查添加插件是否成功?
The isolation level of transaction and its problems
“非洲用户的付费意愿并不低”——专访四达时代研发总监张亮
Detailed software engineering -- the necessary graphs in each stage
汽车维修app开发的好处与功能
随机推荐
JVM class loading mechanism
Markdown tricks
How to write plug-in code of small program mall system? How to use code to check whether the plug-in is successfully added?
Win7 AppCrash (solution)
消防器材RFID固定资产管理系统
迅为-iMX6ULL开发板上配置AP热点
Summary of common SQL statements
NAND FLASH的接口控制设计
Git remote library rollback specified version
Python 100 cases
Using iceberg on kubernetes to create a new generation of cloud original data Lake
STM32F030C6T6兼容替换MM32SPIN05PF
A good thing for working people -- to temper the will of iron and steel requires such an efficient computer
Stm32f030k6t6 compatible replacement smart mm32f031k6t6
Stickinengine architecture 11 message queue
STM32F030F4P6兼容灵动微MM32F031F4P6
Open source a set of minimalist front and rear end separation project scaffold
Application insights application insights use application maps to build request link views
Js字符串-String字符串对象方法
August 18, 2020: introduce Mr process?