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
 Reload image after savingAstext

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
MattOV Posted - Mar 28 2012 : 06:24:43
Hi Fabrizio

Is there a method for leading and image from a text file that was created using IEImage.SaveAsText?

thanks
1   L A T E S T    R E P L I E S    (Newest First)
fab Posted - Mar 28 2012 : 12:32:16
Hi,
no, there isn't a method.
Anyway it should be easy to write. Each character is a pixel with 9 shades of gray. Each pixel can be:

W = 0 (black)
@ = 1
# = 2
* = 3
+ = 4
: = 5
. = 6
, = 7
= 8 (white)

Just convert each character to a pixel (0=0....8=255) gray scale value.