<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>Debenu Quick PDF Library - PDF SDK Community Forum : Need to Convert PS to PDF</title>
  <link>http://www.quickpdf.org/forum/</link>
  <description><![CDATA[This is an XML content feed of; Debenu Quick PDF Library - PDF SDK Community Forum : I need help - I can help : Need to Convert PS to PDF]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 04 Apr 2026 23:55:43 +0000</pubDate>
  <lastBuildDate>Sat, 01 Jan 2011 19:23:07 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 11.01</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.quickpdf.org/forum/RSS_post_feed.asp?TID=1695</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Debenu Quick PDF Library - PDF SDK Community Forum]]></title>
   <url>http://www.quickpdf.org/forum/forum_images/QPDF_Forum_Title.png</url>
   <link>http://www.quickpdf.org/forum/</link>
  </image>
  <item>
   <title><![CDATA[Need to Convert PS to PDF : Thanks for the reply.I think you...]]></title>
   <link>http://www.quickpdf.org/forum/need-to-convert-ps-to-pdf_topic1695_post7408.html#7408</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1499">stevengupta</a><br /><strong>Subject:</strong> 1695<br /><strong>Posted:</strong> 01 Jan 11 at 7:23PM<br /><br />Thanks for the reply.<br>I think you are saying that quick pdf will not convert a ps file to a PDF file.<br><br>I was previously using acrobat distiller com object, but after moving from 8.0 to acrobat 9.0 the distiller com object does not work correctly unless the user running the command is actually logged into the terminal server. Under 8.0 it didn't require that.<br>]]>
   </description>
   <pubDate>Sat, 01 Jan 2011 19:23:07 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/need-to-convert-ps-to-pdf_topic1695_post7408.html#7408</guid>
  </item> 
  <item>
   <title><![CDATA[Need to Convert PS to PDF : Embedding raw postscript in a...]]></title>
   <link>http://www.quickpdf.org/forum/need-to-convert-ps-to-pdf_topic1695_post7407.html#7407</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1455">BEvans</a><br /><strong>Subject:</strong> 1695<br /><strong>Posted:</strong> 30 Dec 10 at 5:56PM<br /><br />Embedding raw postscript in a PDF isn't the same as converting a PS file to a PDF. Some PDF viewers won't even show it. In general you print such files to a PDF virtual printer of some kind or use Acrobat Distiller / GhostScript or something equivalent on them directly. <br><br>Some links that might be useful:<br><a href="http://www.planetpdf.com/enterprise/article.asp?C&#111;ntentID=c&#111;nverting_a_post&#115;cript_file_t&amp;gid=6738" target="_blank">Using Acrobat Distiller to convert PS to PDF</a><br><a href="http://www.inkguides.com/merging-extracting-and-c&#111;nverting-post&#115;cript-files.asp#c&#111;nvert-post&#115;cript-to-and-from-&#100;ocuments-and-files" target="_blank">Tools to convert to/from PS</a>]]>
   </description>
   <pubDate>Thu, 30 Dec 2010 17:56:21 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/need-to-convert-ps-to-pdf_topic1695_post7407.html#7407</guid>
  </item> 
  <item>
   <title><![CDATA[Need to Convert PS to PDF : I am trying to convert out a postscript...]]></title>
   <link>http://www.quickpdf.org/forum/need-to-convert-ps-to-pdf_topic1695_post7403.html#7403</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1499">stevengupta</a><br /><strong>Subject:</strong> 1695<br /><strong>Posted:</strong> 27 Dec 10 at 6:10PM<br /><br />I am trying to convert out a postscript file to a PDF file.<br><br>I am using the code below.<br><br>When it comes to the save portion I end up with a blank PDF file.<br><br>Any ideas?<br><br>&nbsp;&nbsp;&nbsp; Public Sub ConvertPS(ByVal PsFile As String)<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim OutputPDF As String<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim psReader As String<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OutputPDF = Replace(UCase(PsFile), ".PS", ".PDF")<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If File.Exists(OutputPDF) Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Kill(OutputPDF)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim objSR As New StreamReader(PsFile)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; psReader = objSR.ReadToEnd<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; objSR.Close()<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim PDFLibrary As QuickPDFAX0723.PDFLibrary<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PDFLibrary = CreateObject("QuickPDFAX0723.PDFLibrary")<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If PDFLibrary.UnlockKey("YOUR KEY HERE!") = 1 Then<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim psO = PDFLibrary.NewPostScriptXObject(psReader)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim i = PDFLibrary.DrawPostScriptXObject(psO)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PDFLibrary.SaveToFile(OutputPDF)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PDFLibrary.RemoveDocument(PDFLibrary.SelectedDocument)<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PDFLibrary = Nothing<br><br><br>&nbsp;&nbsp;&nbsp; End Sub]]>
   </description>
   <pubDate>Mon, 27 Dec 2010 18:10:30 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/need-to-convert-ps-to-pdf_topic1695_post7403.html#7403</guid>
  </item> 
 </channel>
</rss>