Search found 8 matches
- 2015-10-22T14:15:23-07:00
- Forum: Developers
- Topic: Quality of PNG converted from PDF
- Replies: 10
- Views: 110495
Re: Quality of PNG converted from PDF
normally I extract the embedded image with 'pdfimages' at the native resolution, then use IM's convert to the needed format: $ pdfimages -list fileName.pdf $ pdfimages fileName.pdf fileName # save in .ppm format $ convert fileName-000.ppm fileName-000.png this generate the best and smallest result ...
- 2012-05-18T00:28:23-07:00
- Forum: Users
- Topic: imdisplay command line parameters
- Replies: 9
- Views: 24933
Re: imdisplay command line parameters
good ideas. When on cygwin can or can not be present an Xserver. When not present 'display' should redirect the output to native GDI lib. A strategy can be sense the $DISPLAY, if not defined, go for GDI. And go for GDI always when win: output is specified, is this intended for this ? On the other ...
- 2012-05-14T04:45:47-07:00
- Forum: Users
- Topic: imdisplay command line parameters
- Replies: 9
- Views: 24933
Re: imdisplay command line parameters
Can imdisplay take a image via a stdin? If so you can do something like convert image.png -thumbnail 640x480 png:- | imdisplay - tested, seems 'imdisplay' ignore the stdin. I tried: $ convert gpib488err1.PNG -thumbnail 640x480 png:- | imdisplay - no errors, but open 'imdisplay' with nothing ...
- 2012-05-10T01:41:36-07:00
- Forum: Users
- Topic: imdisplay command line parameters
- Replies: 9
- Views: 24933
Re: imdisplay command line parameters
sure the 'imdisplay' binary isn't packaged with Cygwin IM package. Work on my system because I have both Cygwin and native Win32 ImageMagick. So this is not a good choice as alternative to 'display' on Win32 system without the Xserver. As simple viewer the Windows built in is good, but as you need ...
- 2012-05-08T00:51:24-07:00
- Forum: Developers
- Topic: where 'imdisplay' process the arguments?
- Replies: 2
- Views: 6582
Re: where 'imdisplay' process the arguments?
My user attept are at: http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=20867&p=84347#p84347 I think I'm a good driver and CLI coder, but I have little experience in GUI as GTK programmer. The major problem I have completely 0 experience in Win32 programming. Who wrote 'imdisplay' ? I ...
- 2012-05-05T15:31:27-07:00
- Forum: Developers
- Topic: where 'imdisplay' process the arguments?
- Replies: 2
- Views: 6582
where 'imdisplay' process the arguments?
hi, as 'imdisplay' arguments are not documented, I'm trying to understand them by looking at the sources. Strangely the unix sources doen't contain the IMdisplay.exe related files, and so isn't possible to crosscompile this file with: ./configure --target=i686-pc-mingw32 & make So I downloaded the ...
- 2012-05-02T04:49:15-07:00
- Forum: Users
- Topic: imdisplay command line parameters
- Replies: 9
- Views: 24933
Re: imdisplay command line parameters
you may need to use convert to do your image operations then use "imdisplay" to display it. I am not certain of the syntax of the windows "imdisplay" command - sorry. converting to a temp file with convert on Win32 platform work as expected, but add overhead. About imdisplay, I tested different ...
- 2012-04-27T06:29:21-07:00
- Forum: Users
- Topic: imdisplay command line parameters
- Replies: 9
- Views: 24933
imdisplay command line parameters
hi, I'm writing a crossplatform bash script, on Windows I use cygwin. As the target PC has no Xserver, when on Linux I use 'display', on Win32 I use 'imdisplay'. The problem arise using command line parameters, as 'display' support lines so: $ display -resize 350x90 image.png while I'm not able to ...