Search found 289 matches

by whugemann
2013-01-07T02:40:03-07:00
Forum: Users
Topic: Is -auto-orient lossless?
Replies: 2
Views: 4692

Re: Is -auto-orient lossless?

Lossless rotation is possible by the use of jhead, which uses jpegtran to perform this job.
by whugemann
2012-11-23T05:55:59-07:00
Forum: Fred's Scripts
Topic: How to run Fred's ImageMagick Scripts in PHP under Windows?
Replies: 9
Views: 32857

Re: How to run Fred's ImageMagick Scripts in PHP under Windo

Just to clarify terms: I spoke of cygwin, which is a complete Unix bash shell under Windows (well, at least kind of, I hope). XAMMP, however, is a special WAMP (= Windows + Apache + MySQL + PHP), which is something different. In this environment, PHP cannot rely on certain Unix functionalities to be...
by whugemann
2012-11-23T00:50:39-07:00
Forum: Fred's Scripts
Topic: How to run Fred's ImageMagick Scripts in PHP under Windows?
Replies: 9
Views: 32857

Re: How to run Fred's ImageMagick Scripts in PHP under Windo

I remember that I once tested one of Fred's scripts under Windows, but I cannot find the corresponding thread on this forum. Anyway, my experience with it resulted in my remarks at http://www.imagemagick.org/Usage/windows/#cygwin, so I would rather try what's written there, instead of dealing with X...
by whugemann
2012-11-19T05:41:01-07:00
Forum: Users
Topic: How to create simply arrow - second edition
Replies: 7
Views: 11388

Re: How to create simply arrow - second edition

Strange arrow head that you are drawing here ... I'm not sure what you mean by the arrow head following the main line, but what I would rather do is to define the entire arrow as one polygon object and then place it in its entirety by using translate (and possibly rotate) before drawing that object.
by whugemann
2012-11-17T08:04:13-07:00
Forum: Users
Topic: Coverting PDFs: White background instead of transparency
Replies: 6
Views: 26028

Re: Coverting PDFs: White background instead of transparency

I gave it a check: I am working with ImageMagick 6.7.4-7 (January 2012) on Windows XP. The option -alpha remove resulted in the error message: UnrecognizedAlphaChannelType `remove'. It however helped to just choose the option -alpha off, which produced white background for any format. Strange enough...
by whugemann
2012-11-16T07:29:46-07:00
Forum: Users
Topic: Coverting PDFs: White background instead of transparency
Replies: 6
Views: 26028

Re: Coverting PDFs: White background instead of transparency

Does that answer the question? If not, can you provide a sample input? No, it doesn't. I created a simple example, drawing a red circle and a blue quadrangle onto a blank page with Microsoft Word and then printing the page on a PDF printer (FreePDF aka FreePDFxp): http://www.unfallrekonstruktion.de...
by whugemann
2012-11-15T04:35:15-07:00
Forum: Users
Topic: Coverting PDFs: White background instead of transparency
Replies: 6
Views: 26028

Coverting PDFs: White background instead of transparency

When converting vector PDF pages to image formats that are aware of transparency, I often have the problem that the background becomes black, i.e. I would have to read black text on black background. Obviously, the canvas (i.e. the page) is considered to be fully transparent. (When converting to JPE...
by whugemann
2012-11-15T03:41:26-07:00
Forum: Users
Topic: convert pdf (over 11 pages) to jpg -> outputfile numbering
Replies: 2
Views: 5026

Re: convert pdf (over 11 pages) to jpg -> outputfile numberi

And is it possible to start with output-01.jpg instead of output-01.jpg?
Add the option
-scene 1
to the command line.
by whugemann
2012-10-30T09:18:21-07:00
Forum: Users
Topic: SVG to PDF does not work
Replies: 2
Views: 6386

Re: SVG to PDF does not work

Works just fine on my computer (Windows 7, ImageMagick-6.8.0-1). Try to convert the SVG to something simpler first, say GIF. If that works, PDF is the problem, not SVG.
by whugemann
2012-10-19T00:51:01-07:00
Forum: Users
Topic: Uninstall by line command
Replies: 2
Views: 4938

Re: Uninstall by line command

Call unins000.exe with the option /verysilent and it will not ask you for anything.
by whugemann
2012-10-18T00:36:12-07:00
Forum: Users
Topic: convert multiple files and save to a new directory
Replies: 2
Views: 15936

Re: convert multiple files and save to a new directory

By your notation I assume that you are working on a Windows computer, such that http://www.imagemagick.org/Usage/windows/#for_loops should provide you with the solution.
by whugemann
2012-10-17T13:15:54-07:00
Forum: Users
Topic: imagemagick compare used in vbscript
Replies: 1
Views: 4651

Re: imagemagick compare used in vbscript

I wouldn't do it the "object way", but rather call Compare directly, analoguously to the way I call Identify in http://www.imagemagick.org/Usage/windows/#vb, first example. You can then either redirect the output to a file, as you are trying to do, or read it directly from stdout, as demon...
by whugemann
2012-10-14T03:03:42-07:00
Forum: Users
Topic: Retaining original document file size
Replies: 1
Views: 3771

Re: Retaining original document file size

Does ImageMagick do this function? Why didn't you just try? It does the jobs your are asking for, especially the conversion of (possibly multipage) TIFFs into one PDF document. The page size will be adjusted to size. When converting several JPEGs into one PDF be aware that the JPEGs will be re-comp...
by whugemann
2012-10-07T10:31:50-07:00
Forum: Users
Topic: Struggling with bat in Win7
Replies: 6
Views: 13116

Re: Struggling with bat in Win7

There is nothing wrong with that batch file. It runs fine on my Windows computer. There is also nothing wrong with setting SETLOCAL at the start of it. So I guess it is some mix-up with the Windows convert command. Rename the IM Convert into something else (e.g. IMconv.exe) and call that program in ...
by whugemann
2012-10-06T03:51:14-07:00
Forum: Users
Topic: Blurry when EMF image converted to JPG or PNG
Replies: 3
Views: 7941

Re: Blurry when EMF image converted to JPG or PNG

EMF is a vector format and text is displayed as a vector object, i.e. defined by its oulines discribed in terms of Bezier curves. If you convert this into a raster graphic, it becomes blurry, especially as the rasterisation hints in the font file are usually ingnored by generic raster processors suc...