How to insert an image to the static text in gui?
5 ビュー (過去 30 日間)
古いコメントを表示
Jihad Chamseddine
2014 年 7 月 16 日
コメント済み: Jihad Chamseddine
2014 年 7 月 17 日
hi, I want to insert an image to the static text in GUI, I tried to modify it in the property inspector and I used the following: imread('myimagefile.jpg') but it didn't work , so can that be done? thanks
1 件のコメント
Geoff Hayes
2014 年 7 月 16 日
I think that you want to insert the image into a axes control/widget. The static text widget is for text only.
採用された回答
Image Analyst
2014 年 7 月 16 日
You must use an "axes" control, not a static text label control.
theImage = imread(filename);
axes(handles.axesImage); % Use actual variable names from your program!
imshow(theImage);
3 件のコメント
Image Analyst
2014 年 7 月 16 日
put the full filename, for example
folder = 'C:\Users\ziad\Desktop';
baseFileName = 'myimagefile.jpg';
fullFileName = fullfile(folder, baseFileName);
if exist(fullFileName, 'file')
theImage = imread(filename);
axes(handles.axesImage); % Use actual variable names from your program!
imshow(theImage);
else
message = sprintf('Image file not found:\n%s', fullFileName);
uiwait(warndlg(message));
end
I don't think you want to put anything in the CreateFcn of any function. You can put this in the OpeningFcn if you want. Or in the OutputFcn.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Convert Image Type についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!