Print an image in Matlab GUI
Mostrar comentarios más antiguos
How do you print an image from a printer in Matlab GUI? I get an error using the code below. Please help me.
Undefined function or variable 'smapleimage'.
smapleimage = imread('image.png');
printdlg(handles.smapleimage)
Respuestas (1)
Arthur
el 17 de Nov. de 2012
I guess it should be
smapleimage = imread('image.png');
printdlg(smapleimage)
6 comentarios
Eric Letsolo
el 17 de Nov. de 2012
Arthur
el 17 de Nov. de 2012
This error does not come from the two lines you showed here. Please show the entire error message, and the code where it came from.
Eric Letsolo
el 17 de Nov. de 2012
Editada: Image Analyst
el 18 de Nov. de 2012
Arthur
el 17 de Nov. de 2012
Ok, printdlg only accepts figure windows. Try this:
hFig = figure();
smapleimage = imread('image.png');
imshow(smapleimage)
printdlg(hFig)
Eric Letsolo
el 17 de Nov. de 2012
Arthur
el 18 de Nov. de 2012
Categorías
Más información sobre Interactive Control and Callbacks en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!