Displaying 20 results from an estimated 1000 matches similar to: "pdf-printer"
2016 Feb 18
2
Substitute pdftk with other command
Il giorno gio, 18/02/2016 alle 17.34 +0100, Yamaban ha scritto:
> On Thu, 18 Feb 2016 16:07, Dario Lesca wrote:
>
> > Hi, I must migrate a Centos5 server on Centos7
> >
> > On server Centos5 there is a shell procedure witch add to PDF a
> > timestamp like this example:
> >
> > http://i.stack.imgur.com/OBsqX.png
> >
> > with this command:
2000 Dec 19
1
packages installation failed on Linux
Hi all,
I've successfully compiled R-1.2 on a Linux box (Mandrake 7.1). However,
when I installed packages from sources, I run into problems with the
packages logspline and tseries. The error messages are as follows. Can
anyone help? The compiler is gcc 2.95.3, if that helps.
Andy
================================================
Installing source package `logspline' ...
libs
gcc
2016 Feb 18
0
Re: Substitute pdftk with other command
On Thu, 18 Feb 2016 16:07, Dario Lesca wrote:
> Hi, I must migrate a Centos5 server on Centos7
>
> On server Centos5 there is a shell procedure witch add to PDF a
> timestamp like this example:
>
> http://i.stack.imgur.com/OBsqX.png
>
> with this command:
> $ pdftk input.pdf stamp overlay.pdf output stamped.pdf
>
> Into Centos7 pdftk it is no longer allowed
>
2016 Feb 18
2
Substitute pdftk with other command
Hi, I must migrate a Centos5 server on Centos7
On server Centos5 there is a shell procedure witch add to PDF a
timestamp like this example:
http://i.stack.imgur.com/OBsqX.png
with this command:
$ pdftk input.pdf stamp overlay.pdf output stamped.pdf
Into Centos7 pdftk it is no longer allowed
Someone knows some other command to replace it or other ways to do
this?
Or how I can install pdftk on
2017 May 12
1
get pdftk into (or from) a repo
On Thu, 11 May 2017, ken wrote:
> On 05/11/2017 07:07 PM, ken wrote:
>> On 05/11/2017 06:49 PM, Leon Fauster wrote:
>>>> Am 11.05.2017 um 22:26 schrieb ken <gebser at mousecar.com>:
>>>>
>>>> pdftk used to be in a repo... or maybe it still is, but I don't know
>>>> which one. Anyone know?
>>>>
>>> an old
2011 Jan 10
0
Package animation update 2.0-1
Hi,
The package animation 2.0-1 is on CRAN now
(http://cran.r-project.org/package=animation).
? ? ? ? ? ? ? ? ?CHANGES IN animation VERSION 2.0-1
NEW FEATURES
? ?o demo('Xmas_card') contributed by Yuan Huang
? ?o demo('flowers') to show how to download images from the Internet
?and create an animation
? ?o a new function pdftk() as a wrapper to call the Pdftk toolkit
2011 Jan 10
0
Package animation update 2.0-1
Hi,
The package animation 2.0-1 is on CRAN now
(http://cran.r-project.org/package=animation).
? ? ? ? ? ? ? ? ?CHANGES IN animation VERSION 2.0-1
NEW FEATURES
? ?o demo('Xmas_card') contributed by Yuan Huang
? ?o demo('flowers') to show how to download images from the Internet
?and create an animation
? ?o a new function pdftk() as a wrapper to call the Pdftk toolkit
2015 Jul 01
0
[PATCH 2/3] mllib: add and use last_part_of
Collect this small snippet to get the part of a string after the last
occurrency of a character; replace with it the current snippets doing
the same.
Should be just code motion.
---
customize/password.ml | 4 +---
mllib/common_utils.ml | 5 +++++
mllib/common_utils.mli | 3 +++
sysprep/sysprep_operation_user_account.ml | 4 +---
2018 Jan 14
0
consolidate three function into one
HI R users,
I construct dendrogram tree and cut the tree into different clusters, then generate survival curves by the following three functions. All variables are included in an inputfile.
Can you help me to consolidate the following three function into one functions? I thought about using if else function, but not sure how to do it.
Thank you,
Ding
# function to generate RFS
RFS2cluster
2015 Jul 01
0
Re: [PATCH 1/2] mllib: add and use last_part_of
On Wed, Jul 01, 2015 at 05:49:06PM +0200, Pino Toscano wrote:
> Collect this small snippet to get the part of a string after the last
> occurrency of a character; replace with it the current snippets doing
> the same.
>
> Should be just code motion.
> ---
> customize/password.ml | 5 +++--
> mllib/common_utils.ml | 7 +++++++
>
2010 Jul 02
1
How to user PDF::Toolkit.pdftk ?
Hi,
I tried to fill a PDF fill template with an xdp file by using
PDF::Toolkit.pdftk("C:/pdf/fic2028.xdp", "fill_form",
"C:/pdf/fic2028.pdf")
But I got the following error
Errno::ENOENT (No such file or directory - "pdftk" "C:/pdf/fic2028.xdp"
"fill_form" "C:/pdf/fic2028.pdf" "-" "dont_ask")
I
2018 Jan 14
0
consolidate three function into one
FAQ 7.22
You must print a ggplot object, for example with
print(m52.2cluster)
For the FAQ, run the line
system.file("../../doc/FAQ")
in R on your computer.
Open up the resulting filepath in your favorite editor and scroll down to 7.22
On Sun, Jan 14, 2018 at 4:21 PM, Ding, Yuan Chun <ycding at coh.org> wrote:
> Hi Bert,
>
> I am sorry to bother you on weekend.
>
2015 Jun 07
2
Mail Merge data to a pdf file by overlaying the data on the image
On Sun, 2015-06-07 at 13:16 -0600, Frank Cox wrote:
> On Sun, 07 Jun 2015 13:10:52 -0500
> Gregory P. Ennis wrote:
>
> > What I would really like to be able to do is to run a script that
> > can
> > fill in the input fields of the pdf file on the fly and then create
> > a
> > new pdf file with the same resolution as the virgin pdf file that
> > has
2018 Jan 15
0
consolidate three function into one
That is certainly OK, but you can also just use
print(ggsurvplot(...))
as your final statement.
out <- RFS( ...)
would then return the ggsurvplot object *and* graph it.
Any good R tutorial or a web search will provide more details on function
returns, which you might find useful.
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along and
2018 Jan 14
0
consolidate three function into one
Hi Bert,
Thank you, yes, you are right. I want to consolidate the three functions into one functions by adding more arguments, adding flexibility to accommodate the number of clusters or the number of Kaplan Meier curves generated in one figure. So, I just need to define one function.
Thanks,
Ding
From: Bert Gunter [mailto:bgunter.4567 at gmail.com]
Sent: Sunday, January 14, 2018 9:50 AM
2018 Jan 15
1
consolidate three function into one
Thank you, your suggestion is simpler and logically better. I had impression that the last object in a function gets returned, so I did not add the print function at the bottom line of the function definition. Returning an object and graph the object are different process, I am a beginner for writing R function and need to find a good guide source about writing R functions. If you know a good
2017 May 11
3
get pdftk into (or from) a repo
On 05/11/2017 06:49 PM, Leon Fauster wrote:
>> Am 11.05.2017 um 22:26 schrieb ken <gebser at mousecar.com>:
>>
>> pdftk used to be in a repo... or maybe it still is, but I don't know which one. Anyone know?
>>
> an old one is in the "dead" rpmforge repo.
>
At https://www.pdflabs.com/docs/install-pdftk-on-redhat-or-centos/ they
have version 2.0
2017 May 12
0
get pdftk into (or from) a repo
On 05/11/2017 07:07 PM, ken wrote:
> On 05/11/2017 06:49 PM, Leon Fauster wrote:
>>> Am 11.05.2017 um 22:26 schrieb ken <gebser at mousecar.com>:
>>>
>>> pdftk used to be in a repo... or maybe it still is, but I don't know
>>> which one. Anyone know?
>>>
>> an old one is in the "dead" rpmforge repo.
>>
>
> At
2017 May 13
0
get pdftk into (or from) a repo
On 05/12/2017 03:39 AM, Philippe BOURDEU d'AGUERRE wrote:
> Le 12/05/2017 ? 02:46, ken a ?crit :
>> It's worth mentioning that this is a really nice utility for
>> manipulating PDFs, taking them apart, rearranging them, putting pages
>> together, and a whole lot more. I've used it hundreds of times.
>> Probably anyone who has to work with PDFs would have
2018 Jan 14
2
consolidate three function into one
Hi Bert,
I am sorry to bother you on weekend.
I am still struggling on defining a correct function.
I first defined the function RFS (see below), then run it by provide the two argument.
m52.2cluster <-RFS(inputfile =allinfo_m52, N=2 )
I do not get error message, but no figure displays on screen. I do not know what is going on.
Can you help me a little more on this issue?
Thank you,