| 325 | } |
| 326 | |
| 327 | Image ReadFromBuffer(const std::vector<uint8_t>& buffer, ImageFormat format) |
| 328 | { |
| 329 | ivstream<uint8_t> istream(buffer); |
| 330 | return ReadFromStream(istream, format); |
| 331 | } |
| 332 | |
| 333 | void WriteToFile(std::string_view path, const Image& image, ImageFormat format) |
| 334 | { |
no test coverage detected