フィルターのクリア

how to give color to an output text

255 ビュー (過去 30 日間)
Elysi Cochin
Elysi Cochin 2013 年 4 月 8 日
コメント済み: Michael 2020 年 11 月 18 日
i saved my output in txt file.....
myOutput = Image Processing is interesting
i wanted to display the word "Process" in green color and the remaining words in black color itself....
i found a link in which we can format the text in different ways....
but in all those examples we give the full text to change color... but i want only a portion of the text to change its color...
if found the starting position of Process and the position upto which i want to change color... but i dont know how to keep the other text colors black and "Process" only green...... please can someone help me solve it.... i need the output to be displayed either in command window or txt file.... but the only thing is the change in color shud be there.....please do reply....

採用された回答

Cedric
Cedric 2013 年 4 月 8 日
編集済み: Cedric 2013 年 4 月 8 日
Use a combination of FPRINTF and CPRINTF, without outputting CR/LF before the "final" end of line.
>> fprintf('This is a ') ; cprintf('_red', 'colorful ') ; fprintf('example!\n') ;
but be aware that CPRINTF is rather slow.
>> tic ; for k = 1:1e2, fprintf('.') ; end ; fprintf('\n') ; toc
....................... ..
Elapsed time is 0.001758 seconds.
>> tic ; for k = 1:1e2, cprintf('_red', '.') ; end ; fprintf('\n') ; toc
....................... ..
Elapsed time is 1.458687 seconds.

その他の回答 (1 件)

Image Analyst
Image Analyst 2013 年 4 月 8 日
I know this isn't what you want, but in case others want to know how to "burn" colored text into images, see this link : http://www.mathworks.com/matlabcentral/fileexchange/38721-embed-text-and-graphics-in-an-image

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by