Programmatically capturing screenshots of Simulink blocks and dialogs

76 次查看(过去 30 天)
This is a shot in the dark, but does anyone know of a convenient built-in way to programmatically create screen captures of Simulink blocks and dialogs? This is for documentation purposes. We'd like to show an image of the block and the dialog in the documents but we don't want to manually screencap the block and dialog of upwards of a hundred blocks.
  3 个评论
Carl Banks
Carl Banks 2018-10-9
编辑:Carl Banks 2018-10-9
I ended up doing this, and using some functions from image processing toolbox to help crop the screenshots. Thanks for the suggestions. If you repost this as an answer I'll accept it (if you care about that kind of thing).
Matthias Liermann
Matthias Liermann 2020-6-22
Hi Carl, I am trying to do the same. I would like to programmatically take a screenshot of blocks in a model. How were you able to get the position of the block on the screen to take a screenshot of? The command
get_param(gcb,'position')
only gets you the position of the block relative to a model window reference. However, I couldn't figure out how to get the origin of this model window reference on the screen.

请先登录,再进行评论。

采纳的回答

Greg
Greg 2018-10-10
You can import java packages into MATLAB, one of them (java.awt.* ??) includes the ability to take screenshots. I'm assuming there's an open or edit equivalent to launch each block, then use the java to capture screen.

更多回答(2 个)

Fangjun Jiang
Fangjun Jiang 2018-8-1
You might want to try Simulink "Web View". In the Simulink model, click menu File, Export model to, Web...
A html document is created. You can browse the hierarchy of the model just like in Simulink. Block dialog is not shown but block parameters are shown whenever you click a block. This is great for documentation purpose.
Alternatively, try menu File, Print, to a PDF file.

Dave
Dave 2019-4-9
Simulink has this built in:
% Open a model
f14
% Choose name of model to be screenshot
ModelName = 'f14'
% Save the screenshot to a file, named the model name...
print(['-s',ModelName],'-djpeg',[ModelName,'.jpg'])
You can choose: JPG, BMP, PNG etc
More here: print
  1 个评论
Ala'a Alshubbak
Ala'a Alshubbak 2022-12-13
编辑:Ala'a Alshubbak 2022-12-13
i am trying same appraoch in saving images of my model.
the model is designed as a project. and i wrote the model name as bellow:
ModelName ='mymodel.slx'
but i got the following error:
###error bellow####
> In checkArgsForHandleToPrint
In checkArgsForHandleToPrint
In print>LocalCreatePrintJob (line 101)
In print (line 38)
Error using checkArgsForHandleToPrint
Simulink system name '/home/jem-user/Downloads/github_repo_matlab_excavator/Models/Complete/Excavator_Complete.slx'
does not exist or is not open.
Error in checkArgsForHandleToPrint
Error in print>LocalCreatePrintJob (line 101)
handles = checkArgsForHandleToPrint(0, varargin{:});
Error in print (line 38)
[pj, inputargs] = LocalCreatePrintJob(varargin{:});
###end of the error####
what is that exactly? any idea to help please.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Interactive Model Editing 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by