Publish to PDF - Figures are pixelated/blurry

조회 수: 85 (최근 30일)
Tyler M. Klein
Tyler M. Klein 2018년 9월 13일
댓글: OCDER 2018년 10월 7일
Hey all,
Today I went to publish a piece of code to PDF and the images were not as crisp as usual. I tried JPEG and BMP and the issue occured in both cases. I'm simply using the publish command, nothing. I've never had a problem before, though I'm not sure I have published any images on R2018a before today... any help would be appreciated
my temporary workaround was to print the images and then import them, which is sub-optimal since it requires making the figures invisible so they don't appear in the published PDF.
EXAMPLE
Here is an example. The first picture is a screenshot of the plot window, which is not blurry. The second picture is a screenshot of the PDF after publishing, which is pixelated. I have attached the PDF for completeness
The issue is produced by the following code, using the following publishing settings
t = linspace(0,1);
plot(t, exp(-t));
title('This title is blurry')
xlabel('This label is also blurry')
ylabel('The whole picture is slighty pixelated')

답변 (3개)

OCDER
OCDER 2018년 9월 13일
편집: OCDER 2018년 9월 14일
New Answer:
Hm, I couldn't find an option to change that resolution. Looked at their Matlab codes publish.m which brought me to their code evalmxdom code that draw the images at fairly low resolution...
%publish.m Line 189-192, draws your code figure at low resolution
% Evaluate each cell, snap the output, and store the results.
if options.evalCode
dom = evalmxdom(file,dom,cellBoundaries,prefix,imageDir,outputDir,options);
end
Here's a workaround to increase the figure resolution before publishing. Maybe someone else know of a better way, or has their own code for publishing high-res codes+figures. Maybe MathWorks should add a feature to increase figure resolution to vector graphics. Anyways, here's the workaround:
t = linspace(0,1);
plot(t, exp(-t));
title('This title is blurry')
xlabel('This label is also blurry')
ylabel('The whole picture is slighty pixelated')
%Increase your figure pixel resolution and font sizes
Gx = gcf;
Gx.Position(3:4) = Gx.Position(3:4)*5;
Ax = gca;
Ax.FontSize = Ax.FontSize *3;
then you can publish your code
publish('mycode.m', 'pdf')
Old Answer:
Use print instead.
print(gcf, 'temp.pdf', '-dpdf')
Make sure to setup the figure PaperPosition, Position, etc properly
  댓글 수: 7
OCDER
OCDER 2018년 9월 14일
Seems like a screen resolution issue. See new answer above.
Tyler M. Klein
Tyler M. Klein 2018년 9월 14일
That is a nice workaround, thanks! It's still not ideal, since I have to include those lines for every figure, but it's the best solution for now. Hopefully Mathworks sees this and figures out the issue. I've never had an issue before on this computer, so it must be an issue with 2018a/b

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


Tyler M. Klein
Tyler M. Klein 2018년 9월 17일
bump

Tyler M. Klein
Tyler M. Klein 2018년 10월 6일
Bump again
  댓글 수: 1
OCDER
OCDER 2018년 10월 7일
Instead of bumping, try asking the MathWorks technical support directly via the Contact Us link on the top right of this page. They usually know other workarounds, and if not, they can add it to the features to improve upon for the next MATLAB Version.

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

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by