Converting EPS to JPG issue


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Converting EPS to JPG issue
# 1  
Old 01-11-2012
Converting EPS to JPG issue

I'm trying to convert a file with the following command:

convert -verbose image.eps -resize 500x image.jpg

The problem is that the output image loses it's quality and gets all blurred when resized. It shouldn't happen since I'm working with a vector.

I'm pretty sure that I'm missing a command option.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Programming

Python[Issue in converting .py to .exe using py2exe

Hi Experts, Good morning. I am trying to convert my hello.py to hello .exe file. I followed the steps as mentioned in the documentation but getting errors in the end. Please help. What I did as below-- Created hello.py file print ("Hello world!") raw_input('') Then... (0 Replies)
Discussion started by: shekhar_4_u
0 Replies

2. Shell Programming and Scripting

Weird issue in converting XLSX to TXT

Hi Guys, I have used Perl scripting to convert XLSX file to TXT file using Perl module Spreadsheet::XLSX. I processed one XLSX file having one column and 65k rows of data . Strangely ,It is merging data for every 2047 row and I could see data in TXT file as Ex: Suppose in XLSX file ,if... (2 Replies)
Discussion started by: Rajk459
2 Replies

3. UNIX for Dummies Questions & Answers

Converting pdf to jpg in multiple directories?

Hi! On my Ubuntu I have thousands of files in a couple hundred directories. I'm trying to convert the pdf's to jpg's. I used this command in terminal: for fname in *.pdf; do convert $fname ${fname%.pdf}.jpg; doneIt works great but the problem is I have to run this in terminal for each... (2 Replies)
Discussion started by: martinsmith
2 Replies

4. UNIX for Dummies Questions & Answers

Wget JPG not working

Hi, I am new to Unix. Actually, I am using Terminal from MAC OSX Snow Leopard. I have installed XCode and wget 1.14 today. I just want to download all of the jpg files from a specific blog (from blogspot). But its not working. Here is the command I use: wget -r -nd -A jpg come-se All... (3 Replies)
Discussion started by: bruleke
3 Replies

5. 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

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

eps or ps output files

I am writing a text for LaTeX compile. I think that my grace figs need to be .ps or .eps files for incorporation. Can one just do a 'save as X.eps' for this, or is another method required? Thanks- Marshall (6 Replies)
Discussion started by: blann
6 Replies

8. 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

9. 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
Login or Register to Ask a Question
eps(n)							       BLT Built-In Commands							    eps(n)

__________________________________________________________________________________________________________________________________________________

NAME
eps - Encapsulated PostScript canvas item. SYNOPSIS
canvas create eps x y ?option value?... _________________________________________________________________ DESCRIPTION
The eps canvas item lets you place encapsulated PostScript (EPS) on a canvas, controlling its size and placement. The EPS item is dis- played either as a solid rectangle or a preview image. The preview image is designated in one of two ways: 1) the EPS file contains an ASCII hexadecimal preview, or 2) a Tk photo image. When the canvas generates PostScript output, the EPS will be inserted with the proper translation and scaling to match that of the EPS item. So can use the canvas widget as a page layout tool. EXAMPLE
Let's say you have for PostScript files of four graphs which you want to tile two-by-two on a single page. Maybe you'd like to annotate the graphs by putting a caption at the bottom of each graph. Normally, you would have to resort to an external tool or write your own PostScript program. The eps canvas item lets you do this through Tk's canvas widget. An eps item displays an image (or rectangle) representing the encapsulated PostScript file. It also scales and trans- lates the EPS file when the canvas is printed. SYNTAX
canvas create eps x y ?option value?... The eps item creates a new canvas item. Canvas is the name of a canvas widget. You must supply the X-Y coordinate of the new eps item. How the coordinate is exactly interpreted is controlled by the -anchor option (see below). Additional options may be specified on the command line to configure aspects of the eps item such as its color, stipple, and font. The following option and value pairs are valid. -anchor anchor Tells how to position the EPS item relative to its X-Y coordinate. The default is center. -background color Sets the background color of the EPS rectangle. -borderwidth pixels Sets the width of the 3-D border around the outside edge of the item. The -relief option determines if the border is to be drawn. The default is 0. -file fileName Specifies the name of the EPS file. The first line of an EPS file must start with "%!PS" and contain a "EPS" version specification. The other requirement is that there be a "%%BoundingBox:" entry which contains four integers representing the lower-left and upper- right coordinates of the area bounding the EPS. The default is "". -font fontName Specifies the font of the title. The default is *-Helvetica-Bold-R-Normal-*-18-180-*. -foreground color Specifies the foreground color of the EPS rectangle. The option matters only when the -stipple option is set. The default is white. -height pixels Specifies the height EPS item. If pixels is 0, then the height is determined from the PostScript "BoundingBox:" entry in the EPS file. The default is 0. -image photo Specifies the name of a Tk photo image to be displayed as in the item as a preview image. This option overrides any preview speci- fication found in the EPS file. The default is "". -justify justify Specifies how the title should be justified. This matters only when the title contains more than one line of text. Justify must be left, right, or center. The default is center. -relief relief Specifies the 3-D effect for the EPS item. Relief specifies how the item should appear relative to canvas; for example, raised means the item should appear to protrude. The default is flat. -shadowcolor color Specifies the color of the drop shadow used for the title. The option with the -shadowoffset option control how the title's drop shadow appears. The default is grey. -shadowoffset pixels Specifies the offset of the drop shadow from the title's text. If pixels is 0, no shadow will be seen. The default is 0. -showimage boolean Indicates whether to display the image preview (if one exists), or a simple rectangle. The default is yes. -stipple bitmap Specifies a bitmap to used to stipple the rectangle representing the EPS item. The default is "". -title string Sets the title of the EPS item. If string is "", then the title specified by the PostScript "Title:" entry is used. You can set the string a single space to display no title. The default is "". -titleanchor anchor Tells how to position the title within EPS item. The default is n. -titlecolor color Specifies the color of the title. The default is white. -titlerotate degrees Sets the rotation of the title. Degrees is a real number representing the angle of rotation. The title is first rotated in space and then placed according to the -titleanchor position. The default rotation is 0.0. -width pixels Specifies the width EPS item. If pixels is 0, then the width is determined from the PostScript "BoundingBox:" entry in the EPS file. The default is 0. 5i. BLT
2.4 eps(n)