]> git.sesse.net Git - webpdf/blobdiff - index.html
Added first files.
[webpdf] / index.html
diff --git a/index.html b/index.html
new file mode 100644 (file)
index 0000000..2119e13
--- /dev/null
@@ -0,0 +1,99 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE
+  html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
+  "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+  <head>
+    <title>PDF converter : sesse.net</title>
+    <meta name="description" content="Easily and freely create PDFs -- no strings attached" />
+    <link rel="stylesheet" href="http://www.sesse.net/sesse.css" type="text/css" />
+    <link rev="made" href="mailto:sgunderson@bigfoot.com" />
+    <meta name="MSSmartTagsPreventParsing" content="TRUE" />
+  </head>
+  <body>
+    <h1>PDF converter</h1>
+
+    <div class="boxes">
+      <div class="info">
+        <h2>Last updated</h2>
+        <p id="lastupdated">August 5th, 2005</p>
+      </div>
+
+      <div class="nav">
+        <p><a href="sitemap.html">Site map</a> :
+          <a href="index.html">Home</a> :
+         <a href="search.html">Search</a><br />
+          <span class="copy">&copy; 2005 <a href="mailto:sgunderson@bigfoot.com">Steinar H. Gunderson</a>.</span></p>
+      </div>
+    </div>
+
+    <form method="post" action="createpdf.pl" enctype="multipart/form-data">
+      <table>
+        <tr>
+         <th>File:</th>
+         <td><input type="file" name="input" /></td>
+       </tr>
+       <tr>
+         <th>PDF preset:</th>
+         <td>
+           <select name="preset">
+             <option value="default">Default</option>
+             <option value="screen">Screen (72dpi, no embedded fonts)</option>
+             <option value="ebook">eBook (150dpi)</option>
+             <option value="printer">Printer (300dpi)</option>
+             <option value="prepress">Prepress (300dpi, better JPEG quality)</option>
+           </select>
+         </td>
+       </tr>
+       <tr>
+         <th colspan="2">
+           <input type="submit" value="Make PDF" />
+         </th>
+       </tr>
+      </table>
+    </form>
+
+    <p>This is an “anything to PDF” converter, not unlike what you get
+      from <a href="http://createpdf.adobe.com/">Adobe's PDF Online service</a>,
+      but completely free and running entirely on free software. It is also
+      completely without any kind of warranty or uptime guarantees -- I'll
+      try to do my best keeping it up, but in case people start dumping
+      multi-gigabyte jobs etc. on it regularily I might just not be able to
+      do that. Please be nice :-)</p>
+
+    <p>Note that there is minimal security involved; if I feel like it, I
+      might even take a look at what people are processing. Do not submit
+      any sensitive data!</p>
+
+    <p>The converter is currently based on <a href="http://www.ghostscript.com/">GPL
+      GhostScript</a> 8.01 (yes, a bit old); everything is pushed through it in one form or the
+      other (if only for image recompression etc.). The PDF presets match
+      exactly those in GhostScript itself -- see the
+      <a href="http://www.cs.wisc.edu/~ghost/doc/cvs/Ps2pdf.htm#Options">table
+      of options</a> for more details. (Note that anything except “default”
+      will override whatever input parameters there are in the input PostScript
+      file.)</p>
+
+    <p>The converter can currently handle the following formats, autodetected
+      by file extension <em>only</em>:</p>
+
+    <ul>
+      <li>PostScript (.ps) and Encapsulated PostScript (.pdf), via GS directly</li>
+      <li>Plain text (.txt), via mpage</li>
+      <li>BMP (.bmp), PNG (.png), JPEG (.jpg/.jpeg), XPM (.xpm), via <a href="http://www.imagemagick.com">ImageMagick</a>
+        (somewhat odd image placement for now due to bugs in Debian sarge's
+       version of ImageMagick).</li>
+      <li>Microsoft Word (.doc), Excel (.xls) and PowerPoint (.ppt), via
+        <a href="http://www.openoffice.org">OpenOffice.org</a> (could be
+       slightly sketchy at times, let me know if it's broken).</li>
+      <li>Lots of different programming-related formats (.c, .pl, .js, etc.),
+        via <a href="http://www.vim.org/">Vim</a>.</li>
+    </ul>
+
+    <p>If somebody knows a good way of getting a Gecko-based browser to
+      convert from an URL or HTML file to PostScript (on the command line),
+      please let me know; I'd guess HTML would be the most-wanted format
+      missing. :-)</p>
+  </body>
+</html>        
+