Programmatically capturing screenshots of Simulink blocks and dialogs

92 visualizzazioni (ultimi 30 giorni)
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 Commenti
Carl Banks
Carl Banks il 9 Ott 2018
Modificato: Carl Banks il 9 Ott 2018
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 il 22 Giu 2020
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.

Accedi per commentare.

Risposta accettata

Greg
Greg il 10 Ott 2018
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.

Più risposte (2)

Fangjun Jiang
Fangjun Jiang il 1 Ago 2018
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 il 9 Apr 2019
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 Commento
Ala'a Alshubbak
Ala'a Alshubbak il 13 Dic 2022
Modificato: Ala'a Alshubbak il 13 Dic 2022
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.

Accedi per commentare.

Categorie

Scopri di più su Interactive Model Editing in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by