Displaying 2 results from an estimated 2 matches for "cdevga".
Did you mean:
devga
2009 May 29
1
png() error in recent R-devel on Windows
...39;res' must be specified unless 'units = \"px\"'")
height <- switch(units, `in` = res, cm = res/2.54, mm = res/25.4,
px = 1) * height
width <- switch(units, `in` = res, cm = res/2.54, mm = 1/25.4,
px = 1) * width
invisible(.External(Cdevga, paste("png:", filename, sep = ""),
width, height, pointsize, FALSE, 1L, NA_real_, NA_real_,
bg, 1, as.integer(res), NA_integer_, FALSE, .PSenv, NA,
restoreConsole, "", FALSE))
}
Note that the call to .External has 19 arguments, the last 2 o...
2008 Mar 29
1
A patch for extending pdf device to embed popup text and web links
.../NAMESPACE 2008-03-29 23:36:12.000000000 +0900
--- R/src/library/grDevices/NAMESPACE 2008-03-30 01:40:49.000000000 +0900
***************
*** 4,10 ****
if(tools:::.OStype() == "windows") {
useDynLib(grDevices, R_chull,
! PicTeX, PostScript, XFig, PDF,
Cdevga=devga, CsavePlot=savePlot,
Type1FontInUse, CIDFontInUse, R_GD_nullDevice)
} else {
--- 4,10 ----
if(tools:::.OStype() == "windows") {
useDynLib(grDevices, R_chull,
! PicTeX, PostScript, XFig, PDF, PDFAnnotBox, PDFTextBoxInfo,
Cdevga...