From owner-freebsd-questions@FreeBSD.ORG Fri Nov 7 13:26:26 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA2B81065674 for ; Fri, 7 Nov 2008 13:26:26 +0000 (UTC) (envelope-from sonic2000gr@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.186]) by mx1.freebsd.org (Postfix) with ESMTP id 589FE8FC0C for ; Fri, 7 Nov 2008 13:26:26 +0000 (UTC) (envelope-from sonic2000gr@gmail.com) Received: by nf-out-0910.google.com with SMTP id h3so619003nfh.33 for ; Fri, 07 Nov 2008 05:26:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=kOqZxQHxDJkw8Vd9k0MATVFp2Y99Y4It2d1S6hDgtc4=; b=jsw2NtUbfFU2gmw6qJTAQcXhHc83LnQ8zxUEJJbuX6BxlxH3VitlI11Jx/jvU7PDzd hYMSXQjeXXL/HKW3vTXxe7BX8F4Fi6+cEjOp+0oLjZaB+nb3QerD+i6QqlK22PMCS/cT djoAELDNMIMY6Fx8BTDidtJEHzQRZZbm5QDrc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=tsa2eRfpis2UilWWyVrjrcD4JV1d1OHLSE7F5Y4pwyyrtNk/qs31bl5tSL75kxtE2j MmtqSC8PpjFc2O87VppCUnf2QTs+ijIKLF8KYUS0mN6KgCkc8el8tMGv6V6vIyD9qp4V GNcA57DprcGNTNHtlHql+Tmkfvp3td/1TgEt0= Received: by 10.210.71.11 with SMTP id t11mr3942013eba.57.1226064385147; Fri, 07 Nov 2008 05:26:25 -0800 (PST) Received: from atlantis.dyndns.org (athedsl-311367.home.otenet.gr [85.72.71.229]) by mx.google.com with ESMTPS id c4sm13717868nfi.13.2008.11.07.05.26.23 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 07 Nov 2008 05:26:24 -0800 (PST) Message-ID: <491441FE.1090708@gmail.com> Date: Fri, 07 Nov 2008 15:26:22 +0200 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.17 (X11/20081011) MIME-Version: 1.0 To: Laszlo Nagy References: <49143663.9070804@shopzeus.com> In-Reply-To: <49143663.9070804@shopzeus.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: eps to jpg conversion - which program? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Nov 2008 13:26:26 -0000 Laszlo Nagy wrote: > > Hi, > > I need to convert eps files into jpeg files in batch mode. Gimp works > perfectly, except that I cannot use an X display. I tried eps2png with > no success: > > > %file test.eps > test.eps: DOS EPS Binary File Postscript starts at byte 30 length > 566887 TIFF starts at byte 566917 length 4741 > %eps2png -jpg -width 1000 -verbose -output test.jpg test.eps > Producing jpg (jpeg) image. > Not EPS file: test.eps, skipped > > What port should I use to convert EPS into JPG? I would like to use a > program that shares the same library with Gimp, because we know that > Gimp works great for this task. > > Thanks, > > Laszlo > How about using 'convert' from graphics/ImageMagick? It would be as simple as convert myfile.eps myfile.jpg and there are myriads of options to fiddle if you wish. I've been using it with great success for quite some time now.