Use tight compression for SLA archives with svg

This commit is contained in:
tamasmeszaros 2022-04-19 13:53:50 +02:00
parent 91b79bb85c
commit 516f459edc
4 changed files with 36 additions and 8 deletions

View file

@ -22,8 +22,13 @@ protected:
SLAPrinterConfig & cfg() { return m_cfg; }
const SLAPrinterConfig & cfg() const { return m_cfg; }
void export_print(Zipper &,
const SLAPrint &print,
const ThumbnailsList &thumbnails,
const std::string &projectname);
public:
SL1Archive() = default;
explicit SL1Archive(const SLAPrinterConfig &cfg): m_cfg(cfg) {}
explicit SL1Archive(SLAPrinterConfig &&cfg): m_cfg(std::move(cfg)) {}