| 249 | } |
| 250 | |
| 251 | image_data::image_data(const image_data& rhs) : data{copy_data(rhs.data.get(), rhs.size)}, size{rhs.size}, type{rhs.type} { |
| 252 | } |
| 253 | |
| 254 | image_data::image_data(image_type format, std::string_view str) : data{copy_data(str)}, size{static_cast<uint32_t>(str.size())}, type{format} { |
| 255 | } |