<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Jopsen.dk/blog</title>
	<atom:link href="http://jopsen.dk/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://jopsen.dk/blog</link>
	<description>Thoughts mixed with random memory dumps...</description>
	<lastBuildDate>Fri, 13 Jan 2012 08:11:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Version 0.10 of zbar-sharp is out&#8230; by David</title>
		<link>http://jopsen.dk/blog/2011/03/version-0-10-of-zbar-sharp-is-out/comment-page-1/#comment-16044</link>
		<dc:creator>David</dc:creator>
		<pubDate>Fri, 13 Jan 2012 08:11:57 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=236#comment-16044</guid>
		<description>@kh: Tried your Solution but there is always the same point where the debugger stops:

		/// 
		/// Get/set the data associated with this image
		/// 
		/// This method copies that data, using Marshal.Copy.
		public byte[] Data{
			get{
				IntPtr pData = zbar_image_get_data(this.handle);
				if(pData == IntPtr.Zero)
					throw new Exception(&quot;Image data pointer is null!&quot;);
				uint length = zbar_image_get_data_length(this.handle);
				byte[] data = new byte[length];
				Marshal.Copy(pData, data, 0, (int)length);
				return data;
			}
			set{
				IntPtr data = Marshal.AllocHGlobal(value.Length);
				Marshal.Copy(value, 0, data, value.Length);
				zbar_image_set_data(this.handle, data, (uint)value.Length, Image.CleanupHandler);
			}
		}

When zbar_image_set_data is called, VB gives back a PInvokeFailure. I think there is something wrong with the values given over to this function..</description>
		<content:encoded><![CDATA[<p>@kh: Tried your Solution but there is always the same point where the debugger stops:</p>
<p>		///<br />
		/// Get/set the data associated with this image<br />
		///<br />
		/// This method copies that data, using Marshal.Copy.<br />
		public byte[] Data{<br />
			get{<br />
				IntPtr pData = zbar_image_get_data(this.handle);<br />
				if(pData == IntPtr.Zero)<br />
					throw new Exception(&#8220;Image data pointer is null!&#8221;);<br />
				uint length = zbar_image_get_data_length(this.handle);<br />
				byte[] data = new byte[length];<br />
				Marshal.Copy(pData, data, 0, (int)length);<br />
				return data;<br />
			}<br />
			set{<br />
				IntPtr data = Marshal.AllocHGlobal(value.Length);<br />
				Marshal.Copy(value, 0, data, value.Length);<br />
				zbar_image_set_data(this.handle, data, (uint)value.Length, Image.CleanupHandler);<br />
			}<br />
		}</p>
<p>When zbar_image_set_data is called, VB gives back a PInvokeFailure. I think there is something wrong with the values given over to this function..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Version 0.10 of zbar-sharp is out&#8230; by Jonas Finnemann Jensen</title>
		<link>http://jopsen.dk/blog/2011/03/version-0-10-of-zbar-sharp-is-out/comment-page-1/#comment-16039</link>
		<dc:creator>Jonas Finnemann Jensen</dc:creator>
		<pubDate>Fri, 06 Jan 2012 12:48:59 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=236#comment-16039</guid>
		<description>Interesting, my Windows (R) skills are pretty old, but I do imagine that it possible to use the library without installing it globally...</description>
		<content:encoded><![CDATA[<p>Interesting, my Windows (R) skills are pretty old, but I do imagine that it possible to use the library without installing it globally&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Version 0.10 of zbar-sharp is out&#8230; by kh</title>
		<link>http://jopsen.dk/blog/2011/03/version-0-10-of-zbar-sharp-is-out/comment-page-1/#comment-16038</link>
		<dc:creator>kh</dc:creator>
		<pubDate>Thu, 05 Jan 2012 15:56:54 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=236#comment-16038</guid>
		<description>Solution for 
Unable to load DLL ‘libzbar’: The specified module could not be found.
First 
install zbar-0.10-setup.exe you can download http://sourceforge.net/projects/zbar/files/zbar/0.10/zbar-0.10-setup.exe/download

Second 
Copy all Dll Files from C:\Program Files\ZBar\bin
to
C:\WINDOWS\system32
and rename libzbar-0.dll to libzbar.dll

without regsvr32 its will work
bye</description>
		<content:encoded><![CDATA[<p>Solution for<br />
Unable to load DLL ‘libzbar’: The specified module could not be found.<br />
First<br />
install zbar-0.10-setup.exe you can download <a href="http://sourceforge.net/projects/zbar/files/zbar/0.10/zbar-0.10-setup.exe/download" rel="nofollow">http://sourceforge.net/projects/zbar/files/zbar/0.10/zbar-0.10-setup.exe/download</a></p>
<p>Second<br />
Copy all Dll Files from C:\Program Files\ZBar\bin<br />
to<br />
C:\WINDOWS\system32<br />
and rename libzbar-0.dll to libzbar.dll</p>
<p>without regsvr32 its will work<br />
bye</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Version 0.10 of zbar-sharp is out&#8230; by David</title>
		<link>http://jopsen.dk/blog/2011/03/version-0-10-of-zbar-sharp-is-out/comment-page-1/#comment-16011</link>
		<dc:creator>David</dc:creator>
		<pubDate>Fri, 23 Dec 2011 07:22:17 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=236#comment-16011</guid>
		<description>Yes, I did it with Visual Studio, and there were no problems. Maybe you could try building a small example in vb.net to look whether it works or not. Or maybe you know someone who made it with vb.net.
Thanks in advance for your help!</description>
		<content:encoded><![CDATA[<p>Yes, I did it with Visual Studio, and there were no problems. Maybe you could try building a small example in vb.net to look whether it works or not. Or maybe you know someone who made it with vb.net.<br />
Thanks in advance for your help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Version 0.10 of zbar-sharp is out&#8230; by Jonas Finnemann Jensen</title>
		<link>http://jopsen.dk/blog/2011/03/version-0-10-of-zbar-sharp-is-out/comment-page-1/#comment-16009</link>
		<dc:creator>Jonas Finnemann Jensen</dc:creator>
		<pubDate>Fri, 16 Dec 2011 13:28:03 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=236#comment-16009</guid>
		<description>Possible, but I don&#039;t think zbar have been updated recently.
Have you tried to build the image-scanner example from github?
If you remove gtkzbar-cil and gtk-scanner projects from the solution, it should build without any complications.</description>
		<content:encoded><![CDATA[<p>Possible, but I don&#8217;t think zbar have been updated recently.<br />
Have you tried to build the image-scanner example from github?<br />
If you remove gtkzbar-cil and gtk-scanner projects from the solution, it should build without any complications.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Version 0.10 of zbar-sharp is out&#8230; by David</title>
		<link>http://jopsen.dk/blog/2011/03/version-0-10-of-zbar-sharp-is-out/comment-page-1/#comment-16008</link>
		<dc:creator>David</dc:creator>
		<pubDate>Fri, 16 Dec 2011 12:38:06 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=236#comment-16008</guid>
		<description>Could it be, that die libzbar.dll from the WindowsInstaller Packet of Zbar is not compatible with your dll? I think the Pinvoke Failure could occur because of an wrong calling.</description>
		<content:encoded><![CDATA[<p>Could it be, that die libzbar.dll from the WindowsInstaller Packet of Zbar is not compatible with your dll? I think the Pinvoke Failure could occur because of an wrong calling.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Version 0.10 of zbar-sharp is out&#8230; by David</title>
		<link>http://jopsen.dk/blog/2011/03/version-0-10-of-zbar-sharp-is-out/comment-page-1/#comment-16007</link>
		<dc:creator>David</dc:creator>
		<pubDate>Fri, 16 Dec 2011 10:06:48 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=236#comment-16007</guid>
		<description>Hey Jonas, look here, i made a screenshot for you - thats the problem:

http://imageshack.us/photo/my-images/521/screenshotmw.jpg/

I can go through the code, but then there is no result.</description>
		<content:encoded><![CDATA[<p>Hey Jonas, look here, i made a screenshot for you &#8211; thats the problem:</p>
<p><a href="http://imageshack.us/photo/my-images/521/screenshotmw.jpg/" rel="nofollow">http://imageshack.us/photo/my-images/521/screenshotmw.jpg/</a></p>
<p>I can go through the code, but then there is no result.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Version 0.10 of zbar-sharp is out&#8230; by David</title>
		<link>http://jopsen.dk/blog/2011/03/version-0-10-of-zbar-sharp-is-out/comment-page-1/#comment-16006</link>
		<dc:creator>David</dc:creator>
		<pubDate>Fri, 16 Dec 2011 07:06:12 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=236#comment-16006</guid>
		<description>Yes I did! Thats my problem, i thought the same and looked up in my debug folder, but I copied all files from the zbar bin folder, so it should work..</description>
		<content:encoded><![CDATA[<p>Yes I did! Thats my problem, i thought the same and looked up in my debug folder, but I copied all files from the zbar bin folder, so it should work..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Version 0.10 of zbar-sharp is out&#8230; by Jonas Finnemann Jensen</title>
		<link>http://jopsen.dk/blog/2011/03/version-0-10-of-zbar-sharp-is-out/comment-page-1/#comment-16005</link>
		<dc:creator>Jonas Finnemann Jensen</dc:creator>
		<pubDate>Sun, 11 Dec 2011 20:02:21 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=236#comment-16005</guid>
		<description>Did you rename libzbar-0.dll to libzbar.dll, if not that&#039;s your issue.
libzbar-cil.dll assumes the zbar dll is called libzbar.dll and libzbar-0.dll</description>
		<content:encoded><![CDATA[<p>Did you rename libzbar-0.dll to libzbar.dll, if not that&#8217;s your issue.<br />
libzbar-cil.dll assumes the zbar dll is called libzbar.dll and libzbar-0.dll</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Version 0.10 of zbar-sharp is out&#8230; by David</title>
		<link>http://jopsen.dk/blog/2011/03/version-0-10-of-zbar-sharp-is-out/comment-page-1/#comment-16002</link>
		<dc:creator>David</dc:creator>
		<pubDate>Fri, 09 Dec 2011 13:24:28 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=236#comment-16002</guid>
		<description>Some more Information:

Eine Ausnahme (erste Chance) des Typs &quot;System.DllNotFoundException&quot; ist in libzbar-cil.dll aufgetreten.
Eine Ausnahme (erste Chance) des Typs &quot;System.DllNotFoundException&quot; ist in libzbar-cil.dll aufgetreten.
Eine Ausnahme (erste Chance) des Typs &quot;System.DllNotFoundException&quot; ist in libzbar-cil.dll aufgetreten.</description>
		<content:encoded><![CDATA[<p>Some more Information:</p>
<p>Eine Ausnahme (erste Chance) des Typs &#8220;System.DllNotFoundException&#8221; ist in libzbar-cil.dll aufgetreten.<br />
Eine Ausnahme (erste Chance) des Typs &#8220;System.DllNotFoundException&#8221; ist in libzbar-cil.dll aufgetreten.<br />
Eine Ausnahme (erste Chance) des Typs &#8220;System.DllNotFoundException&#8221; ist in libzbar-cil.dll aufgetreten.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

