OK so what I'm trying to achieve is the generated SVG from a canvas using this code:
let filedata = this.canvas.toSVG({
suppressPreamble: true,
width: 2025,
height: 1425
});
Send it using axios to a server with a Laravel API and rasterize the image using ImageMagick. Everything was working fine until I realized that when I was adding a lot of images to the canvas the SVG that I was sending to the server was too long to the point of even increasing the post_max_size setting was not enough. So is there a way to send this super long SVG to the server in like chunks? or maybe I need to use a different request header? I'm out of ideas here and ready to cry lol
Any help is welcome, thanks!