<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/pdfcreator/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/pdfcreator/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Wed, 07 Jan 2026 20:57:30 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/pdfcreator/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/pdfcreator/wiki/Home/?limit=25#cba9</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Is this project no longer being developed?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">alida</dc:creator><pubDate>Wed, 07 Jan 2026 20:57:30 -0000</pubDate><guid>https://sourceforge.netb594810601fffd1d7ada7ea078e2b98e9d50ab14</guid></item><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/pdfcreator/wiki/Home/?limit=25#e132/956d</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi, i am developing &lt;a class="" href="//convert.app/jpg-to-pdf/"&gt;JPG to PDF&lt;/a&gt; js web app. Can i use this project for wasm?   To convert a PDF document into JavaScript code, you'll typically need a library or tool that can parse the PDF file and then generate JavaScript code to recreate its content or manipulate it in some way. One popular library for working with PDF files in JavaScript is PDF.js, developed by Mozilla.&lt;/p&gt;
&lt;p&gt;PDF.js is a JavaScript library that allows you to render PDF files directly in the browser using HTML5 canvas. While PDF.js primarily focuses on rendering PDF files, you can also use it to extract text, images, and other content from a PDF document.&lt;/p&gt;
&lt;p&gt;Here's a basic outline of how you might use PDF.js to convert a PDF document into JavaScript code:&lt;/p&gt;
&lt;p&gt;PDF.js library in your HTML file:&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;&lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="n"&gt;script&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;src&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;"pdf.js"&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span class="n"&gt;script&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt;

&lt;span class="o"&gt;//&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;Path&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;to&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;your&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;PDF&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;file&lt;/span&gt;
&lt;span class="k"&gt;var&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;pdfUrl&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s1"&gt;'path/to/your/pdf/file.pdf'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="o"&gt;//&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;Asynchronously&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nb"&gt;load&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;PDF&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;file&lt;/span&gt;
&lt;span class="n"&gt;PDFJS&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;getDocument&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;pdfUrl&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;promise&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;then&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;function&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;pdf&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;
&lt;span class="w"&gt;    &lt;/span&gt;&lt;span class="o"&gt;//&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;Loop&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;through&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;each&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;page&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;of&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;the&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;PDF&lt;/span&gt;
&lt;span class="w"&gt;    &lt;/span&gt;&lt;span class="k"&gt;for&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="k"&gt;var&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;pageNumber&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;pageNumber&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;&amp;lt;=&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;pdf&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;numPages&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;pageNumber&lt;/span&gt;&lt;span class="o"&gt;++&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;
&lt;span class="w"&gt;        &lt;/span&gt;&lt;span class="o"&gt;//&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;Load&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;the&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;page&lt;/span&gt;
&lt;span class="w"&gt;        &lt;/span&gt;&lt;span class="n"&gt;pdf&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;getPage&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;pageNumber&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;then&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;function&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;page&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;
&lt;span class="w"&gt;            &lt;/span&gt;&lt;span class="o"&gt;//&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;Render&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;the&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;page&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;into&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;a&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;canvas&lt;/span&gt;
&lt;span class="w"&gt;            &lt;/span&gt;&lt;span class="k"&gt;var&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;scale&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mf"&gt;1.5&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="w"&gt;            &lt;/span&gt;&lt;span class="k"&gt;var&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;viewport&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;page&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;getViewport&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;scale&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;scale&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;});&lt;/span&gt;

&lt;span class="w"&gt;            &lt;/span&gt;&lt;span class="k"&gt;var&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;canvas&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;document&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;createElement&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;'canvas'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="w"&gt;            &lt;/span&gt;&lt;span class="k"&gt;var&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;context&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;canvas&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;getContext&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;'2d'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="w"&gt;            &lt;/span&gt;&lt;span class="n"&gt;canvas&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;height&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;viewport&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;height&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="w"&gt;            &lt;/span&gt;&lt;span class="n"&gt;canvas&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;width&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;viewport&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;width&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="w"&gt;            &lt;/span&gt;&lt;span class="k"&gt;var&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;renderContext&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;
&lt;span class="w"&gt;                &lt;/span&gt;&lt;span class="n"&gt;canvasContext&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;context&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;span class="w"&gt;                &lt;/span&gt;&lt;span class="n"&gt;viewport&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;viewport&lt;/span&gt;
&lt;span class="w"&gt;            &lt;/span&gt;&lt;span class="p"&gt;};&lt;/span&gt;

&lt;span class="w"&gt;            &lt;/span&gt;&lt;span class="n"&gt;page&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;render&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;renderContext&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;promise&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;then&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;function&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;
&lt;span class="w"&gt;                &lt;/span&gt;&lt;span class="o"&gt;//&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;Convert&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;canvas&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;content&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;to&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;JavaScript&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;code&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="ow"&gt;or&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;perform&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;other&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;operations&lt;/span&gt;
&lt;span class="w"&gt;                &lt;/span&gt;&lt;span class="k"&gt;var&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;imageData&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;canvas&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;toDataURL&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="w"&gt;                &lt;/span&gt;&lt;span class="n"&gt;console&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;imageData&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="w"&gt;                &lt;/span&gt;&lt;span class="o"&gt;//&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;You&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;can&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;manipulate&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;imageData&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="ow"&gt;or&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;perform&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;other&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;actions&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;here&lt;/span&gt;
&lt;span class="w"&gt;            &lt;/span&gt;&lt;span class="p"&gt;});&lt;/span&gt;
&lt;span class="w"&gt;        &lt;/span&gt;&lt;span class="p"&gt;});&lt;/span&gt;
&lt;span class="w"&gt;    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;});&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;This code will load the PDF file specified by pdfUrl, render each page of the PDF into a canvas, and then convert the canvas content into JavaScript code or perform other operations as needed. You can customize this code to suit your specific requirements, such as extracting text, images, or other content from the PDF document.&lt;/p&gt;
&lt;p&gt;Keep in mind that PDF.js primarily focuses on rendering PDF files, so if you need more advanced features like editing or creating PDF files programmatically, you may need to explore other libraries or tools.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">alida</dc:creator><pubDate>Mon, 22 Apr 2024 11:15:04 -0000</pubDate><guid>https://sourceforge.net659d6a8171bce0deaead6f95219199c50f73bd2e</guid></item><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/pdfcreator/wiki/Home/?limit=25#e132/9967</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;PDFForge is a software suite designed for creating, converting, and editing PDF files. It offers a range of tools and features to facilitate the manipulation of PDF documents. The primary components of PDFForge typically include:&lt;/p&gt;
&lt;p&gt;PDFCreator: This is the flagship tool of PDFForge, primarily used for converting documents from various formats (such as Word, Excel, PowerPoint, images, etc.) to PDF. It installs a virtual printer driver on your system, allowing you to "print" documents from any application to create PDF files.&lt;/p&gt;
&lt;p&gt;PDF Architect: PDF Architect is a comprehensive PDF editor that allows users to modify PDF files, including tasks like merging, splitting, rearranging pages, adding annotations, editing text, and more.&lt;br/&gt;
&lt;a href="https://www.pdfforge.org/pdfarchitect" rel="nofollow"&gt;https://www.pdfforge.org/pdfarchitect&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;PDFCreator Server: This component is designed for businesses and enterprises, providing centralized PDF creation and management capabilities across networks. It offers features like automated PDF creation, server-based PDF processing, and integration with existing workflows.&lt;/p&gt;
&lt;p&gt;PDFCreator Terminal Server: Similar to PDFCreator Server, this component is tailored for Terminal Servers and Citrix environments, enabling efficient PDF creation and management for multiple users simultaneously.&lt;/p&gt;
&lt;p&gt;PDFCreator Online: This is a cloud-based version of PDFCreator that allows users to create PDF files directly from their web browser without installing any software locally.&lt;br/&gt;
&lt;a href="https://www.pdfforge.org/online/en" rel="nofollow"&gt;https://www.pdfforge.org/online/en&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Additional Tools: PDFForge may also include various additional tools and utilities, such as &lt;a class="" href="//convert.app/jpg-to-pdf/"&gt;JPG to PDF&lt;/a&gt; converting for advanced PDF editing features, PDFCreator Plus for additional functionalities in the PDFCreator application, and more.&lt;/p&gt;
&lt;p&gt;Developing PDFForge with WebAssembly (Wasm) would involve adapting its core functionalities into a format compatible with WebAssembly, enabling it to run efficiently within web browsers. This could open up new possibilities for using PDFForge on different platforms and integrating it seamlessly into web applications. However, it would require careful consideration of compatibility, performance optimization, and user experience. &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">App Maker</dc:creator><pubDate>Wed, 27 Mar 2024 13:11:53 -0000</pubDate><guid>https://sourceforge.nete9ec6246a7ef76a8376a5af644f97b6d30a58fa0</guid></item><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/pdfcreator/wiki/Home/?limit=25#925b</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;thanks i will use the software on my   app. &lt;img alt="convert" rel="nofollow" src="https://convert.live/"/&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">App Maker</dc:creator><pubDate>Mon, 25 Oct 2021 20:03:15 -0000</pubDate><guid>https://sourceforge.netffc8474d3b44c2a0ee718cd6f75aad7c857f9781</guid></item><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/pdfcreator/wiki/Home/?limit=25#7a27</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;We're looking for a solution for PCL to PDF converstion.&lt;/p&gt;
&lt;p&gt;Ghostscript's  'gpcl5' seems to do most of the job, but it isn't recognizing 3of9 barcode when we send the pcl command string CHR(27)+"(0Y"+CHR(27)+"(s0p8.11h12v0s0b0T"+CHR(27)+"&amp;amp;a"+STR(X)+"c&amp;amp;a"+STR(Y)+"R"&lt;/p&gt;
&lt;p&gt;I can't find a specific answer about pdfcreator - will it convert PCL to PDF?&lt;br/&gt;
and, if so, does it recognize the 3of9 barcode font command?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Blazek</dc:creator><pubDate>Wed, 03 May 2017 15:50:23 -0000</pubDate><guid>https://sourceforge.net67d97e9644f4fbd8d0cd0d28e6d245be2dd30292</guid></item><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/pdfcreator/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Why do you say that PDFCreator is unwanted? And what makes you say that the expert settings are ignored? Or why PDFCreator would not be open source anymore? PDFCreator just has moved to GitHub like nearly everyone else... &lt;a href="https://github.com/pdfforge/PDFCreator" rel="nofollow"&gt;https://github.com/pdfforge/PDFCreator&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Philip Chinery</dc:creator><pubDate>Mon, 12 Dec 2016 07:45:13 -0000</pubDate><guid>https://sourceforge.netc67970967b15116b8768c8624d4e8e8f3cc0cfb3</guid></item><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/pdfcreator/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Now not only the horribly unwanted PDFCreator is packed, and only with 'expert settings' ignored, but two more bloatware items are attached. And not open source any more.... so why does SF host this project? Please remove this entry, or post clearly how we can remove all this bloatware.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michel</dc:creator><pubDate>Fri, 09 Dec 2016 12:41:10 -0000</pubDate><guid>https://sourceforge.net66281bf463b62c14148bcc7696066ac887cf86a2</guid></item><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/pdfcreator/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;a nice app turned into crap&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Zabir Ahmed</dc:creator><pubDate>Sat, 13 Aug 2016 10:50:19 -0000</pubDate><guid>https://sourceforge.net58fbb2d0ef71a6428828c3535b04acbb18386f99</guid></item><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/pdfcreator/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;It's sad to say it, but you guys are intentionally adding this malware to make a few bucks! Please rethink your business model, your software it's REALLY GREAT!&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">almend</dc:creator><pubDate>Thu, 28 Jul 2016 16:33:38 -0000</pubDate><guid>https://sourceforge.net43beade8d0a05ceb5c34a9b745092b54f8936cc0</guid></item><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/pdfcreator/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Same here, found Stallmonitz, &lt;/p&gt;
&lt;p&gt;"SoftwareBundler:Win32/Stallmonitz has been referred a newly detected Trojan infection especially programmed by cyber criminals for violating user's sensitive information. It is a hazardous threat for the PC. This threat mostly attacks the system based on Windows operating system. SoftwareBundler:Win32/Stallmonitz mostly comes bundled with freeware softwares and splits into the PC via downloading plug-in, add-on, game, porn from several unknown resources. It often lurks inside the PC via running outdated version of firewall and security programs in the system, injecting infected external storage media inside the PC, unverified file sharing etc."&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Carlos Henriques</dc:creator><pubDate>Mon, 16 May 2016 15:51:28 -0000</pubDate><guid>https://sourceforge.netb63d5d4f82437de30c0c505606b9d31e5112c382</guid></item></channel></rss>