- 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?
조회 수: 72 (최근 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
Trig
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
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!