user574183
user574183

Reputation: 716

What is the equivalent of C#'s System.Drawing.Bitmap in Java

I searched for an equivalent of C#'s bitmap implementation in Java but I couldn't find any. I am looking for the Java equivalent of System.Drawing.Bitmap

Upvotes: 1

Views: 1765

Answers (1)

Santa Zhang
Santa Zhang

Reputation: 894

Try BufferedImage.

Upvotes: 3

Related Questions