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
 How can I measure text width of vector objects?

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
adisonx Posted - Aug 19 2016 : 23:53:01
I want to draw text on the bottom right of image with ImageEnVect.
How can I measure text width of vector objects ?
When I add text object with commands

int hFooterText = this->ImageEnVector->AddNewObject(true);
this->ImageEnView->ObjKind[hFooterText] = iekTEXT;
this->ImageEnView->ObjFontName[hFooterText] = "Tahoma";
this->ImageEnView->ObjFontHeight[hFooterText] = FontSize;
this->ImageEnView->ObjFontStyles[hFooterText] = fs1;
this->ImageEnView->ObjLeft[hFooterText] = FooterX;
this->ImageEnView->ObjTop[hFooterText] = FooterY;
this->ImageEnView->ObjText[hFooterText] = "This is my footer";

1.How can I set object width to fit with text length.
and how can I measure text width of this object.
2.Is unit of measurement of ImageEnVector->IEBitmap->Canvas the same as vector object,so I can draw text at the bottom right of image correctly.

Thank you.



1   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - Aug 21 2016 : 18:59:38
Hi

You can use ObjTextAutoSize to make the object automatically size to its text:

http://www.imageen.com/help/TImageEnVect.ObjTextAutoSize.html

Then use ObjWidth/ObjHeight to position it.



Nigel
Xequte Software
www.xequte.com
nigel@xequte.com