Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Zxing.NET 在Controller中生成二维码并保存在项目根目录中, 会导致项目重新加载全局变量。 这是为什么? #165

Open
Yuanliang-xxxxx opened this issue Dec 13, 2023 · 1 comment

Comments

@Yuanliang-xxxxx
Copy link

public void generateQcode(string Code,int Width, int Height, int type = 0)
{
try
{
string severPath = getfilepath();
EncodingOptions encodingOptions = null;
BarcodeWriter barcodeWriter = null;
encodingOptions = new EncodingOptions
{
Width = Width,
Height = Height
};
barcodeWriter = new BarcodeWriter();
if (type == 1)
{
barcodeWriter.Format = BarcodeFormat.QR_CODE;
}
else
{
barcodeWriter.Format = BarcodeFormat.CODE_128;
}

            barcodeWriter.Options = encodingOptions;
            string text = Code + ".jpg";
            Bitmap bitmap = barcodeWriter.Write(Code);
            if (!DirFileHelper.IsExistDirectory(severPath))
            {
                DirFileHelper.CreateDirectory(severPath);
            }

            string filename = severPath + text;
            bitmap.Save(filename);
            bitmap.Dispose();
        }
        catch (Exception ex)
        {

            throw ex;
        }
       
    }
@Yuanliang-xxxxx
Copy link
Author

有咩有大佬

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant