Any API converting different file format to POSTSCRIPT file format?
Hi All,
Hey guys I am in search for any api for converting various file formats into Postscript..
Is there any way?
Thank you very much for inversting your valuable time.
Regards,
Sumit
Re: Any API converting different file format to POSTSCRIPT file format?
The way I see it, it would be a very serious API and way outside the scope of Qt.
Re: Any API converting different file format to POSTSCRIPT file format?
What kind of formats? Basically Ghostscript handles a number of formats or you can use libmagick from ImageMagick but that will probably give you just a bitmap embedded into a postscript container.
Re: Any API converting different file format to POSTSCRIPT file format?
Quote:
Originally Posted by
wysota
What kind of formats? Basically Ghostscript handles a number of formats or you can use libmagick from ImageMagick but that will probably give you just a bitmap embedded into a postscript container.
Hi,
Thanx for reply..
I want to convert pdf to postscript file in QT only....
What do you think about setouputFormat() function? will it print in PS format? if yes then I think that means ,it used for conversion into PS format...Is it so?
Is there Any other way in Qt?
Regards,
Sumit
Added after 13 minutes:
Quote:
Originally Posted by
wysota
What kind of formats? Basically Ghostscript handles a number of formats or you can use libmagick from ImageMagick but that will probably give you just a bitmap embedded into a postscript container.
Hi,
Is there any way to use Ghostscript in Qt.?
Regards,
Sumit:)
Re: Any API converting different file format to POSTSCRIPT file format?
Quote:
Originally Posted by
surwassu
I want to convert pdf to postscript file in QT only....
It's easiest to use an external tool such as pdf2ps.
Quote:
What do you think about setouputFormat() function? will it print in PS format?
It will but how will you read a pdf file first? You could do that using poppler but that will probably just give you a bitmap.
Quote:
Is there any way to use Ghostscript in Qt.?
Sure, use QProcess.
Re: Any API converting different file format to POSTSCRIPT file format?
Quote:
Originally Posted by
wysota
It's easiest to use an external tool such as pdf2ps.
It will but how will you read a pdf file first? You could do that using poppler but that will probably just give you a bitmap.
Sure, use
QProcess.
hi ,
Thanks for reply
I will try using that......
Regards,
Sumit