I used dev.off(). I am certain that the problem is associated with acrobat reader. Seeing that my collaborators use primarily acrobat reader it looks like I'm stuck with this limit. Thanks for the help.


Vince


Marc Schwartz wrote:

On Wed, 2003-11-19 at 15:21, Prof Brian Ripley wrote:


On Wed, 19 Nov 2003, Vince Forgetta wrote:



What is (or how to I change) the maximum width of a pdf image. I am trying to make a pdf image:

pdf(file="out.pdf",width=200,height=20)

and I can't get the image to be more that 200 inches wide i.e. I get


an

empty out.pdf . Is there a solution around this.


There is no such limit, and I don't get an empty file. Are you _sure_
the
limit is not in your own software, that is in e.g. acrobat? It seems
acrobat does have a 200" width limit, but other viewers do work.




One quick follow up thought.

Are you remembering to call dev.off() after your plot?  If you don't,
depending upon the nature of your plot, the pdf file will be empty since
the graphic content will not be flushed to the file until the device is
closed.

Try this:

pdf(file="out.pdf", width = 200, height = 20)
barplot(1:10)
dev.off()

and then look at the file.

I can view that file just fine with Acrobat 5 under Fedora Core 1 as
well as the other pdf viewers.

HTH,

Marc Schwartz







--
+-----------------------------------------------------------+
|  Vincenzo Forgetta                                        |
|  Computational Biology                                    |
|  McGill University and Genome Quebec Innovation Centre    |
|  740 Dr. Penfield Avenue                                  |
|  Room 7211                                                |
|  Montreal, Quebec Canada, H3A 1A4                         |
|  Tel: 514-398-3311 00476                                  |
|  Email: [EMAIL PROTECTED]                    |
+-----------------------------------------------------------+

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help

Reply via email to