// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MAKEPNG_H_ #define MAKEPNG_H_ #include bool EncodePNG(const char* input_image_path, const char* input_mask_path, const char* output_path, size_t dimension); #endif // MAKEPNG_H_