 |
|
 |
is there an vb.net version for this project?
|
|
|
|
 |
|
 |
Hello, i'm making a project to associate a QR Code to a hyperlink/text, but i need a lot of characters, i'm having some troubles finding another DLL for ASP.NET (C#) or solving this problem.
Hope someone can answer me.
PS: I will leave the project in a zip if it helps, link: http://www.mediafire.com/?u13hney2312e3e3[^]
Regards,
skanz
|
|
|
|
 |
|
 |
I am getting the same error while i tried to put in a long text. This is the error that i got.
System.IndexOutOfRangeException: index was outside the bounds of the array。
於 ByCase.Lib.QRCode.Codec.QRCodeEncoder.divideDataBy8Bits(Int32[] data, SByte[] bits, Int32 maxDataCodewords)
於 ByCase.Lib.QRCode.Codec.QRCodeEncoder.calQrcode(Byte[] qrcodeData)
於 ByCase.Lib.QRCode.Codec.QRCodeEncoder.Encode(String content, Encoding encoding)
於 ByCase.Lib.QRCode.Codec.QRCodeEncoder.Encode(String content)
於 Badge.frmDataEntry.GenerateQRCode(String sVal)
any idea how to overcome this problem?
|
|
|
|
 |
|
 |
Replace code ... GetResource(filename) ...
with follow:
byte[] buffer = (byte[])Resources.ResourceManager.GetObject(fileName);
MemoryStream memoryStream = new MemoryStream(buffer);
BufferedStream bis = new BufferedStream(memoryStream);
.................
etc.
Vadim Vinograd
|
|
|
|
 |
|
 |
hey thanks!
|
|
|
|
 |
|
 |
GetResource - not exists in framework 4.0
+ BUG Index out of array boundaries.
|
|
|
|
 |
|
 |
Hi
as neither the authot not twit88 does seem to care any more about this open source library, I have commited the code with all changes mentioned here to http://code.google.com/p/qrcode-encode-decode[^].
Additionally I moved the dat files into the resources of the mobile code and so you dont need to copy the files separately to the runtime dir.
This Open Source QR code library is easy to use and works more or less. In contrast to the actual zxing csharp code.
I was in search of an easy to use QR code decoder to write some mobile (wm6) app like android barcode scanner to decode QR codes to URLs, eMail etc.
regards
Josef
|
|
|
|
 |
|
 |
Hi Josef, Thank you for accumulating the changes in the Google Code reposittory. How can I download the entire project from there? It only looks like I can look at one file at a time and I would rather not have to patch all of the files from the codeproject download if that were possible. Steve
|
|
|
|
 |
|
|
 |
|
 |
thanks for sharing your work
|
|
|
|
 |
|
|
 |
|
 |
Temp[rsBlockNumber][j] = codewords[i2];
exception on this line .does anybody got solution ..pls help
|
|
|
|
 |
|
 |
you have to copy the qrcode_data directory into the deploy directory
|
|
|
|
 |
|
 |
Thank you for the solution ...
|
|
|
|
 |
|
 |
how we can calculate the number of data/error blocks of a Version QR symbol 3 or higher? As I read from the the ISO 18004 ( 2006 ), there's no information about this. This's very important for me to encode the data into QR symbol. Thank for help!!
|
|
|
|
 |
|
 |
Hello ev'ryone.
im wondering if its possible to scan an image for more than ONE QR code. For Example a Din a 4 page of an pdf where more than one qr code exists.
if this is possible... how?
greetz
|
|
|
|
 |
|
 |
I couldnt get to decode when its version is higher than 25 in byte mode.. its giving me error as invalid version number while decoding !!
And when mode is either numeric or alphanumeric,, decoded is message is all different from encoded message !!
Can anyone help me regarding this issue,, where to check for that encoding process in the given source code !!
Thnx in advance ^_^
|
|
|
|
 |
|
 |
The BCH (15,5) error correction is used to correct errors in reading the format information. It is very similar to the Reed-Solomon error codes used to correct the data of the QR code.
But this code is uses less (i.e. 32) codewords and the QR Code 2005 standard suggests using a look-up table instead of full BCH corrector.
|
|
|
|
 |
|
 |
As it is mentioned already on the forum, the RS ECC is not working properly.
Test: Generate a QR code, save it and try to decode it. In case of no errors all syndromes must be zero. That is checked in ReedSolomon.cd/correct() (lines 141-146). Set a breakpoint on line 147 and debug.
Result: The result of the check is not zero.
Comment: The first reason for this problem is just a bug: in the line 124 instead of MAXDEG must be NPAR. But even after fixing this bug the last syndrome is always no zero. This could be solved by changing line 151: instead of [j+1] there must be [j]. After this change all the syndromes will be OK but the rest of the code stops working
Explanation: The correction of +/-1 should be done in more place in the code. The original RS ECC implementation (ported to this project) assumes that the index of the generator polynomial starts from 1 (to 255), but in case of QR codes it starts from (0...254).
Solution: I would suggest to rework the code completely using as a scratch the code updated by Timothy B. Terriberry and used in ZBar QR project (see http://zbar.sourceforge.net/). This code works correct.
|
|
|
|
 |
|
 |
Thanks, I am struggling in generating barcode right now in ASP.NET
http://www.keepautomation.com
|
|
|
|
 |
|
|
 |
|
 |
Hi everyone,
Can someone help with the simple task of opening the solution in visual studio 2010?
I keep getting an error and 2 projects that fail to convert to visual studio 2010:
-QRCodeMobileLib.csproj
The project file ...\QRCode\QRCodeMobileLib\QRCodeMobileLib.csproj' cannot be opened. The project type is not supported by this installation.
-QRCodeWindowsMobile5.csproj
The project file ...\QRCode\QRCodeMobileLib\QRCodeWindowsMobile5.csproj' cannot be opened. The project type is not supported by this installation.
Help plzz
best regards
Bruno Rézio
|
|
|
|
 |
|
 |
Genera de nuevo el proyecto... Suele pasar eso en 2010 al pasar proyectos del 2008 o 2005.
Solo genera de nuevo el proyecto y anexale todos y cada uno de los archivos que contenía el proyecto anteriormente!
Saludos!!!
|
|
|
|
 |
|
 |
you will not be able to open mobile device project in vs 2010. use vs 2008.
|
|
|
|
 |
|
|
 |