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
 Adding InfoText to Thumbnails in IEMulti

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
brandonbrown Posted - Apr 30 2021 : 18:35:30
First off, all of this code works and I was putting together some very large TIFF file documents, 600-1200pages for testing.

I have a background process reading barcodes and then at the end of the process, I am updating the Info text on the thumbnail with the barcode that is read.

For a 600 page IEMulti, it takes 7 seconds, not bad. I took the same pages, doubled it and it takes 40+ seconds to just add the text.

The code is below, simply just updating the thumbnail text. I've tried Disabling/Enabling, Visible=False/True.



'Fill in the Barcode info
Dim bcHeaders() As String = Split(e.Result, ",")
Dim data() As String
Dim imgInfo As ImageInfoClass
multiScan.ShowText = False
multiScan.Enabled = False
'multiScan.Visible = False
For i = 0 To intFound - 1
data = Split(bcHeaders(i), "-")
imgInfo = multiScan.ImageList.GetImageInfo(CInt(data(0)))
'imgInfo.InfoText = data(1)
imgInfo.BottomText = data(1)
Debug.Print(i)

'Debug.Print(bcHeaders(i))

Next
2   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - May 03 2021 : 17:36:37
Excellent

Nigel
Xequte Software
www.imageen.com
brandonbrown Posted - May 03 2021 : 16:26:40
This is resolved in IEvolution version 10.0