/* * Copyright (c) 2022 Huawei Device Co., Ltd. * 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. */ #ifndef SURFACE_DRAW_H #define SURFACE_DRAW_H #include #include "pixel_map.h" #include "refbase.h" #include "wm_common.h" #include "draw/canvas.h" #include "nocopyable.h" #include "pixel_map.h" namespace OHOS { namespace Rosen { class SurfaceDraw { public: SurfaceDraw() = default; ~SurfaceDraw() = default; static bool DrawColor(std::shared_ptr surfaceNode, int32_t bufferWidth, int32_t bufferHeight, uint32_t color); static bool DrawImage(std::shared_ptr surfaceNode, int32_t bufferWidth, int32_t bufferHeight, const std::string& imagePath); static bool DrawImage(std::shared_ptr surfaceNode, int32_t bufferWidth, int32_t bufferHeight, std::shared_ptr pixelMap); static bool DrawImageRect(std::shared_ptr surfaceNode, Rect winRect, std::shared_ptr pixelMap, uint32_t bkgColor, bool fillWindow = false); static bool GetSurfaceSnapshot(const std::shared_ptr surfaceNode, std::shared_ptr& pixelMap, int32_t timeoutMs, float scaleW = 0.5, float scaleH = 0.5); static bool DrawMasking(std::shared_ptr surfaceNode, Rect screenRect, Rect transparentRect); private: static bool DoDraw(uint8_t* addr, uint32_t width, uint32_t height, const std::string& imagePath); static bool DoDraw(uint8_t* addr, uint32_t width, uint32_t height, uint32_t color); static bool DoDraw(uint8_t* addr, uint32_t width, uint32_t height, std::shared_ptr pixelMap); static sptr GetLayer(std::shared_ptr surfaceNode); static sptr GetSurfaceBuffer(sptr layer, int32_t bufferWidth, int32_t bufferHeight); static void DrawPixelmap(Drawing::Canvas& canvas, const std::string& imagePath); static std::unique_ptr DecodeImageToPixelMap(const std::string& imagePath); static bool DoDrawImageRect(sptr buffer, const Rect& rect, std::shared_ptr pixelMap, uint32_t color, bool fillWindow = false); }; } // Rosen } // OHOS #endif // SURFACE_DRAW_H