How to increase the resolution of the figures for publication
4
2
Entering edit mode
7.7 years ago
akang ▴ 110

Dear All, I have figures generated from different programs and some of them generated in R. The resolution of the figures is low which makes it blurry when zoomed. Is there a tool other than photoshop that could be used here? I want to make figures and their labels sharp and clear. I'll appreciate any help!

Publication Figures • 8.6k views
ADD COMMENT
1
Entering edit mode

You should focus the source of figures rather than post-processing. Try to set a high resolution when plotting with R and also check parameters of the other programs which may produce higher-resolution figures.

ADD REPLY
2
Entering edit mode
7.7 years ago
longbow0 ▴ 40

You could output R plot in PDF format, which is a vector figure format and will not lose resolution.

pdf("output.pdf")
...
dev.off()

PDF format is accepted by many journals.

ADD COMMENT
1
Entering edit mode

Unfortunately many journals require tiff-format.

ADD REPLY
2
Entering edit mode
7.7 years ago
Guangchuang Yu ★ 2.6k

you can save it directly to TIFF format and specific resolution by res parameter and also compression algorithm by compression parameter.

For example:

tiff("your_file.tiff", width=1000, height=1000, compression="lzw", res=300)
plot(...)
dev.off()

If you need to convert PDF to TIFF, you can use imageMagick.

ADD COMMENT
1
Entering edit mode
7.7 years ago
natasha.sernova ★ 4.0k

Download Gimp, it's free.

http://www.gimp.org/

It helps to get rid of multiple layers in the pictures, to correct their size and resolution.

Look at its tutorials:

http://www.gimp.org/tutorials/

ADD COMMENT
0
Entering edit mode

I like Gimp! Much better than Photoshop, IMO.

ADD REPLY
0
Entering edit mode

I like Inkscape (vector tool of publication standards) more than anything. It is just simple and awesome. In my experience journals also prefer Inkscape as alternative to Adobe Illustrator for publication figures.

http://www.nature.com/sdata/publish/submission-guidelines

ADD REPLY
0
Entering edit mode
7.7 years ago
akang ▴ 110

Thanks everyone! That helped :-)

ADD COMMENT

Login before adding your answer.

Traffic: 1933 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6