blob: 35b710160ed54229db2eedd158eec6ae10804100 [file] [log] [blame]
// Copyright 2013 The Flutter 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 FLUTTER_LIB_UI_PAINTING_IMAGE_H_
#define FLUTTER_LIB_UI_PAINTING_IMAGE_H_
#include "flutter/display_list/display_list_image.h"
#include "flutter/flow/skia_gpu_object.h"
#include "flutter/lib/ui/dart_wrapper.h"
#include "flutter/lib/ui/painting/display_list_image_gpu.h"
#include "flutter/lib/ui/ui_dart_state.h"
#include "third_party/skia/include/core/SkImage.h"
namespace flutter {
class CanvasImage final : public RefCountedDartWrappable<CanvasImage> {
DEFINE_WRAPPERTYPEINFO();
FML_FRIEND_MAKE_REF_COUNTED(CanvasImage);
public:
~CanvasImage() override;
static fml::RefPtr<CanvasImage> Create() {
return fml::MakeRefCounted<CanvasImage>();
}
int width() { return image_ ? image_->width() : 0; }
int height() { return image_ ? image_->height() : 0; }
Dart_Handle toByteData(int format, Dart_Handle callback);
void dispose();
sk_sp<DlImage> image() const { return image_; }
void set_image(sk_sp<DlImage> image) { image_ = image; }
private:
CanvasImage();
sk_sp<DlImage> image_;
};
} // namespace flutter
#endif // FLUTTER_LIB_UI_PAINTING_IMAGE_H_