<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    
    <title>blog.crox.net (Entries tagged as photo)</title>
    <link>https://blog.crox.net/</link>
    <description></description>
    <dc:language>en</dc:language>
    <generator>Serendipity 2.5.0 - http://www.s9y.org/</generator>
    <pubDate>Mon, 16 Mar 2020 22:10:00 GMT</pubDate>

    <image>
    <url>https://blog.crox.net/templates/2k11/img/s9y_banner_small.png</url>
    <title>RSS: blog.crox.net - </title>
    <link>https://blog.crox.net/</link>
    <width>100</width>
    <height>21</height>
</image>

<item>
    <title>Add HEIF support to Ubuntu Linux 18.04 (thumbnails / gimp) - preview and open HEIC files from iPhone directly in Ubuntu</title>
    <link>https://blog.crox.net/archives/114-Add-HEIF-support-to-Ubuntu-Linux-18.04-thumbnails-gimp-preview-and-open-HEIC-files-from-iPhone-directly-in-Ubuntu.html</link>
    
    <comments>https://blog.crox.net/archives/114-Add-HEIF-support-to-Ubuntu-Linux-18.04-thumbnails-gimp-preview-and-open-HEIC-files-from-iPhone-directly-in-Ubuntu.html#comments</comments>
    <wfw:comment>https://blog.crox.net/wfwcomment.php?cid=114</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>https://blog.crox.net/rss.php?version=2.0&amp;type=comments&amp;cid=114</wfw:commentRss>
    

    <author>nospam@example.com (crox)</author>
    <content:encoded>
    Since Apple moved from &lt;a href=&quot;https://en.wikipedia.org/wiki/JPEG&quot; title=&quot;JPEG&quot;&gt;JPEG&lt;/a&gt; to &lt;a href=&quot;https://en.wikipedia.org/wiki/High_Efficiency_Image_File_Format&quot; title=&quot;HEIF&quot;&gt;HEIF&lt;/a&gt; as default format about two years ago, there has been a lot of progress.&lt;br /&gt;
&lt;br /&gt;
There is a very straightforward way to add minimal HEIC/HEIF support to Ubuntu:&lt;pre&gt;sudo add-apt-repository ppa:strukturag/libheif&lt;br/&gt;sudo apt-get install heif-gdk-pixbuf heif-gimp-plugin heif-thumbnailer&lt;/pre&gt;&lt;br /&gt;
That&#039;s it! You don&#039;t even need to logout or restart, the new functionality is available immediately.&lt;br /&gt;
&lt;br /&gt;
More details &lt;a href=&quot;https://github.com/strukturag/libheif&quot; title=&quot;github/strukturag&quot;&gt;here&lt;/a&gt; and &lt;a href=&quot;https://launchpad.net/~strukturag/+archive/ubuntu/libheif&quot; title=&quot;strukturag PPA&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Mon, 16 Mar 2020 22:10:00 +0000</pubDate>
    <guid isPermaLink="false">https://blog.crox.net/archives/114-guid.html</guid>
    <category>gimp</category>
<category>heic</category>
<category>heif</category>
<category>iphone</category>
<category>linux</category>
<category>photo</category>
<category>ubuntu</category>

</item>
<item>
    <title>Accessing iPhone (iOS 10.2.1) pictures from Ubuntu</title>
    <link>https://blog.crox.net/archives/104-Accessing-iPhone-iOS-10.2.1-pictures-from-Ubuntu.html</link>
    
    <comments>https://blog.crox.net/archives/104-Accessing-iPhone-iOS-10.2.1-pictures-from-Ubuntu.html#comments</comments>
    <wfw:comment>https://blog.crox.net/wfwcomment.php?cid=104</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>https://blog.crox.net/rss.php?version=2.0&amp;type=comments&amp;cid=104</wfw:commentRss>
    

    <author>nospam@example.com (crox)</author>
    <content:encoded>
    Recent changes introduced with iOS 10 prevent you from mounting an iPhone on a regular Ubuntu installation.&lt;br /&gt;
&lt;br /&gt;
The PPA by Martin Salbaba used to fix the &lt;a href=&quot;https://bugs.launchpad.net/ubuntu/+source/libimobiledevice/+bug/1623666&quot;&gt;issue&lt;/a&gt;, but it hasn&#039;t been updated in a while, and now when I connect my iPhone (running iOS 10.2.1) the pictures are no longer accessible, although the documents are still there.&lt;br /&gt;
&lt;br /&gt;
This solution worked for me (Ubuntu 16.04):&lt;br /&gt;
&lt;br /&gt;
- install libimobiledevice6 + dependencies from this PPA: &lt;a href=&quot;https://launchpad.net/~martin-salbaba/+archive/ubuntu/ppa+libimobiledevice&quot;&gt;https://launchpad.net/~martin-salbaba/+archive/ubuntu/ppa+libimobiledevice&lt;/a&gt; (follow the instructions there)&lt;br /&gt;
&lt;br /&gt;
- install newer libimobiledevice version according to the &quot;recipe&quot; by A.B. here: &lt;a href=&quot;http://askubuntu.com/questions/598940/libimobiledevice-1-2-ios-8-support-for-ubuntu-14-04-trusty&quot;&gt;http://askubuntu.com/questions/598940/libimobiledevice-1-2-ios-8-support-for-ubuntu-14-04-trusty&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
- install ifuse according to the same method:&lt;pre&gt;cd ~/src/&lt;br /&gt;git clone https://github.com/libimobiledevice/ifuse.git&lt;br /&gt;cd ifuse/&lt;br /&gt;sudo apt-get install libfuse2 libfuse-dev&lt;br /&gt;./autogen.sh &lt;br /&gt;make&lt;br /&gt;sudo checkinstall&lt;/pre&gt;&lt;br /&gt;
You can now mount your iPhone like this:&lt;pre&gt;mkdir ~/mnt&lt;br /&gt;ifuse ~/mnt&lt;/pre&gt;I assume the same procedure would work for an iPad too.&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Sun, 12 Mar 2017 15:40:03 +0000</pubDate>
    <guid isPermaLink="false">https://blog.crox.net/archives/104-guid.html</guid>
    <category>ios</category>
<category>iphone</category>
<category>linux</category>
<category>phone</category>
<category>photo</category>
<category>ubuntu</category>

</item>
<item>
    <title>Borderless pictures from Gimp (HP Photosmart Premium C309a full-bleed printing on Linux/CUPS)</title>
    <link>https://blog.crox.net/archives/56-Borderless-pictures-from-Gimp-HP-Photosmart-Premium-C309a-full-bleed-printing-on-LinuxCUPS.html</link>
    
    <comments>https://blog.crox.net/archives/56-Borderless-pictures-from-Gimp-HP-Photosmart-Premium-C309a-full-bleed-printing-on-LinuxCUPS.html#comments</comments>
    <wfw:comment>https://blog.crox.net/wfwcomment.php?cid=56</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>https://blog.crox.net/rss.php?version=2.0&amp;type=comments&amp;cid=56</wfw:commentRss>
    

    <author>nospam@example.com (crox)</author>
    <content:encoded>
    I&#039;ve recently acquired an HP Photosmart Premium C309a all-in-one device (CC335B). I planned to use the device mainly for its scanner with duplex-capable automatic document feeder (ADF), in order to archive our mail electronically (more on that later). But I was also happy to get a device which can replace man different ones: it is also a fax, and a nice printer for documents, pictures and even (special) CD/DVDs.&lt;br /&gt;
&lt;br /&gt;
I already have a Canon Selphy CP740 dye sublimation photo printer, which I like very much but has two limitations: 1. it&#039;s limited to 10x15 format (4x6 in), and 2. it seems that it&#039;s impossible to get the printer to work correctly when attached to a PC as a usb printer. It works nicely in stand-alone mode (ie printing from a digital camera with PictBridge or directly from a CF card), but so far I&#039;ve only managed to waste paper and ink when trying to print directly from the computer. (I&#039;ve even installed a fresh Windows XP to try the software from Canon, it didn&#039;t work any better.) So the good quality of the HP as a photo printer was one more argument in its favour.&lt;br /&gt;
&lt;br /&gt;
Here is how I was able to print borderless photos directly from The Gimp:&lt;br /&gt;
&lt;br /&gt;
1. If you want no border at all, the image should obviously have the same aspect ratio as the paper you&#039;ll print on. If necessary, use &quot;Image&quot; -&gt; &quot;Canvas size&quot; or the Crop tool to adjust it.&lt;br /&gt;
&lt;br /&gt;
2. &quot;File&quot; -&gt; &quot;Page setup&quot;: select the correct printer and paper size&lt;br /&gt;
&lt;br /&gt;
3. &quot;File&quot; -&gt; &quot;Print&quot;:&lt;br /&gt;
&lt;br /&gt;
- in &quot;Page setup&quot;, select &quot;Photo Tray&quot; as paper source&lt;br /&gt;
- in &quot;Image Settings&quot;, check the box &quot;Ignore Page Margins&quot;, then adjust Width/Height so that the picture fills the paper (if it doesn&#039;t, get back to step 1)&lt;br /&gt;
- in &quot;Advanced&quot;, select &quot;Photo&quot; as Printout mode, and &quot;1200 dpi, Photo, Full Bleed&quot; under &quot;Resolution, Quality, Ink Type, Media Type&quot; (&quot;Controlled by &#039;Printout Mode&#039;&quot; seems to do as well)&lt;br /&gt;
&lt;br /&gt;
4. Click &quot;Print&quot;&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Tue, 15 Sep 2009 21:47:07 +0000</pubDate>
    <guid isPermaLink="false">https://blog.crox.net/archives/56-guid.html</guid>
    <category>gimp</category>
<category>linux</category>
<category>photo</category>

</item>
<item>
    <title>TestDisk / PhotoRec: tool to recover lost files and partitions (Gentoo Linux)</title>
    <link>https://blog.crox.net/archives/20-TestDisk-PhotoRec-tool-to-recover-lost-files-and-partitions-Gentoo-Linux.html</link>
    
    <comments>https://blog.crox.net/archives/20-TestDisk-PhotoRec-tool-to-recover-lost-files-and-partitions-Gentoo-Linux.html#comments</comments>
    <wfw:comment>https://blog.crox.net/wfwcomment.php?cid=20</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>https://blog.crox.net/rss.php?version=2.0&amp;type=comments&amp;cid=20</wfw:commentRss>
    

    <author>nospam@example.com (crox)</author>
    <content:encoded>
    Homepage: &lt;a href=&quot;http://www.cgsecurity.org/&quot;&gt;http://www.cgsecurity.org/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Description in portage: Multi-platform tool to check and undelete partition, supports reiserfs, ntfs, fat32, ext2/3 and many others. Also includes PhotoRec to recover pictures from digital camera memory.&lt;br /&gt;
&lt;br /&gt;
Installation (Gentoo Linux amd64):&lt;br /&gt;
&lt;br /&gt;
echo &#039;app-admin/testdisk      ~amd64&#039; &gt;&gt; /etc/portage/package.keywords&lt;br /&gt;
echo &#039;app-admin/testdisk      jpeg ntfs&#039; &gt;&gt; /etc/portage/package.use&lt;br /&gt;
emerge -av app-admin/testdisk&lt;br /&gt;
&lt;br /&gt;
To use it, just run &#039;photorec&#039; as root in a shell window. Despite the name, photorec will find and recover many files, not only pictures. You&#039;ll find the &lt;a href=&quot;http://www.cgsecurity.org/wiki/PhotoRec#Known_file_format&quot;  title=&quot;file formats supported by PhotoRec&quot;&gt;full list&lt;/a&gt; on the PhotoRec homepage.&lt;br /&gt;
&lt;br /&gt;
I haven&#039;t tried TestDisk yet, but PhotoRec has been useful several times already.&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Sun, 18 Mar 2007 21:55:00 +0000</pubDate>
    <guid isPermaLink="false">https://blog.crox.net/archives/20-guid.html</guid>
    <category>gentoo</category>
<category>linux</category>
<category>photo</category>

</item>
<item>
    <title>Downloading pictures from my mobile phone</title>
    <link>https://blog.crox.net/archives/6-Downloading-pictures-from-my-mobile-phone.html</link>
    
    <comments>https://blog.crox.net/archives/6-Downloading-pictures-from-my-mobile-phone.html#comments</comments>
    <wfw:comment>https://blog.crox.net/wfwcomment.php?cid=6</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>https://blog.crox.net/rss.php?version=2.0&amp;type=comments&amp;cid=6</wfw:commentRss>
    

    <author>nospam@example.com (crox)</author>
    <content:encoded>
    My phone stores the camera pictures in a dedicated folder with filenames like &quot;Picture(1).jpg&quot;.&lt;br /&gt;
&lt;pre&gt;for I in `seq 20 30` ; do obexftp -b 00:11:22:33:44:55 -c &#039;Pictures/camera_semc/&#039; -g &quot;Picture($I).jpg&quot; ; done&lt;/pre&gt;&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Mon, 25 Sep 2006 23:48:55 +0000</pubDate>
    <guid isPermaLink="false">https://blog.crox.net/archives/6-guid.html</guid>
    <category>bluetooth</category>
<category>linux</category>
<category>phone</category>
<category>photo</category>

</item>
<item>
    <title>Recovering blurred images with The Gimp</title>
    <link>https://blog.crox.net/archives/5-Recovering-blurred-images-with-The-Gimp.html</link>
    
    <comments>https://blog.crox.net/archives/5-Recovering-blurred-images-with-The-Gimp.html#comments</comments>
    <wfw:comment>https://blog.crox.net/wfwcomment.php?cid=5</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>https://blog.crox.net/rss.php?version=2.0&amp;type=comments&amp;cid=5</wfw:commentRss>
    

    <author>nospam@example.com (crox)</author>
    <content:encoded>
    &lt;a href=&quot;http://refocus-it.sourceforge.net/&quot; title=&quot;refocus-it&quot;&gt;refocus-it&lt;/a&gt; looks like a really nice plug-in for Gimp. I&#039;m currently giving it a try...&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Sun, 27 Aug 2006 00:56:43 +0000</pubDate>
    <guid isPermaLink="false">https://blog.crox.net/archives/5-guid.html</guid>
    <category>gimp</category>
<category>photo</category>

</item>

</channel>
</rss>
