Gabriel Genellina said unto the world upon 05/21/2007 10:12 AM:
> En Mon, 21 May 2007 10:53:08 -0300, Brian van den Broek
> <[EMAIL PROTECTED]> escribió:
>
>> Gabriel Genellina said unto the world upon 05/21/2007 07:01 AM:
>>> En Mon, 21 May 2007 07:42:21 -0300, revuesbio <[EMAIL PROTECTED]>
>>>
En Mon, 21 May 2007 10:53:08 -0300, Brian van den Broek
<[EMAIL PROTECTED]> escribió:
> Gabriel Genellina said unto the world upon 05/21/2007 07:01 AM:
>> En Mon, 21 May 2007 07:42:21 -0300, revuesbio <[EMAIL PROTECTED]>
>> escribió:
>>
>>> os.system('"C:\Program Files\GnuWin32\bin\tiff2pdf.exe"
Gabriel Genellina said unto the world upon 05/21/2007 07:01 AM:
> En Mon, 21 May 2007 07:42:21 -0300, revuesbio <[EMAIL PROTECTED]>
> escribió:
>
>> os.system('"C:\Program Files\GnuWin32\bin\tiff2pdf.exe" -o C:\test.pdf
>> C:\test.TIF')
>
> \ is used as a escape character in strings.
> Use eith
On 21 mai, 13:01, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote:
> En Mon, 21 May 2007 07:42:21 -0300, revuesbio <[EMAIL PROTECTED]>
> escribió:
>
> > os.system('"C:\Program Files\GnuWin32\bin\tiff2pdf.exe" -o C:\test.pdf
> > C:\test.TIF')
>
> \ is used as a escape character in strings.
> Use eithe
En Mon, 21 May 2007 07:42:21 -0300, revuesbio <[EMAIL PROTECTED]>
escribió:
> os.system('"C:\Program Files\GnuWin32\bin\tiff2pdf.exe" -o C:\test.pdf
> C:\test.TIF')
\ is used as a escape character in strings.
Use either \\ or a raw string, that is:
os.system('"C:\\Program Files\\GnuWin32\\bin\
I'm trying to use tifflib but i have some problems :
when i use direct command line :
"C:\Program Files\GnuWin32\bin\tiff2pdf.exe" -o C:\test.pdf C:
\test.TIF
the pdf is ok.
but when i try to launch command line via python the pdf file is not
created.
where is the problem ?
import os
os.system('
I'm trying to use tifflib but i have some problems.
When i use direct command line like
"C:\Program Files\GnuWin32\bin\tiff2pdf.exe" -o C:\test.pdf C:
\test.TIF
the pdf file is ok.
but when i try to launch command line via python the pdf file doesn't
create.
import os
os.system('"C:\Program Files
In <[EMAIL PROTECTED]>, revuesbio
wrote:
> I'm looking for :
> 1/ the best method to convert tiff files to PDF.
> 2/ and I want to merge these pdf files.
If it doesn't need to be done in pure Python I would use the
command line tools from libtiff: `tiffcp` to copy several tiffs into one
multipage
Hello,
I'm looking for :
1/ the best method to convert tiff files to PDF.
2/ and I want to merge these pdf files.
thank you for your help
--
http://mail.python.org/mailman/listinfo/python-list