2020-08-07 19:01:41 +08:00
|
|
|
// Copyright 2020 Google LLC
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2020-08-28 03:53:06 +08:00
|
|
|
#include <glog/logging.h>
|
|
|
|
|
2020-08-07 19:01:41 +08:00
|
|
|
#include <iostream>
|
|
|
|
|
2020-08-14 23:56:57 +08:00
|
|
|
#include "../lodepng/lodepng.h"
|
2020-08-28 03:53:06 +08:00
|
|
|
#include "helpers.h"
|
|
|
|
#include "sandboxed_api/sandbox2/util/fileops.h"
|
2020-08-13 16:34:43 +08:00
|
|
|
|
2020-08-28 03:53:06 +08:00
|
|
|
void EncodeDecodeOneStep(const std::string &images_path) {
|
|
|
|
// generate the values
|
|
|
|
std::vector<uint8_t> image(GenerateValues());
|
2020-08-07 19:01:41 +08:00
|
|
|
|
2020-08-13 16:34:43 +08:00
|
|
|
// encode the image
|
2020-08-21 00:37:45 +08:00
|
|
|
const std::string filename = images_path + "/out_generated1.png";
|
2020-08-13 16:34:43 +08:00
|
|
|
unsigned int result =
|
2020-08-28 03:53:06 +08:00
|
|
|
lodepng_encode32_file(filename.c_str(), image.data(), kWidth, kHeight);
|
2020-08-13 16:34:43 +08:00
|
|
|
|
2020-08-28 03:53:06 +08:00
|
|
|
CHECK(!result);
|
2020-08-13 16:34:43 +08:00
|
|
|
|
|
|
|
// after the image has been encoded, decode it to check that the
|
|
|
|
// pixel values are the same
|
|
|
|
|
|
|
|
unsigned int width2, height2;
|
2020-08-28 03:53:06 +08:00
|
|
|
uint8_t *image2 = 0;
|
2020-08-13 16:34:43 +08:00
|
|
|
|
|
|
|
result = lodepng_decode32_file(&image2, &width2, &height2, filename.c_str());
|
|
|
|
|
2020-08-28 03:53:06 +08:00
|
|
|
CHECK(!result);
|
2020-08-11 15:15:53 +08:00
|
|
|
|
2020-08-28 03:53:06 +08:00
|
|
|
CHECK(width2 == kWidth);
|
|
|
|
CHECK(height2 == kHeight);
|
2020-08-13 16:34:43 +08:00
|
|
|
|
|
|
|
// now, we can compare the values
|
2020-08-28 03:53:06 +08:00
|
|
|
CHECK(std::equal(image.begin(), image.end(), image2));
|
|
|
|
free(image2);
|
2020-08-11 15:15:53 +08:00
|
|
|
}
|
|
|
|
|
2020-08-28 03:53:06 +08:00
|
|
|
void EncodeDecodeTwoSteps(const std::string &images_path) {
|
2020-08-13 16:34:43 +08:00
|
|
|
// generate the values
|
2020-08-28 03:53:06 +08:00
|
|
|
std::vector<uint8_t> image(GenerateValues());
|
2020-08-11 15:15:53 +08:00
|
|
|
|
2020-08-13 16:34:43 +08:00
|
|
|
// encode the image into memory first
|
2020-08-21 00:37:45 +08:00
|
|
|
const std::string filename = images_path + "/out_generated2.png";
|
2020-08-28 03:53:06 +08:00
|
|
|
uint8_t *png;
|
2020-08-13 16:34:43 +08:00
|
|
|
size_t pngsize;
|
|
|
|
|
2020-08-13 22:44:18 +08:00
|
|
|
unsigned int result =
|
2020-08-28 03:53:06 +08:00
|
|
|
lodepng_encode32(&png, &pngsize, image.data(), kWidth, kHeight);
|
2020-08-13 16:34:43 +08:00
|
|
|
|
2020-08-28 03:53:06 +08:00
|
|
|
CHECK(!result);
|
2020-08-13 16:34:43 +08:00
|
|
|
|
|
|
|
// write the image into the file (from memory)
|
|
|
|
result = lodepng_save_file(png, pngsize, filename.c_str());
|
|
|
|
|
2020-08-28 03:53:06 +08:00
|
|
|
CHECK(!result);
|
2020-08-13 16:34:43 +08:00
|
|
|
|
|
|
|
// now, decode the image using the 2 steps in order to compare the values
|
|
|
|
unsigned int width2, height2;
|
2020-08-28 03:53:06 +08:00
|
|
|
uint8_t *png2;
|
2020-08-13 16:34:43 +08:00
|
|
|
size_t pngsize2;
|
|
|
|
|
|
|
|
// load the file in memory
|
|
|
|
result = lodepng_load_file(&png2, &pngsize2, filename.c_str());
|
|
|
|
|
2020-08-28 03:53:06 +08:00
|
|
|
CHECK(!result);
|
|
|
|
CHECK(pngsize == pngsize2);
|
2020-08-13 16:34:43 +08:00
|
|
|
|
2020-08-28 03:53:06 +08:00
|
|
|
uint8_t *image2;
|
2020-08-13 16:34:43 +08:00
|
|
|
result = lodepng_decode32(&image2, &width2, &height2, png2, pngsize2);
|
|
|
|
|
2020-08-28 03:53:06 +08:00
|
|
|
CHECK(!result);
|
|
|
|
CHECK(width2 == kWidth);
|
|
|
|
CHECK(height2 == kHeight);
|
2020-08-13 16:34:43 +08:00
|
|
|
|
|
|
|
// compare values
|
2020-08-28 03:53:06 +08:00
|
|
|
CHECK(std::equal(image.begin(), image.end(), image2));
|
|
|
|
free(png);
|
|
|
|
free(png2);
|
|
|
|
free(image2);
|
2020-08-11 15:15:53 +08:00
|
|
|
}
|
|
|
|
|
2020-08-07 19:01:41 +08:00
|
|
|
int main(int argc, char *argv[]) {
|
2020-08-28 03:53:06 +08:00
|
|
|
google::InitGoogleLogging(argv[0]);
|
2020-08-13 16:34:43 +08:00
|
|
|
|
2020-08-28 03:53:06 +08:00
|
|
|
const std::string images_path = CreateTempDirAtCWD();
|
|
|
|
|
|
|
|
EncodeDecodeOneStep(images_path);
|
|
|
|
EncodeDecodeTwoSteps(images_path);
|
|
|
|
|
|
|
|
CHECK(sandbox2::file_util::fileops::DeleteRecursively(images_path));
|
2020-08-07 19:01:41 +08:00
|
|
|
|
2020-08-13 23:46:21 +08:00
|
|
|
return EXIT_SUCCESS;
|
2020-08-28 03:53:06 +08:00
|
|
|
}
|