<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://techdoku.nogafam.es/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://techdoku.nogafam.es/feed.php">
        <title>NoBIGTech Wiki Técnico - docu:csheet:dtproc:images</title>
        <description></description>
        <link>https://techdoku.nogafam.es/</link>
        <image rdf:resource="https://techdoku.nogafam.es/lib/exe/fetch.php?media=wiki:dokuwiki.svg" />
       <dc:date>2026-05-05T14:07:45+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://techdoku.nogafam.es/doku.php?id=docu:csheet:dtproc:images:convert_png_svg&amp;rev=1634435253&amp;do=diff"/>
                <rdf:li rdf:resource="https://techdoku.nogafam.es/doku.php?id=docu:csheet:dtproc:images:jpeg_optimize&amp;rev=1581074184&amp;do=diff"/>
                <rdf:li rdf:resource="https://techdoku.nogafam.es/doku.php?id=docu:csheet:dtproc:images:qr_code_parsing&amp;rev=1590057687&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://techdoku.nogafam.es/lib/exe/fetch.php?media=wiki:dokuwiki.svg">
        <title>NoBIGTech Wiki Técnico</title>
        <link>https://techdoku.nogafam.es/</link>
        <url>https://techdoku.nogafam.es/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="https://techdoku.nogafam.es/doku.php?id=docu:csheet:dtproc:images:convert_png_svg&amp;rev=1634435253&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2021-10-17T01:47:33+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>convert_png_svg</title>
        <link>https://techdoku.nogafam.es/doku.php?id=docu:csheet:dtproc:images:convert_png_svg&amp;rev=1634435253&amp;do=diff</link>
        <description>Convert PNG image to SVG on Linux

The following does not work very well on some images




apt install potrace
convert yourfile.png yourfile.bmp
potrace -s yourfile.bmp
// result: yourfile.svg


Interesting conversion project in node:
&lt;https://github.com/jankovicsandras/imagetracerjs#inkscape-extension&gt;</description>
    </item>
    <item rdf:about="https://techdoku.nogafam.es/doku.php?id=docu:csheet:dtproc:images:jpeg_optimize&amp;rev=1581074184&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-02-07T11:16:24+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>jpeg_optimize</title>
        <link>https://techdoku.nogafam.es/doku.php?id=docu:csheet:dtproc:images:jpeg_optimize&amp;rev=1581074184&amp;do=diff</link>
        <description>How to optimize jpeg image sizes



Install the package (on Debian-based)


apt install jpegoptim


We can now remove the metadata


# optimize image without lossing quality
jpegoptim -f -p AFILE.JPG # lossless

# optimize to a fixed bytes size
jpegoptim -f -p -S [OPTIMIZE_TO_BYTES] *.JPG

# optimize to a percentage threshold
jpegoptim -f -p -S &#039;80%&#039; *.JPG</description>
    </item>
    <item rdf:about="https://techdoku.nogafam.es/doku.php?id=docu:csheet:dtproc:images:qr_code_parsing&amp;rev=1590057687&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-05-21T10:41:27+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>qr_code_parsing</title>
        <link>https://techdoku.nogafam.es/doku.php?id=docu:csheet:dtproc:images:qr_code_parsing&amp;rev=1590057687&amp;do=diff</link>
        <description>Encode/Decode QR Code Images to the text value



Install the required tools:


# to encode text into a qr image
apt install qrencode

# to decode an image into the text value
apt install zbar-tools


Usage for the installed tools


# generate and display a QR code
qrencode &quot;Hi This is my 2d code.&quot; -o 2d.png
display 2d.png

# parse an QR image file to text
zbarimg 2d.png
&gt;&gt;&gt; QR-Code:Hi This is my 2d code.
&gt;&gt;&gt; scanned 1 barcode symbols from 1 images in 0 second</description>
    </item>
</rdf:RDF>
