skia2/tests/ARGBImageEncoderTest.cpp
commit-bot@chromium.org e2eac8b2fd Move macros from TestClassDef.h to Test.h
Motivation: those macros don't make any sense without the definitions
in Test.h.

BUG=
R=mtklein@google.com

Author: halcanary@google.com

Review URL: https://codereview.chromium.org/138563004

git-svn-id: http://skia.googlecode.com/svn/trunk@13074 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-01-14 21:04:37 +00:00

63 lines
2.4 KiB
C++

/*
* Copyright 2012 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "SkImageEncoder.h"
#include "SkBitmap.h"
#include "SkCanvas.h"
#include "SkStream.h"
#include "Test.h"
static SkBitmap::Config configs[] = {
SkBitmap::kRGB_565_Config,
SkBitmap::kARGB_8888_Config,
};
DEF_TEST(ARGBImageEncoder, reporter) {
// Bytes we expect to get:
const int kWidth = 3;
const int kHeight = 5;
const unsigned char comparisonBuffer[] = {
// kHeight rows, each with kWidth pixels, premultiplied ARGB for each pixel
0xff,0xff,0x00,0x00, 0xff,0xff,0x00,0x00, 0xff,0xff,0x00,0x00, // red
0xff,0x00,0xff,0x00, 0xff,0x00,0xff,0x00, 0xff,0x00,0xff,0x00, // green
0xff,0x00,0x00,0xff, 0xff,0x00,0x00,0xff, 0xff,0x00,0x00,0xff, // blue
0xff,0x00,0x00,0xff, 0xff,0x00,0x00,0xff, 0xff,0x00,0x00,0xff, // blue
0xff,0x00,0x00,0xff, 0xff,0x00,0x00,0xff, 0xff,0x00,0x00,0xff, // blue
};
SkAutoTDelete<SkImageEncoder> enc(CreateARGBImageEncoder());
for (size_t configIndex = 0; configIndex < SK_ARRAY_COUNT(configs); ++configIndex) {
// A bitmap that should generate the above bytes:
SkBitmap bitmap;
{
bitmap.setConfig(configs[configIndex], kWidth, kHeight);
REPORTER_ASSERT(reporter, bitmap.allocPixels());
bitmap.setAlphaType(kOpaque_SkAlphaType);
bitmap.eraseColor(SK_ColorBLUE);
// Change rows [0,1] from blue to [red,green].
SkCanvas canvas(bitmap);
SkPaint paint;
paint.setColor(SK_ColorRED);
canvas.drawIRect(SkIRect::MakeLTRB(0, 0, kWidth, 1), paint);
paint.setColor(SK_ColorGREEN);
canvas.drawIRect(SkIRect::MakeLTRB(0, 1, kWidth, 2), paint);
}
// Transform the bitmap.
int bufferSize = bitmap.width() * bitmap.height() * 4;
SkAutoMalloc pixelBufferManager(bufferSize);
char *pixelBuffer = static_cast<char *>(pixelBufferManager.get());
SkMemoryWStream out(pixelBuffer, bufferSize);
REPORTER_ASSERT(reporter, enc->encodeStream(&out, bitmap, SkImageEncoder::kDefaultQuality));
// Confirm we got the expected results.
REPORTER_ASSERT(reporter, bufferSize == sizeof(comparisonBuffer));
REPORTER_ASSERT(reporter, memcmp(pixelBuffer, comparisonBuffer, bufferSize) == 0);
}
}