Skip to content

Instantly share code, notes, and snippets.

@mtHuberty
Forked from leobossmann/extract.js
Created December 23, 2020 19:05
Show Gist options
  • Save mtHuberty/6b7d72b46908fe96b3a01c521d2d3e49 to your computer and use it in GitHub Desktop.
Save mtHuberty/6b7d72b46908fe96b3a01c521d2d3e49 to your computer and use it in GitHub Desktop.
Extract and rename images from Pixieset
var imgs = new Array;
// replace all images by the xxl version
$('li > img').each(function(i, item){
var new_src = $(item).prop('src').replace('large', 'xxlarge');
$(item).prop('src', new_src);
imgs.push($(item));
});
// kill everything on page
$('body').empty();
// add all images
$(imgs).each(function(i,item){
$('body').append($(item));
});
// add a textarea containing a shell script to rename the files to their original name
var pattern = /.*\/([0-9a-f]{32}-xxlarge.jpg)/
var rename_script = "#!/bin/bash\n\n";
$(imgs).each(function(i,item){
var old_name = pattern.exec($(item).prop('src'))[1];
var new_name = $(item).prop('alt');
var line = 'mv ' + old_name + ' ' + new_name + "\n";
rename_script = rename_script + line;
});
$('body').append($('<textarea>').val(rename_script));
// Save the resulting page, and use the script in the textarea to rename the image files.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment