Application (or code) to download full size images from a gallery with thumbnails
For example, this site has thumbnails, and clicking on them loads the full sized image.
Now, the full size images are also embedded in a site that ends with .aspx.
So I need an app or code to first scan the thumbnails, then go to the site which has the embedded full sized image and then download it.
I hope someone could help.
I just moved from Windows, so I don't have any apps or software that didn't come along with Ubuntu 14.04. I think from the terminal I have downloaded wget (or else it came along with the OS.) Anyway, I had used it once (tried to) for the same task in the question but I don't know what commands to use.
command-line software-recommendation downloads
add a comment |
For example, this site has thumbnails, and clicking on them loads the full sized image.
Now, the full size images are also embedded in a site that ends with .aspx.
So I need an app or code to first scan the thumbnails, then go to the site which has the embedded full sized image and then download it.
I hope someone could help.
I just moved from Windows, so I don't have any apps or software that didn't come along with Ubuntu 14.04. I think from the terminal I have downloaded wget (or else it came along with the OS.) Anyway, I had used it once (tried to) for the same task in the question but I don't know what commands to use.
command-line software-recommendation downloads
Actually, in Windows I used a software BulkImageDownloader. But it doesn't seem to work in Ubuntu even with Wine. So I needed an application like that for use in Linux. I was saying "In case" such an app is not available at the moment, a script would do.None of the Mozilla addon seem to work(atleast the ones Ii tried like DTA)
– justine
Jul 23 '14 at 14:05
add a comment |
For example, this site has thumbnails, and clicking on them loads the full sized image.
Now, the full size images are also embedded in a site that ends with .aspx.
So I need an app or code to first scan the thumbnails, then go to the site which has the embedded full sized image and then download it.
I hope someone could help.
I just moved from Windows, so I don't have any apps or software that didn't come along with Ubuntu 14.04. I think from the terminal I have downloaded wget (or else it came along with the OS.) Anyway, I had used it once (tried to) for the same task in the question but I don't know what commands to use.
command-line software-recommendation downloads
For example, this site has thumbnails, and clicking on them loads the full sized image.
Now, the full size images are also embedded in a site that ends with .aspx.
So I need an app or code to first scan the thumbnails, then go to the site which has the embedded full sized image and then download it.
I hope someone could help.
I just moved from Windows, so I don't have any apps or software that didn't come along with Ubuntu 14.04. I think from the terminal I have downloaded wget (or else it came along with the OS.) Anyway, I had used it once (tried to) for the same task in the question but I don't know what commands to use.
command-line software-recommendation downloads
command-line software-recommendation downloads
edited Aug 26 '18 at 20:00
Zanna
50.2k13131241
50.2k13131241
asked Jul 23 '14 at 13:52
justine
61
61
Actually, in Windows I used a software BulkImageDownloader. But it doesn't seem to work in Ubuntu even with Wine. So I needed an application like that for use in Linux. I was saying "In case" such an app is not available at the moment, a script would do.None of the Mozilla addon seem to work(atleast the ones Ii tried like DTA)
– justine
Jul 23 '14 at 14:05
add a comment |
Actually, in Windows I used a software BulkImageDownloader. But it doesn't seem to work in Ubuntu even with Wine. So I needed an application like that for use in Linux. I was saying "In case" such an app is not available at the moment, a script would do.None of the Mozilla addon seem to work(atleast the ones Ii tried like DTA)
– justine
Jul 23 '14 at 14:05
Actually, in Windows I used a software BulkImageDownloader. But it doesn't seem to work in Ubuntu even with Wine. So I needed an application like that for use in Linux. I was saying "In case" such an app is not available at the moment, a script would do.None of the Mozilla addon seem to work(atleast the ones Ii tried like DTA)
– justine
Jul 23 '14 at 14:05
Actually, in Windows I used a software BulkImageDownloader. But it doesn't seem to work in Ubuntu even with Wine. So I needed an application like that for use in Linux. I was saying "In case" such an app is not available at the moment, a script would do.None of the Mozilla addon seem to work(atleast the ones Ii tried like DTA)
– justine
Jul 23 '14 at 14:05
add a comment |
1 Answer
1
active
oldest
votes
You can, of course, write small script to do that.
But I would rather use some existing tools.
Try for example: HTTrack
sudo apt-get install httrack
Thanks. I downloaded it but isn't working. ( for this site)
– justine
Jul 23 '14 at 14:24
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f501575%2fapplication-or-code-to-download-full-size-images-from-a-gallery-with-thumbnail%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can, of course, write small script to do that.
But I would rather use some existing tools.
Try for example: HTTrack
sudo apt-get install httrack
Thanks. I downloaded it but isn't working. ( for this site)
– justine
Jul 23 '14 at 14:24
add a comment |
You can, of course, write small script to do that.
But I would rather use some existing tools.
Try for example: HTTrack
sudo apt-get install httrack
Thanks. I downloaded it but isn't working. ( for this site)
– justine
Jul 23 '14 at 14:24
add a comment |
You can, of course, write small script to do that.
But I would rather use some existing tools.
Try for example: HTTrack
sudo apt-get install httrack
You can, of course, write small script to do that.
But I would rather use some existing tools.
Try for example: HTTrack
sudo apt-get install httrack
edited Jul 23 '14 at 19:38
answered Jul 23 '14 at 14:02
korro
1185
1185
Thanks. I downloaded it but isn't working. ( for this site)
– justine
Jul 23 '14 at 14:24
add a comment |
Thanks. I downloaded it but isn't working. ( for this site)
– justine
Jul 23 '14 at 14:24
Thanks. I downloaded it but isn't working. ( for this site)
– justine
Jul 23 '14 at 14:24
Thanks. I downloaded it but isn't working. ( for this site)
– justine
Jul 23 '14 at 14:24
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f501575%2fapplication-or-code-to-download-full-size-images-from-a-gallery-with-thumbnail%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Actually, in Windows I used a software BulkImageDownloader. But it doesn't seem to work in Ubuntu even with Wine. So I needed an application like that for use in Linux. I was saying "In case" such an app is not available at the moment, a script would do.None of the Mozilla addon seem to work(atleast the ones Ii tried like DTA)
– justine
Jul 23 '14 at 14:05