| Index: tools/skimage_main.cpp
 | 
| diff --git a/tools/skimage_main.cpp b/tools/skimage_main.cpp
 | 
| index 634a71d46a6460c31709056bc0139232692a6958..d34d57cd35017ef0f0f496690261969c60f94082 100644
 | 
| --- a/tools/skimage_main.cpp
 | 
| +++ b/tools/skimage_main.cpp
 | 
| @@ -164,7 +164,7 @@
 | 
|          return true;
 | 
|      }
 | 
|  
 | 
| -    if (bm.colorType() == kN32_SkColorType) {
 | 
| +    if (bm.colorType() == kPMColor_SkColorType) {
 | 
|          // First attempt at encoding failed, and the bitmap was already 8888. Making
 | 
|          // a copy is not going to help.
 | 
|          return false;
 | 
| @@ -172,7 +172,7 @@
 | 
|  
 | 
|      // Encoding failed. Copy to 8888 and try again.
 | 
|      SkBitmap bm8888;
 | 
| -    if (!bm.copyTo(&bm8888, kN32_SkColorType)) {
 | 
| +    if (!bm.copyTo(&bm8888, kPMColor_SkColorType)) {
 | 
|          return false;
 | 
|      }
 | 
|      return SkImageEncoder::EncodeFile(filename.c_str(), bm8888, SkImageEncoder::kPNG_Type, 100);
 | 
| 
 |