Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
BitmapRegionDecoderPriv.h
Go to the documentation of this file.
1/*
2 * Copyright 2015 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#ifndef BitmapRegionDecoderPriv_DEFINED
9#define BitmapRegionDecoderPriv_DEFINED
10
11#include "include/core/SkRect.h"
12
18
19/*
20 * Corrects image subset offsets and dimensions in order to perform a valid decode.
21 * Also indicates if the image subset should be placed at an offset within the
22 * output bitmap.
23 *
24 * Values of output variables are undefined if the SubsetType is kInvalid.
25 *
26 * @param imageDims Original image dimensions.
27 * @param subset As input, the subset that the client requested.
28 * As output, the image subset that we will decode.
29 * @param outX The left offset of the image subset within the output bitmap.
30 * @param outY The top offset of the image subset within the output bitmap.
31 *
32 * @return An indication of how the subset is contained in the image.
33 * If the return value is kInvalid, values of output variables are undefined.
34 */
35inline SubsetType adjust_subset_rect(const SkISize& imageDims, SkIRect* subset, int* outX,
36 int* outY) {
37 // These must be at least zero, we can't start decoding the image at a negative coordinate.
38 int left = std::max(0, subset->fLeft);
39 int top = std::max(0, subset->fTop);
40
41 // If input offsets are less than zero, we decode to an offset location in the output bitmap.
42 *outX = left - subset->fLeft;
43 *outY = top - subset->fTop;
44
45 // Make sure we don't decode pixels past the edge of the image or past the edge of the subset.
46 int width = std::min(imageDims.width() - left, subset->width() - *outX);
47 int height = std::min(imageDims.height() - top, subset->height() - *outY);
48 if (width <= 0 || height <= 0) {
50 }
51
52 subset->setXYWH(left, top, width, height);
53 if ((*outX != 0) || (*outY != 0) || (width != subset->width()) ||
54 (height != subset->height())) {
56 }
57
59}
60
61#endif // BitmapRegionDecoderPriv_DEFINED
@ kFullyInside_SubsetType
@ kOutside_SubsetType
@ kPartiallyInside_SubsetType
SubsetType adjust_subset_rect(const SkISize &imageDims, SkIRect *subset, int *outX, int *outY)
static bool left(const SkPoint &p0, const SkPoint &p1)
int32_t height
int32_t width
constexpr int32_t height() const
Definition SkRect.h:165
int32_t fTop
smaller y-axis bounds
Definition SkRect.h:34
constexpr int32_t width() const
Definition SkRect.h:158
void setXYWH(int32_t x, int32_t y, int32_t width, int32_t height)
Definition SkRect.h:268
int32_t fLeft
smaller x-axis bounds
Definition SkRect.h:33
constexpr int32_t width() const
Definition SkSize.h:36
constexpr int32_t height() const
Definition SkSize.h:37