Re: get_text_image/save_text_image
- Posted by Guillermo Bonvehi <knixeur at speedy.com.ar> Dec 16, 2003
- 435 views
I see them perfectly running Euphoria 2.2 on Windows XP C. K. Lester wrote: > > Mr. Craig, > > The subject functions don't seem to be working properly for me in a > Windows console running exw. > > Here's an example that shows the problem > > -- begin screen test > include image.e > include get.e > object timage, void > for t=1 to 50 do > puts(1,rand(26) + 'A' - 1) > end for > timage = save_text_image({1,1},{25,80}) > clear_screen() > display_text_image( {1,1}, timage) > void = wait_key() > -- end screen test > > I should see the random string of letters, but I don't! > > -ck