How to download an image with user input name
P粉381463780
P粉381463780 2023-09-08 19:31:32
0
1
599

I'm new to coding, especially JavaScript, so I decided to ask you guys to take a look and maybe help me find a solution. I want to download an image with a name entered by the user. I wish to download and rename a user specified file instead of a predefined URL (as shown in my example). I prefer downloading from the frontend. I tried it in JavaScript but it doesn't work...anyone have any ideas? Try it https://jsfiddle.net/8qj3czvg/...

[https://jsfiddle.net/8qj3czvg/][1]

P粉381463780
P粉381463780

reply all(1)
P粉722521204

As someone has already commented, you should have a minimal reproducible example in your application; beyond that, you can try modifying the code in this way (note that additional name validation may be required ).

HTML:

<form>
    <input type="text" id="file-name" class="form-control form_style" placeholder="Enter Name">
</form>

Js:

$(document).ready(function() {
    $('.is-hidden').click(function() {
        domtoimage
            .toPng(document.getElementById('content'), {
                quality: 0.95
            })
            .then(function(dataUrl) {
                let link = document.createElement('a');
                let name = document.getElementById('file-name').value;
                name = name ? name : "placeHolderName"; // checks whether the user has entered a file name
                link.download = `${name}.jpeg`;
                link.href = dataUrl;
                link.click();
            })
    })
})
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!