<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  
  
  <channel>
    <title>chrisjrob: tiff</title>
    <link>https://chrisjrob.com</link>
    <atom:link href="https://chrisjrob.com/tag/tiff/feed/index.xml" rel="self" type="application/rss+xml" />
    <description>GNU Linux, Perl and FLOSS</description>
    <language>en-gb</language>
    <pubDate>Fri, 13 Feb 2026 17:22:31 +0000</pubDate>
    <lastBuildDate>Fri, 13 Feb 2026 17:22:31 +0000</lastBuildDate>
    
    <item>
      <title>Howto | Open Multipage TIFFs in KDE</title>
      <link>https://chrisjrob.com/2009/03/21/open-multipage-tiffs-in-kde/</link>
      <pubDate>Sat, 21 Mar 2009 06:19:53 +0000</pubDate>
      <author>chrisjrob@gmail.com (Chris Roberts)</author>
      <guid>https://chrisjrob.com/2009/03/21/open-multipage-tiffs-in-kde</guid>
      <description>
       <![CDATA[
         
         <h2 id="the-issue">The Issue</h2>

<p>Most image viewers only show the first page of a multi-page <code class="language-plaintext highlighter-rouge">TIFF</code>.  The KDE document viewers, of which there are many (KView, KFax, KDVI) will not open them, stating “This version can only handle fax files”.</p>

<!--more-->

<h2 id="the-explanation">The Explanation</h2>

<p>Wikipedia states that: -“Programmers were free to specify new tags and options, but not all implemented programs supported all created tags. As a result, TIFF soon became the lowest common denominator. Today, the majority of TIFF images and readers are still based on uncompressed 32-bit CMYK or 24-bit RGB images.”~</p>

<p>The end result is that the KDE document viewers except a CCITT Group 4 compressed monochrome document, whilst ImageMagick creates a JPEG compressed document.</p>

<h2 id="the-solution">The Solution</h2>

<p>Currently my solution is simply to convert the document as required (you will need ImageMagick on your system):</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>$ convert source.tif -monochrome -compress group4 destination.tif
</code></pre></div></div>

<h2 id="further-thoughts">Further Thoughts</h2>

<p>This fix is fine for geeks, but not much use for mere mortals.  My thought is to create a script which uses ImageMagick to interrogate the TIFF file, convert it, if required, into a temporary location, and then open it in one of the KDE document viewers.  Then associate the file-type with that script.</p>

<h2 id="references">References</h2>

<ul>
  <li>http://www.imagemagick.org/Usage/formats/#tiff</li>
</ul>


       ]]>
      </description>
    </item>
    
  </channel> 
</rss>
