Copy Figure Elements to System Clipboard

조회 수: 10 (최근 30일)
David
David 2013년 9월 17일
댓글: Jan 2013년 10월 5일
Hi,
I frequently use matlab on multiple adjacent computers running their own instances of matlab, and sometimes I want to share a trace or a title or an axis across figures in different computers.
I have third party software (search sharemouse or inputdirector for example) that enables clipboard sharing across multiple computers, so if there is any way that I can copy a figure element to the system clipboard and not just within the plot editing mode's internal version of the clipboard, i'll be good to go.
Perhaps a simpler problem that would be equally useful is if there is some way to copy an entire figure to the clipboard in a way that it can be pasted back into another instance of matlab, rather than as a bitmap for opening in word like the 'copy figure' option enables.
Thanks!

채택된 답변

Jan
Jan 2013년 9월 19일
편집: Jan 2013년 10월 5일
You can create a menu to copy the contents of a fig file as byte stream in the clipboard. Simply create a FIG file by hgsave, import the contents by fread and copy the data as string to the clibboard with a meaningful header:
[EDITED, code refreshed]
function FigClipboard(command, FigH)
% Copy & paste a figure through the clipboard
% Copy a figure: FigClipboard('copy', FigH)
% Open a new copy: FigClipboard('paste')
%
% License: Copy, modify, use like you want.
file = fullfile(tempdir, 'FigForClipboard.fig');
magic = '$FigToClipboard$';
switch command
case 'copy' %
if nargin == 1
FigH = gcf;
end
hgsave(FigH, file);
fid = fopen(file, 'r');
stream = fread(fid, Inf, 'uint8');
fclose(fid);
clipboard('copy', [magic, sprintf('%02x', stream)]);
delete(file);
case 'paste'
str = clipboard('paste');
if ischar(str) && strncmp(str, magic, length(magic))
fid = fopen(file, 'w');
if fid == 1
error('Cannot open file for writing: %s', file);
end
stream = sscanf(str(length(magic) + 1:end), '%2x');
fwrite(fid, stream, 'uint8');
fclose(fid);
openfig(file);
end
end
[/EDITED]
There must be a function which avoids the indirection over the hard disk. FIG files have the same format as MAT files and they contain a struct only. So it should be possible to re-create the figure directly from this struct instead from writing a file. But I do not find these methods directly and the additional speed is nice, but not a must-have.
  댓글 수: 5
Jan
Jan 2013년 10월 4일
@David: I will take a look on this at the weekend.
Jan
Jan 2013년 10월 5일
Code in my answer replaced by a working version.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Björn
Björn 2013년 9월 18일
For the last part you could consider saving the figure as .fig and then copy the file to the other computer. Here you can open de figure with full compatibility and all data preserved.
To display certain parameters of the figure you can use the get function. For example for getting the title you use:
get(get(gca,'title'),'string')
The inner 'get' retrieves the title of the current axes ('gca'). The outer 'get' converts it to a string.
In case you have more figures open then you have to have the axes-handle of figure-handle for the right figure but this is a bit more complicated. If you need that too, just let me know.
  댓글 수: 3
Björn
Björn 2013년 9월 19일
Hi David,
If the main problem now is to get it automatically to the clipboard, you can make script that does the following:
function str = clipboard_plot_data(parameters,axes_handle)
[par_nr,~]=size(parameters);
str='';
for i=1:par_nr
if nargin < 2
str_test=get(get(gca,parameters{i}),'string');
str_t=['\' parss '=' str_test ' \' parss '\'];
else
str_test=get(get(axes_handle,parameters{i}),'string');
str_t=['\' parss '=' str_test ' \' parss '\'];
end
str=[str str_t];
end
clipboard('copy',str)
This will copy a string with all the data to the clipboard. You can use
clipboard('paste')
to paste is to the clipboard again. The input parameters of the function are of the form:
parameters={'title';'xlabel';'ylabel'}
If you don't input the axes-handle it will use the current axes.
The actual parameters are located between '\title=' and '\title\' Hence, finding those parts in the string will get you the title.
David
David 2013년 9월 24일
Hi Bjorn, this is pretty cool, but I'm not sure how to get this into a really easy use format. I don't want to have to run a separate script each time I try to copy and paste a figure to a different matlab.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by