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
 ImageEn V8.6.0 Released

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
xequte Posted - Jun 09 2019 : 18:10:32
ImageEn v8.6.0 has now been released.

This update is free if you purchased a license or extension after 10 June 2018. You can request the download from:

http://www.imageen.com/support/downloadrequest.html

Other users can extend their registration for 12 months at:

http://www.imageen.com/order/index.html#Extensions


Top Five Enhancements

1. New TIEAngleLayer to display and measure angles within an image




2. TImageEnMView and descendents now allow in-place editing, including file renaming in TImageEnFolderMView and layer renaming in TImageEnLayerMView




3. Many improvements to database functionality, including use of TIEDBMultiBitmap to show multi-frame images at the current database cursor, plus five FireDac demos




4. Improved TImageEnFolderMView, including new methods and TActions for to show properties, edit, print file, etc, more keyboard shortcuts, and complete "Windows Explorer"-style demo




5. Enhancements to CaptureFromScreen, including specifying a window to capture

Complete Change History: http://www.imageen.com/info/history.html


Important Compatibility Information

Prior to v8.6.0, all mouse interactions (both MouseInteractGeneral and MouseInteractLayers items) were set with a single property, MouseInteract. To overcome the size limitation for published sets, this was split into:

- MouseInteractGeneral: All mouse interactions that are not related to layer editing

http://www.imageen.com/help/TImageEnView.MouseInteractGeneral.html

- MouseInteractLayers: Mouse interactions for layer editing

https://www.imageen.com/help/TImageEnView.MouseInteractLayers.html


In most cases, code that was previously:


ImageEnView1.MouseInteract := [ miZoom, miScroll ];

Simply changes to:

ImageEnView1.MouseInteractGeneral := [ miZoom, miScroll ];


However for layer editing items (miMoveLayers, miResizeLayers, miRotateLayers, miCreate*Layers, etc.), the prefix has changed to ml, and you must reference MouseInteractLayers.

In older versions:

ImageEnView1.MouseInteract := [ miMoveLayers, miResizeLayers ];

Now becomes:

ImageEnView1.MouseInteractLayers := [ mlMoveLayers, mlResizeLayers ];


These are the layer editing items: miMoveLayers, miResizeLayers, miRotateLayers, miCreateImageLayers, miCreateShapeLayers, miCreateLineLayers, miCreatePolylineLayers, miCreateTextLayers, miClickCreateLineLayers, miClickCreatePolylineLayers, miDrawCreatePolylineLayers, miEditLayerPoints

They are now named: mlMoveLayers, mlResizeLayers, mlRotateLayers, mlCreateImageLayers, mlCreateShapeLayers, mlCreateLineLayers, mlCreatePolylineLayers, mlCreateTextLayers, mlClickCreateLineLayers, mlClickCreatePolylineLayers, mlDrawCreatePolylineLayers, mlEditLayerPoints


Nigel
Xequte Software
www.imageen.com