display an icon (in png format) in a cell of a uitable

조회 수: 20 (최근 30일)
Varsha
Varsha 2011년 2월 9일
Hi,
I need to build a table that displays the status of a service in a GUI I am working on. I am using the uitable to display this information. In the first column I need to place the required icon (tick if on, cross if off etc). I can't seem to find how to do this anywhere. I have no clue at all. Please help.
Thanks. Varsha

채택된 답변

Nicolas
Nicolas 2011년 6월 13일
actually you nearly had it.
the problem is your html code.
properly it should say:
'<IMG SRC="http://mathworks.com/logo.tif">'
...and it works!
  댓글 수: 4
Jan
Jan 2011년 6월 13일
@Walter: Even the browser does not find a logo.tif at mathworks.com - try it: http://www.mathworks.com/logo.tif . In consequence the broken link icon is not a failure.
Jan
Jan 2011년 6월 13일
@Nicolas: Although it is nicer, you do *not* have to close HTML tags in the UICONTROLs.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2011년 2월 10일
There is no documented way to do this.
You can take advantage of the fact that text cells will be interpreted as HTML if they are in the proper format, such as
'<HTML><IMG="http://mathworks.com/logo.tif" >'
Using that I have been able to get the "broken link" icon, but I have not yet been able to get an actual image up. And you have to do nasty things to cell widths and fontsize to make room for the image.
If there is a mechanism for this, it would probably be described at Yair's undocumented matlab site
  댓글 수: 1
Jan
Jan 2011년 6월 13일
Try an existing and local file:
pic = fullfile(matlabroot, 'toolbox', 'image', 'icon', 'icon_info.png');
uitable('Data', {['<html><img src="file:/', pic, '"></html>']})

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by