- Open your model
- click on edit
- copy model to clipboard
- in paint past your image
How do I save Simlulink model to JPG or any other image formats?
215 ビュー (過去 30 日間)
古いコメントを表示
How do I save Simlulink model to JPG or any other image formats?
0 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 2 月 27 日
編集済み: Azzi Abdelmalek
2013 年 2 月 27 日
Manually,
3 件のコメント
Dave
2019 年 4 月 9 日
or just straight to jpg:
print(['-s',ModelName],'-djpeg',[ModelName,'.jpg'])
その他の回答 (3 件)
Harish Balaga
2013 年 7 月 3 日
編集済み: Harish Balaga
2013 年 7 月 3 日
as Azzi Abdelmalek said above, print command can be used. And one can directly save it in required fomat in single command. (no need to use imead, imwite commands). Example: use
ModelName % to open the model
print('-sModelName','-dtiff','model.tiff')
to save ModelName.mdl in TIFF format. Image name will be model.tiff
replace -dtiff with -djpeg for saving the model in jpeg format
3 件のコメント
Jérôme
2023 年 2 月 13 日
print('-sModelName', '-dpng', 'model.png', 'r0') % Screen resolution, same as without parameter
print('-sModelName', '-dpng', 'model.png', 'r300') % Resolution of 300 dots per inch
Instead of 300, you can put what you want.
Anil Chowdary Tummala
2021 年 2 月 5 日
You may use this to save simulink model as image with extension .tiff
print('-sModelName','-dtiff','model.tiff')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!