<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>tag:www.local-guru.net,2005:/blog/tag/ebook</id>
  <link type="text/html" href="http://www.local-guru.net" rel="alternate"/>
  <link type="application/atom+xml" href="http://www.local-guru.net/blog/tag/ebook.atom" rel="self"/>
  <title>GuruBlog : Articles about ebook</title>
  <subtitle>local-guru.net</subtitle>
  <updated>2011-02-11T11:44:49+01:00</updated>
  <generator>GuruBlog engine</generator>
  <entry>
    <id>tag:www.local-guru.net,2005:Article/365</id>
    <published>2011-02-11T11:44:49+01:00</published>
    <updated>2011-02-11T11:44:49+01:00</updated>
    <link type="text/html" href="http://www.local-guru.net//blog/2011/2/11/processing-ebook-beta-2" rel="alternate"/>
    <author>
      <name>Nikolaus Gradwohl</name>
    </author>
    <title type="html">Processing Ebook - beta 2</title>
    <category term="processing" scheme="http://www.local-guru.net/blog/tag/processing"/>
    <category term="ebook" scheme="http://www.local-guru.net/blog/tag/ebook"/>
    <content type="html">&lt;p&gt;On &lt;a href="http://www.local-guru.net/blog/2010/12/24/processing-ebook-beta-door-24"&gt;December 24&lt;/a&gt; I released the first beta version of
my &lt;a href="http://www.local-guru.net/blog/pages/processing-ebook"&gt;Processing Ebook&lt;/a&gt;. Now I corrected countless errors and typos,
added some of the missing screenshots and started to check all the code examples (special thanx to Ersin Kurun and Dennis Daniels
for the corrected and annotated versions).&lt;/p&gt;

&lt;p&gt;I uploaded the next beta version to &lt;a href="http://www.local-guru.net/blog/pages/processing-ebook"&gt;the project page&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Changes I made in this version:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;corrected countles typos and spelling errors&lt;/li&gt;
&lt;li&gt;added missing screenshots&lt;/li&gt;
&lt;li&gt;fixed the code examples in the game chapter&lt;/li&gt;
&lt;li&gt;removed the "extending" chapter - I think it is to complicated for a beginner. I plan to make a seperate tutorial from this chapter&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;I'm still not sure about the 3D chapter. Maybe I kick it too in the next version. I'm also planning to support other formates like
html, epub, mobi ...&lt;/p&gt;

&lt;p&gt;I still would like to receive feedback, hints, annotations, suggestions, ...&lt;/p&gt;
</content>
  </entry>
  <entry>
    <id>tag:www.local-guru.net,2005:Article/354</id>
    <published>2010-12-24T08:22:00+01:00</published>
    <updated>2010-12-24T08:22:00+01:00</updated>
    <link type="text/html" href="http://www.local-guru.net//blog/2010/12/24/processing-ebook-beta-door-24" rel="alternate"/>
    <author>
      <name>Nikolaus Gradwohl</name>
    </author>
    <title type="html">Processing EBook Beta - Door 24</title>
    <category term="processing" scheme="http://www.local-guru.net/blog/tag/processing"/>
    <category term="ebook" scheme="http://www.local-guru.net/blog/tag/ebook"/>
    <category term="calendar" scheme="http://www.local-guru.net/blog/tag/calendar"/>
    <category term="advent" scheme="http://www.local-guru.net/blog/tag/advent"/>
    <content type="html">&lt;p&gt;I started a little &lt;a href="http://www.local-guru.net/blog/pages/advent2010"&gt;Advent Calendar&lt;/a&gt; containing Processing sketches.&lt;/p&gt;

&lt;p&gt;In Door 24 I haven't hidden a processing sketch as usual.&lt;/p&gt;

&lt;p&gt;A while ago I started writing a book about processing. This is the first Beta release -
It's far from done but I crave for feedback - so please please please read it and leave a comment
or drop me a mail :-)&lt;/p&gt;

&lt;p&gt;What should I change? What am I missing? What sentences aren't propper english? Where are the errors
in the code?&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.local-guru.net/blog/pages/processing-ebook"&gt;Download a Copy here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Happy Holidays :-)&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/ebook/ebook_sc.png" alt="ebook" /&gt;&lt;/p&gt;
</content>
  </entry>
  <entry>
    <id>tag:www.local-guru.net,2005:Article/177</id>
    <published>2009-06-16T03:04:00+02:00</published>
    <updated>2009-06-16T03:04:00+02:00</updated>
    <link type="text/html" href="http://www.local-guru.net//blog/2009/6/16/ebook-pdf-border-remover" rel="alternate"/>
    <author>
      <name>Nikolaus Gradwohl</name>
    </author>
    <title type="html">ebook pdf border remover</title>
    <category term="ebook" scheme="http://www.local-guru.net/blog/tag/ebook"/>
    <category term="pdf" scheme="http://www.local-guru.net/blog/tag/pdf"/>
    <content type="html">&lt;p&gt;cropborder is a little java-tool i wrote to remove the white border of a pdf file, to make it more readable on an
ebook-reader.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/img/guru/cropborder.png" alt="cropborder example" /&gt;&lt;/p&gt;

&lt;p&gt;the white margin around the content is very usefull when printed on paper, but is really anoying on an ebook-reader
because it only makes the text smaller.&lt;/p&gt;

&lt;p&gt;to use the tool call it with&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;java -jar cropborder.jar [-in &amp;lt;input.pdf&amp;gt;] [-out &amp;lt;output.pdf&amp;gt;] [-f &amp;lt;scaling factor&amp;gt;] [-l &amp;lt;dots to move the left border&amp;gt;] [-d &amp;lt;dots to move the lower border&amp;gt;]
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;the default values for the parameter are&lt;/p&gt;

&lt;p&gt;in.pdf for intput
out.pdf for output
1.4 for the scaling factor
and shift by -100, and -130 points (a point is a 1/72 inch)&lt;/p&gt;

&lt;p&gt;the tool uses the iText library and is published under the "do whatever you like, but don't blame me if it goes boom"-Licence&lt;/p&gt;

&lt;p&gt;i also made a &lt;a href="http://www.local-guru.net/blog/pages/ebook-pdf-border-remover"&gt;project&lt;/a&gt; page for it&lt;/p&gt;

&lt;h2&gt;Download&lt;/h2&gt;

&lt;p&gt;&lt;a href="http://www.local-guru.net/projects/cropborder/cropborder-0.1.zip"&gt;cropborder-0.1.zip&lt;/a&gt;&lt;/p&gt;
</content>
  </entry>
</feed>

