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

@ -224,4 +224,14 @@ sla::RasterEncoder SL1_SVGArchive::get_encoder() const
return nullptr;
}
void SL1_SVGArchive::export_print(const std::string fname,
const SLAPrint &print,
const ThumbnailsList &thumbnails,
const std::string &projectname)
{
Zipper zipper{fname, Zipper::TIGHT_COMPRESSION};
SL1Archive::export_print(zipper, print, thumbnails, projectname);
}
} // namespace Slic3r