Image processing in C# using Godot (QR Code)

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By HaleyHalcyon

I’m trying to use the package ZXing.net to hopefully decode and encode byte strings as QR codes. This is the code I have:

ZXing.Result result = reader.Decode(new Bitmap(img));

However, my code editor says that the name Bitmap cannot be found (error CS0246). Someone told me that it’s probably System.Drawing.Bitmap, but I don’t know what other formats both Godot and ZXing.Net can support.