Lines Matching defs:img
81 auto img = SkImage::MakeFromEncoded(bytes);
82 if (nullptr == img.get()) {
86 if (img->width() > MAX_WIDTH || img->height() > MAX_HEIGHT) {
87 SkDebugf("Too big (%d x %d)\n", img->width(), img->height());
91 int rowBytes = img->width() * 4;
92 dstPixels.resize(img->height() * rowBytes);
93 SkPixmap pm(SkImageInfo::MakeN32Premul(img->width(), img->height()),
95 if (!img->readPixels(nullptr, pm, 0, 0)) {