manuelbl / SwissQRBill.NET

.NET library for Swiss QR bill payment slips (aka QR-Rechnung)
MIT License
86 stars 32 forks source link

Image quality #29

Closed Netclick19 closed 3 years ago

Netclick19 commented 3 years ago

Hi, first I want to say thank you for your job. It's excellent and very useful!

I've a question about the image quality, is it possible to set the quality of png image generated? My image is a little bit low quality when I generate it.

Thank you for your support.

manuelbl commented 3 years ago

With quality you probably mean the resolution. Yes, that can be controlled:

            Bill bill = new Bill
            {
                ...
                Format = new BillFormat {
                    Resolution = 600
                }
            };
Netclick19 commented 3 years ago

Yes, sorry. I meant resolution. Thank you for your answer.