ImageMagick: convert pdf to image error
2019-04-29
IN1, 2019-04-29 00:00:00
IN1, 2023-04-14 14:49:50


Beim Versuch ein pdf zu einem png zu konvertieren mittels convert
kommt folgende Meldung (...not authorized ...no images defined):

admin1@erazer:~/Dokumente/Sport/Events/2019-04-27.Gipfelsturm_Osnabrueck$ convert 2019-04-27.Gipfelsturm_Osnabrueck_Urkunde.pdf 2019-04-27.Gipfelsturm_Osnabrueck_Urkunde.pdf.jpg
convert-im6.q16: not authorized `2019-04-27.Gipfelsturm_Osnabrueck_Urkunde.pdf' @ error/constitute.c/ReadI […]

javascript: capture CTRL+S
2019-04-05
IN1, 2019-04-05 00:00:00
IN1, 2023-04-10 14:16:30


A cross-browser method to capture key combination CTRL+S with native JavaScript.

$(window).bind('keydown', function(event) {

    if (event.ctrlKey || event.metaKey) {

        switch (String.fromCharCode(event.which).toLowerCase()) {

            case 's':
                event.preventDefault();
                console.log('capture: CTRL+S');

                // do your stuff...

                break;
        }
    }
});
[…]


This website uses Cookies to provide you with the best possible service. Please see our Privacy Policy for more information. Click the check box below to accept cookies. Then confirm with a click on "Save".