2020-03-19 19:07:56 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-03-19 19:07:56 +01:00
|
|
|
*/
|
|
|
|
|
2021-04-19 23:47:29 +02:00
|
|
|
#include <AK/Base64.h>
|
2020-04-15 16:55:36 +02:00
|
|
|
#include <AK/Checked.h>
|
2020-03-19 19:07:56 +01:00
|
|
|
#include <LibGfx/Bitmap.h>
|
2021-04-19 23:47:29 +02:00
|
|
|
#include <LibGfx/PNGWriter.h>
|
2020-03-19 19:07:56 +01:00
|
|
|
#include <LibWeb/CSS/StyleResolver.h>
|
|
|
|
#include <LibWeb/DOM/Document.h>
|
2020-07-26 15:08:16 +02:00
|
|
|
#include <LibWeb/HTML/CanvasRenderingContext2D.h>
|
|
|
|
#include <LibWeb/HTML/HTMLCanvasElement.h>
|
2020-11-22 15:53:01 +01:00
|
|
|
#include <LibWeb/Layout/CanvasBox.h>
|
2020-03-19 19:07:56 +01:00
|
|
|
|
2020-07-28 18:20:36 +02:00
|
|
|
namespace Web::HTML {
|
2020-03-19 19:07:56 +01:00
|
|
|
|
2020-04-15 12:12:19 +02:00
|
|
|
static constexpr auto max_canvas_area = 16384 * 16384;
|
|
|
|
|
2021-02-07 11:20:15 +01:00
|
|
|
HTMLCanvasElement::HTMLCanvasElement(DOM::Document& document, QualifiedName qualified_name)
|
|
|
|
: HTMLElement(document, move(qualified_name))
|
2020-03-19 19:07:56 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
HTMLCanvasElement::~HTMLCanvasElement()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-06-21 15:37:13 +02:00
|
|
|
unsigned HTMLCanvasElement::width() const
|
2020-03-19 19:07:56 +01:00
|
|
|
{
|
2020-06-21 15:37:13 +02:00
|
|
|
return attribute(HTML::AttributeNames::width).to_uint().value_or(300);
|
2020-03-19 19:07:56 +01:00
|
|
|
}
|
|
|
|
|
2020-06-21 15:37:13 +02:00
|
|
|
unsigned HTMLCanvasElement::height() const
|
2020-03-19 19:07:56 +01:00
|
|
|
{
|
2020-06-21 15:37:13 +02:00
|
|
|
return attribute(HTML::AttributeNames::height).to_uint().value_or(150);
|
2020-03-19 19:07:56 +01:00
|
|
|
}
|
|
|
|
|
2021-01-06 14:27:40 +01:00
|
|
|
RefPtr<Layout::Node> HTMLCanvasElement::create_layout_node()
|
2020-03-19 19:07:56 +01:00
|
|
|
{
|
2021-01-06 14:27:40 +01:00
|
|
|
auto style = document().style_resolver().resolve_style(*this);
|
2020-06-24 16:22:16 +02:00
|
|
|
if (style->display() == CSS::Display::None)
|
2020-03-19 19:07:56 +01:00
|
|
|
return nullptr;
|
2021-04-23 16:46:57 +02:00
|
|
|
return adopt_ref(*new Layout::CanvasBox(document(), *this, move(style)));
|
2020-03-19 19:07:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
CanvasRenderingContext2D* HTMLCanvasElement::get_context(String type)
|
|
|
|
{
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(type == "2d");
|
2020-03-19 19:07:56 +01:00
|
|
|
if (!m_context)
|
|
|
|
m_context = CanvasRenderingContext2D::create(*this);
|
|
|
|
return m_context;
|
|
|
|
}
|
|
|
|
|
2020-06-10 10:57:59 +02:00
|
|
|
static Gfx::IntSize bitmap_size_for_canvas(const HTMLCanvasElement& canvas)
|
2020-04-15 12:12:19 +02:00
|
|
|
{
|
2020-06-21 15:37:13 +02:00
|
|
|
auto width = canvas.width();
|
|
|
|
auto height = canvas.height();
|
2020-04-15 16:55:36 +02:00
|
|
|
|
|
|
|
Checked<size_t> area = width;
|
|
|
|
area *= height;
|
|
|
|
|
|
|
|
if (area.has_overflow()) {
|
2021-01-09 14:02:45 +01:00
|
|
|
dbgln("Refusing to create {}x{} canvas (overflow)", width, height);
|
2020-04-15 12:12:19 +02:00
|
|
|
return {};
|
|
|
|
}
|
2020-04-15 16:55:36 +02:00
|
|
|
if (area.value() > max_canvas_area) {
|
2021-01-09 14:02:45 +01:00
|
|
|
dbgln("Refusing to create {}x{} canvas (exceeds maximum size)", width, height);
|
2020-04-15 12:12:19 +02:00
|
|
|
return {};
|
|
|
|
}
|
2020-06-21 15:37:13 +02:00
|
|
|
return Gfx::IntSize(width, height);
|
2020-04-15 12:12:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool HTMLCanvasElement::create_bitmap()
|
2020-03-19 19:07:56 +01:00
|
|
|
{
|
2020-04-15 12:12:19 +02:00
|
|
|
auto size = bitmap_size_for_canvas(*this);
|
|
|
|
if (size.is_empty()) {
|
|
|
|
m_bitmap = nullptr;
|
|
|
|
return false;
|
2020-03-19 19:07:56 +01:00
|
|
|
}
|
2020-04-15 12:12:19 +02:00
|
|
|
if (!m_bitmap || m_bitmap->size() != size)
|
2021-07-21 18:02:15 +02:00
|
|
|
m_bitmap = Gfx::Bitmap::try_create(Gfx::BitmapFormat::BGRA8888, size);
|
2020-04-15 16:55:36 +02:00
|
|
|
return m_bitmap;
|
2020-03-19 19:07:56 +01:00
|
|
|
}
|
|
|
|
|
2021-04-19 23:47:29 +02:00
|
|
|
String HTMLCanvasElement::to_data_url(const String& type, [[maybe_unused]] Optional<double> quality) const
|
|
|
|
{
|
|
|
|
if (!m_bitmap)
|
|
|
|
return {};
|
|
|
|
if (type != "image/png")
|
|
|
|
return {};
|
|
|
|
auto encoded_bitmap = Gfx::PNGWriter::encode(*m_bitmap);
|
|
|
|
return URL::create_with_data(type, encode_base64(encoded_bitmap), true).to_string();
|
|
|
|
}
|
|
|
|
|
2020-03-19 19:07:56 +01:00
|
|
|
}
|