I am looking for a way to load only a part of a jpg. I tried XMLHttpRequest but I could not figure it out.
request.open("GET", "js.jpg", true);
request.responseType = "blob";
This gets me an image and I can use it to display it. For example the image is 100kb big, I only want 50kb. Is this possible. I know that the image is cracked but I want to try something. Thank you
edit:
My goal is to load for example 50kb instead of the whole 100kb to save traffic I guess ;)