<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://fixme.ch/w/index.php?action=history&amp;feed=atom&amp;title=QR_codes</id>
		<title>QR codes - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://fixme.ch/w/index.php?action=history&amp;feed=atom&amp;title=QR_codes"/>
		<link rel="alternate" type="text/html" href="http://fixme.ch/w/index.php?title=QR_codes&amp;action=history"/>
		<updated>2026-08-26T15:04:03Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.25.1</generator>

	<entry>
		<id>http://fixme.ch/w/index.php?title=QR_codes&amp;diff=6646&amp;oldid=prev</id>
		<title>Sasha: Page with various QR code generation methods</title>
		<link rel="alternate" type="text/html" href="http://fixme.ch/w/index.php?title=QR_codes&amp;diff=6646&amp;oldid=prev"/>
				<updated>2015-05-06T08:51:18Z</updated>
		
		<summary type="html">&lt;p&gt;Page with various QR code generation methods&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;QR codes are cool.&lt;br /&gt;
&lt;br /&gt;
== QRencode ==&lt;br /&gt;
  qrencode https://fixme.ch/&lt;br /&gt;
&lt;br /&gt;
== Python qrcode ==&lt;br /&gt;
=== Just QR code ===&lt;br /&gt;
  import qrcode&lt;br /&gt;
  &lt;br /&gt;
  qrcode_image = qrcode.make(&amp;quot;https://fixme.ch/&amp;quot;, border=1)&lt;br /&gt;
  qrcode_image.save(&amp;quot;qrcode.png&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
=== QR code to size ===&lt;br /&gt;
  import qrcode&lt;br /&gt;
  from PIL import Image&lt;br /&gt;
  &lt;br /&gt;
  qrcode_image = qrcode.make(&amp;quot;https://fixme.ch/&amp;quot;, border=0)&lt;br /&gt;
  qrcode_image = qrcode_image.resize((720, 720), Image.NEAREST)&lt;br /&gt;
  qrcode_image.save(&amp;quot;qrcode.png&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
=== QR from stdin ===&lt;br /&gt;
  import qrcode&lt;br /&gt;
  from PIL import Image&lt;br /&gt;
  import sys&lt;br /&gt;
  &lt;br /&gt;
  qr_data = sys.stdin.read()&lt;br /&gt;
  qrcode_image = qrcode.make(qr_data, border=0)&lt;br /&gt;
  qrcode_image = qrcode_image.resize((720, 720), Image.NEAREST)&lt;br /&gt;
  qrcode_image.save(&amp;quot;qrcode.png&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
== Google QR code API ==&lt;br /&gt;
  https://chart.googleapis.com/chart?cht=qr&amp;amp;chs=300x300&amp;amp;chl=fixme&lt;/div&gt;</summary>
		<author><name>Sasha</name></author>	</entry>

	</feed>