SkImageInfo info = SkImageInfo::Make(200, 200, kRGBA_8888_SkColorType, kPremul_Alpha); SkPixmap pixmap(info, imageData, info.minRowBytes());In this example, SkImageInfo::Make() is used to create an image info object with a width and height of 200 pixels, a color type of kRGBA_8888_SkColorType, and alpha type of kPremul_Alpha. This image info object is then used to create a pixmap object, which can be used to manipulate the pixels of the image. The Skia library is a C++ graphics library developed by Google and is used in a variety of applications, including Chrome and Firefox web browsers.