필터 지우기
필터 지우기

Print specific figure in GUI

조회 수: 5 (최근 30일)
Maryam Emad
Maryam Emad 2011년 11월 29일
댓글: Jan 2018년 3월 8일
Welcome All
I hope to be alright :)
I make GUI in matlab , it's contain print button because i want to print specific figure in my GUI
I try that :
function pushbutton4_Callback(hObject, eventdata, handles) % hObject handle to pushbutton1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA)
% Callback function run when the Print menu item is selected
h = handles.axes2;
print(h)
but, an Error was Appear !!
Plz help me :(
  댓글 수: 2
Chandra Kurniawan
Chandra Kurniawan 2011년 11월 29일
What is the error message??
Maryam Emad
Maryam Emad 2011년 11월 29일
??? Error using ==> print at 310
Handle Graphics handle must be a Figure.
Error in ==> Interface1>pushbutton4_Callback at 373
print(h)

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

채택된 답변

Titus Edelhofer
Titus Edelhofer 2011년 11월 29일
Hi,
the error message tells you the problem: you can only print figures, not axes. I assume though, that handles.axes2 is an axes handle, not the figure handle. You probably need to have
h = handles.figure1;
instead.
Titus
  댓글 수: 1
Maryam Emad
Maryam Emad 2011년 11월 29일
Tq a lot
Aha , but my interface contain axes not figure ? !
how I can print axes ??
http://dc05.arabsh.com/i/03603/n1prwhtfto83.jpg

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

추가 답변 (4개)

Oliver Woodford
Oliver Woodford 2011년 11월 29일
The export_fig package contains a function called isolate_axes. You can use this to send a specific axes to a printer as follows:
figure_handle = isolate_axes(axes_handle);
print(figure_handle, ...); % Add the correct print options here
close(figure_handle);
axes_handle can also be a vector of handles of axes in the same figure, in which case all the axes will be printed.

Daniel Shub
Daniel Shub 2011년 11월 29일
  댓글 수: 3
Daniel Shub
Daniel Shub 2011년 11월 29일
@IA, nice catch. I fixed it.
Maryam Emad
Maryam Emad 2011년 11월 29일
Sorry , What are you talking about :(
I'm beginner !

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


Maryam Emad
Maryam Emad 2011년 11월 29일
Thanks for All (f)
I mean how i can print axes appear GUI with printer device !??
and my GUI contain 2 axes.
Process done like this :
when a user click on print button the two axes goes to print ^^

Raphael Ferreira
Raphael Ferreira 2018년 3월 8일
Hi, how are you? Were you able to print a specific figure in the guide? If yes, can you send the code to my emai? email: rkhayker@gmail.com I am developing my thesis and I need this function. I've been trying for two weeks. I'm grateful already!
  댓글 수: 1
Jan
Jan 2018년 3월 8일
Please do not hijack another thread, but open your own one. The nature of this forum is sharing solutions in public, so sending code to an email address is not the right way.
Explain in your new thread, what "print a specific figure in the guide" means, because this is not clear yet.

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

카테고리

Help CenterFile Exchange에서 Graphics Object Programming에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by