#ifndef UI_GFX_IMAGE_IMAGE_UNITTEST_UTIL_H_
#define UI_GFX_IMAGE_IMAGE_UNITTEST_UTIL_H_
#include <stdint.h>
#include "base/containers/span.h"
#include "build/build_config.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/gfx/image/image.h"
namespace gfx {
namespace test {
#if BUILDFLAG(IS_IOS)
typedef UIImage* PlatformImage;
#elif BUILDFLAG(IS_MAC)
typedef NSImage* PlatformImage;
#else
PlatformImage;
#endif
const SkBitmap CreateBitmap(int size, SkColor color = SK_ColorGREEN);
const SkBitmap CreateBitmap(int width,
int height,
SkColor color = SK_ColorGREEN);
gfx::ImageSkia CreateImageSkia(int size, SkColor color = SK_ColorGREEN);
gfx::ImageSkia CreateImageSkia(int width,
int height,
SkColor color = SK_ColorGREEN);
scoped_refptr<base::RefCountedMemory> CreatePNGBytes(
int edge_size,
SkColor color = SK_ColorGREEN);
gfx::Image CreateImage(int size, SkColor color = SK_ColorGREEN);
gfx::Image CreateImage(int width, int height, SkColor color = SK_ColorGREEN);
bool AreImagesEqual(const gfx::Image& image1, const gfx::Image& image2);
bool AreImagesClose(const gfx::Image& image1,
const gfx::Image& image2,
int max_deviation);
bool AreBitmapsEqual(const SkBitmap& bitmap1, const SkBitmap& bitmap2);
bool AreBitmapsClose(const SkBitmap& bitmap1,
const SkBitmap& bitmap2,
int max_deviation);
bool ArePNGBytesCloseToBitmap(base::span<const uint8_t> bytes,
const SkBitmap& bitmap,
int max_deviation);
int MaxColorSpaceConversionColorShift();
void CheckImageIndicatesPNGDecodeFailure(const gfx::Image& image);
bool ImageSkiaStructureMatches(
const gfx::ImageSkia& image_skia,
int width,
int height,
const std::vector<float>& scale_factors);
bool IsEmpty(const gfx::Image& image);
PlatformImage CreatePlatformImage();
gfx::Image::RepresentationType GetPlatformRepresentationType();
PlatformImage ToPlatformType(const gfx::Image& image);
gfx::Image CopyViaPlatformType(const gfx::Image& image);
SkColor GetPlatformImageColor(PlatformImage image, int x, int y);
void CheckColors(SkColor color1, SkColor color2);
void CheckIsTransparent(SkColor color);
bool IsPlatformImageValid(PlatformImage image);
bool PlatformImagesEqual(PlatformImage image1, PlatformImage image2);
}
}
#endif