using export_fig to crop image, including axis
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi all,
I am trying to use export_fig to crop the image. I successfully removed the background, but the numbers for the axis are still on display.
This is the code:
figure(1)
imagesc(x_axis,axial_distance_water,grayscale2);
colormap(gray);
axis image
export_fig(filename,'-transparent','-tif');
I attach the resulting figure using export_fig and what I need (using cropping function with PowerPoint).
Did anybody had the same issue?
I could not find related examples shown in github for export_fig.
Thanks in advance
4 comentarios
Respuesta aceptada
jonas
el 16 de Ag. de 2018
Consider removing the ticklabels and/or ticks before exporting the figure.
set(gca,'ytick',[],'xtick',[])
set(gca,'yticklabels',{},'xticklabels',{})
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Environment and Settings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!