• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2016 Google Inc.
3  *
4  * Use of this source code is governed by a BSD-style license that can be
5  * found in the LICENSE file.
6  */
7 
8 #include "Resources.h"
9 #include "SkCodec.h"
10 #include "Test.h"
11 
DEF_TEST(ExifOrientation,r)12 DEF_TEST(ExifOrientation, r) {
13     std::unique_ptr<SkStream> stream(GetResourceAsStream("exif-orientation-2-ur.jpg"));
14     REPORTER_ASSERT(r, nullptr != stream);
15     if (!stream) {
16         return;
17     }
18 
19     std::unique_ptr<SkCodec> codec(SkCodec::NewFromStream(stream.release()));
20     REPORTER_ASSERT(r, nullptr != codec);
21     SkCodec::Origin origin = codec->getOrigin();
22     REPORTER_ASSERT(r, SkCodec::kTopRight_Origin == origin);
23 
24     stream.reset(GetResourceAsStream("mandrill_512_q075.jpg"));
25     codec.reset(SkCodec::NewFromStream(stream.release()));
26     REPORTER_ASSERT(r, nullptr != codec);
27     origin = codec->getOrigin();
28     REPORTER_ASSERT(r, SkCodec::kTopLeft_Origin == origin);
29 }
30