Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When creating a simple figure in MATLAB and saving it as PDF, the resulting PDF file will have a luxurious bounding box.

plot(1,1,'x')
print(gcf, '-dpdf', 'test.pdf');

(From the ratio of the output it seems they always put in on an A page.)

Is there a simple way to get a tight bounding box around the PDF?

share|improve this question

1 Answer

You can format the bounding box as follows

figure(1)
hold on;
plot(1,1,'x')

ps = get(gcf, 'Position');
ratio = (ps(4)-ps(2)) / (ps(3)-ps(1))
paperWidth = 10;
paperHeight = paperWidth*ratio;


set(gcf, 'paperunits', 'centimeters');
set(gcf, 'papersize', [paperWidth paperHeight]);
set(gcf, 'PaperPosition', [0    0   paperWidth paperHeight]);


print(gcf, '-dpdf', 'test2.pdf');

For smaller borders, you can adjust the paperposition property, e.g.

set(gcf, 'PaperPosition', [-0.5   -0.5   paperWidth+0.5 paperHeight+0.5]);
share|improve this answer
This modifies the aspect ratio and produces a PDF that still has a (smaller) border. Maybe there's a way to read out the dimensions of the bounding box? Anyways, 'PaperPosition' sure is interesting. – Nico Aug 28 '12 at 14:31
@Nico: I updated my answer to account for the aspect ratio and smaller borders. – H.Muster Aug 28 '12 at 14:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.