Sponsored Content
Full Discussion: Wget JPG not working
Top Forums UNIX for Dummies Questions & Answers Wget JPG not working Post 302715195 by bruleke on Sunday 14th of October 2012 03:48:00 AM
Old 10-14-2012
So there's no way I can do that?
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

PDF/EPS to GIf/JPG Help!!

Hello. I have a large number of EPS files and a lesser number of PDFs that I need to convert to GIFs/JPGs using a Unix system. Is there a unix utility or application out there that can do this conversion? Thank you in advance for any help you can provide. -Pook (1 Reply)
Discussion started by: PookJP
1 Replies

2. AIX

jpg image

Hello I would like to see an jpeg image with aix. It is possible ? how can i do ? thank you (4 Replies)
Discussion started by: pascalbout
4 Replies

3. Shell Programming and Scripting

find jpg's mkdir script help

I am having a problem getting this to work right. The script needs to search through directories and subdirectories. If a jpg is found then create a folder in that directory, so on and so forth. Here is what I have so far but it doesn't work right. Help please #!/bin/bash for d in `find ./... (1 Reply)
Discussion started by: jedhypes
1 Replies

4. Shell Programming and Scripting

how to send jpg as body

Hi, I ftp the .jpg file from windows to unix machine, now i need to send the jpg file as body to (not as attachment) outlook, can anyone send the sample code for this? (1 Reply)
Discussion started by: vasu.g
1 Replies

5. Web Development

is wget working in ftp ?

I get ftp> wget ?Invalid command. ftp> 0 * * * * wget -O - -q -t 1 http://www.example.com/cron.php ?Invalid command. thanks (6 Replies)
Discussion started by: aneuryzma
6 Replies

6. Shell Programming and Scripting

Rename all ".JPG" files to ".jpg" under all subfolders...

Hi, Dear all: One question ! ^_^ I'm using bash under Ubuntu 9.10. My question is not to rename all ".JPG" files to ".jpg" in a single folder, but to rename all ".JPG" files to ".jpg" in all subfolders. To rename all ".JPG" to ".jpg" in a single folder, for x in *.JPG; do mv "$x"... (7 Replies)
Discussion started by: jiapei100
7 Replies

7. UNIX for Dummies Questions & Answers

Deleting all but JPG files

I would like to delete all files but keep all the .JPG files. How can this be accomplished? Thanks in advance (8 Replies)
Discussion started by: Xterra
8 Replies

8. Shell Programming and Scripting

print metadata to jpg

Hi all, I would like to write a scipt that gets gps informatoin from a jpg and print 's it on the lower left corner, In order to get the gps data I have found a tool called jhead. In know that with the help of the imagemagick command convert it is possible to print text on the pictures. ... (11 Replies)
Discussion started by: flash80
11 Replies

9. Shell Programming and Scripting

Grab all jpg's from flickr

Hi everyone, i'm trying to download all the jpg's that my school put on flickr and im trying to do this with wget via a bash script. The pictures that im trying to pull are on this site : and below is my script that doesn't appear to be working (1 Reply)
Discussion started by: binary-ninja
1 Replies

10. Shell Programming and Scripting

Wget - working in browser but cannot download from wget

Hi, I need to download a zip file from my the below US govt link. https://www.sam.gov/SAMPortal/extractfiledownload?role=WW&version=SAM&filename=SAM_PUBLIC_MONTHLY_20160207.ZIP I only have wget utility installed on the server. When I use the below command, I am getting error 403... (2 Replies)
Discussion started by: Prasannag87
2 Replies
jp2a(1) 							   USER COMMANDS							   jp2a(1)

NAME
jp2a - convert JPEG images to ASCII SYNOPSIS
jp2a [ options ] [ filename(s) | URL(s) ] DESCRIPTION
jp2a will convert JPEG images to ASCII characters. You can specify a mixture of files and URLs. OPTIONS
- Read JPEG image from standard input --background=light --background=dark If you don't want to mess with --invert all the time, just use these instead. If you are using white characters on a black display, then use --background=dark, and vice versa. -b --border Frame output image in a border --chars=... Use the given characters when producing the output ASCII image. Default is " ...',;:clodxkO0KXNWM". --colors Use ANSI color for text output and CSS color for HTML output. -d --debug Print debugging information when using libcurl to download images from the net. -f --term-fit Use the largest dimension that makes the image fit in your terminal display. --term-height Use terminal display height and calculate width based on image aspect ratio. --term-width Use terminal display width and calculate height based on image aspect ratio. -z --term-zoom Use terminal display width and height. --fill When used with --html and --color, then color each output character's background color. For instance, if you want to use fill-out- put on a light background, do jp2a --color --html --html-fill --background=light somefile.jpg --output=dark.html To do the same on a light background: jp2a --color --html --html-fill --background=dark somefile.jpg --output=light.html The default is to have fill disabled. -x --flipx Flip output image horizontally -y --flipy Flip output image vertically --height=N Set output height. If only --height is specified, then output width will be calculated according to the source images aspect ratio. -h --help Display a short help text --grayscale Converts image to grayscale when using --html or --colors. --html Make ASCII output in strict XHTML 1.0, suitable for viewing with web browsers. This is useful with big output dimensions, and you want to check the result with a browser with small font. --html-fill Same as --fill. You should use that option instead. --html-no-bold Do not use bold text for HTML output. --html-raw Output only the image in HTML codes, leaving out the rest of the webpage, so you can construct your own. --html-fontsize=N Set fontsize when using --html output. Default is 4. --html-title=... Set HTML output title. --output=... Write ASCII output to given filename. To explicitly specify standard output, use --output=-. -i --invert Invert output image. If you view a picture with white background, but you are using a display with light characters on a dark back- ground, you shoudl invert the image. --red=... --green=... --blue=... When converting from RGB to grayscale, use the given weights to calculate luminance. These three floating point values must add up to exactly 1.0. The default is red=0.2989, green=0.5866 and blue=0.1145. --size=WIDTHxHEIGHT Set output dimension. -v --verbose Print some verbose information to standard error when reading each JPEG image. --width=N Set output width. If you only specify the width, the height will be calculated automatically. -V --version Print program version. --zoom Sets output dimensions to your entire terminal window, disregarding source image aspect ratio. RETURN VALUES
jp2a returns 1 when errors are encountered, zero for no errors. EXAMPLES
Convert and print imagefile.jpg using ASCII characters in 40 columns and 20 rows: jp2a --size=40x20 imagefile.jpg Download an image off the net, convert and print: jp2a http://www.google.com/intl/en/logos/easter_logo.jpg Output picture.jpg and picture2.jpg, each 80x25 characters, using the characters " ...ooxx@@" for output: jp2a --size=80x25 --chars=" ...ooxx@@" picture.jpg picture2.jpg Output image.jpg using 76 columns, height is automatically calculated from aspect ratio of image.jpg cat image.jpg | jp2a --width=76 - If you use jp2a together with ImageMagick's convert(1) then you can make good use of pipes, and have ImageMagick do all sorts of image con- versions and effects on the source image. For example: convert somefile.png jpg:- | jp2a - --width=80 Check out convert(1) options to see what you can do. Convert can handle almost any image format, so with this combination you can convert images in e.g. PDF or AVI files to ASCII. Although the default build of jp2a includes automatic downloading of files specified by URLs, you can explicitly download them by using curl(1) or wget(1), for example: curl -s http://foo.bar/image.jpg | convert - jpg:- | jp2a - DOWNLOADING IMAGES FROM THE NET
If you have compiled jp2a with libcurl(3), you can download images by specifying URLs: jp2a https://user:pass@foo.com/bar.jpg The protocols recognized are ftp, ftps, file, http, https and tftp. If you need more control of the downloading, you should use curl(1) or wget(1) and jp2a read the image from standard input. jp2a uses pipe and fork to download images using libcurl (i.e., no exec or system calls) and therefore does not worry about malevolently formatted URLs. GRAYSCALE CONVERSION
You can extract the red channel by doing this: jp2a somefile.jpg --red=1.0 --green=0.0 --blue=0.0 This will calculate luminance based on Y = R*1.0 + G*0.0 + B*0.0. The default values is to use Y = R*0.2989 + G*0.5866 + B*0.1145. PROJECT HOMEPAGE
The latest version of jp2a and news is always available from http://jp2a.sourceforge.net SEE ALSO
cjpeg(1), djpeg(1), jpegtran(1), convert(1) BUGS
jp2a does not interpolate when resizing. If you want better quality, try using convert(1) and convert the source image to the exact output dimensions before using jp2a. Another issue is that jp2a skips some X-pixels along each scanline. This gives a less precise output image, and will probably be corrected in future versions. AUTHOR
Christian Stigen Larsen <csl@sublevel3.org> -- http://csl.sublevel3.org jp2a uses jpeglib to read JPEG files. jpeglib is made by The Independent JPEG Group (IJG), who have a page at http://www.ijg.org LICENSE
jp2a is distributed under the GNU General Public License v2. version 1.0 September 4, 2006 jp2a(1)
All times are GMT -4. The time now is 04:16 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy