try this mirror/archive https://mirror.sobukus.de/files/src/imagemagick/...How to get the source code for the binary I am using?..
Search found 32 matches
- 2019-09-22T07:12:23-07:00
- Forum: Users
- Topic: Imagemagick older releases
- Replies: 2
- Views: 6932
Re: Imagemagick older releases
- 2016-05-29T06:28:37-07:00
- Forum: Users
- Topic: Windows IM - where is convert?
- Replies: 3
- Views: 5822
Re: Windows IM - where is convert?
Thank you for the information.
What is a VM? - a virtual machine, in this case Win7
Looks like the (windoze) installer needs bringing up to date
http://i.imgur.com/2g6ibcT.jpg
more damn spaces in the command line to contend with.
Thanks again
What is a VM? - a virtual machine, in this case Win7
Looks like the (windoze) installer needs bringing up to date
http://i.imgur.com/2g6ibcT.jpg
more damn spaces in the command line to contend with.
Thanks again
- 2016-05-29T04:20:36-07:00
- Forum: Users
- Topic: Windows IM - where is convert?
- Replies: 3
- Views: 5822
Windows IM - where is convert?
Installing into Win 7 64 bit VM has me stumped. Normally I am a linux user but the PCLOS repo version of IM is ancient. ImageMagick-7.0.1-6-Q16-x64-dll.exe file size 23.8M Where is convert.exe / mogrify.exe ...etc? Can someone please tell me which directory the installer puts these files? or what is ...
- 2016-03-16T13:09:48-07:00
- Forum: Users
- Topic: Old Windows binary distributions
- Replies: 2
- Views: 4810
Re: Old Windows binary distributions
try this archive via the internet archive. http://web.archive.org/web/20110921004715/http://mhonarc.veidrodis.com/image_magick/binaries/ edit: in case of slow/unobtainable/baffling plucked one and popped on my mediafire account http://www.mediafire.com/download/msz28h37dp50jhw/ImageMagick-6.4.8-1 ...
Re: Viewer
No need to download anything extra, imdisplay.exe is part of the IM installation (just called display in linux but Win already has one called that).evilaro wrote: ...snip...I tried to dowload the imdisplay.exe.
Emilio
screenshot http://i.imgur.com/fQlbhUN.jpg
- 2014-12-14T02:34:22-07:00
- Forum: Users
- Topic: Extracting frames from HUGE animated gif
- Replies: 7
- Views: 15023
Re: Extracting frames from HUGE animated gif
@snibgo Just a word of explanation, and I had to go and look it up as well. The ffmpeg syntax changed from pre version 1.2.1 AFAIK the windows IM comes bundled with ffmpeg and uses an older version. With Linux, ffmpeg is a separate package installed as a dependency and you get whatever version is in ...
- 2014-12-13T04:10:37-07:00
- Forum: Users
- Topic: Extracting frames from HUGE animated gif
- Replies: 7
- Views: 15023
Re: Extracting frames from HUGE animated gif
Your file seems to have vanished but..
try this syntax
try this syntax
Code: Select all
ffmpeg -i inputfile.gif -f image2 image-%07d.gif
- 2014-11-14T01:39:34-07:00
- Forum: Users
- Topic: Why is convert reducing quality when PNG -> PNG
- Replies: 4
- Views: 7531
Re: Why is convert reducing quality when PNG -> PNG
Not comparing like-with-like
Original is RGB, converted file is greyscale.
Try convert in.png png24:out.png
Original is RGB, converted file is greyscale.
Try convert in.png png24:out.png
- 2014-10-04T01:58:12-07:00
- Forum: Users
- Topic: Create PDF file with bookmarks using convert?
- Replies: 7
- Views: 9806
Re: Create PDF file with bookmarks using convert?
I do not think IM can do this either. For simplicity, you might get a result with LibreOffice, a quick test using LO Draw, LO Writer probably the same. You can add hyperlinks in the document like this: http://i.imgur.com/STDB5fR.jpg Export as a pdf & looks like this. http://i.imgur.com/mXU826F.jpg ...
- 2014-09-02T02:46:13-07:00
- Forum: Users
- Topic: double extensions in output filenames
- Replies: 8
- Views: 14665
Re: double extensions in output filenames
PClinuxOS KDE 32bit & ImageMagick 6.8.0-2 2013-11-07 Q16 'm using ImageMagick 6.8.9-3 on Linux. That particular script is no problem. It was just telling me strange things when I tried to use it in various ways to stop my script giving an output filename of something like processed.jpg.png.. yet ...
- 2014-08-28T08:47:29-07:00
- Forum: Users
- Topic: Conversion of EPS to JPG file generates zero byte file
- Replies: 13
- Views: 16813
Re: Conversion of EPS to JPG file generates zero byte file
I do not think the linux system has caught up to version 90 yet The base libjpeg.so.62 is usually a symlink to the executable. In PClinuxOS this is libjpeg.so.62.1.0. Is this the most recent package? I do not know but Debian experimental is on that version. screenshot http://i.imgur.com/iia7S1i.jpg ...
- 2014-08-21T07:05:06-07:00
- Forum: Users
- Topic: Conversion of EPS to JPG file generates zero byte file
- Replies: 13
- Views: 16813
Re: Conversion of EPS to JPG file generates zero byte file
Working here in a linux, PClinuxOS 32 bit, IM 6.8.0 , Ghostscript 9.06
as this screenshot: http://i.imgur.com/CkyQIHY.jpg
Might be a 64 bit libraries issue.
as this screenshot: http://i.imgur.com/CkyQIHY.jpg
Might be a 64 bit libraries issue.
- 2014-05-03T01:24:56-07:00
- Forum: Users
- Topic: convert bmp to svg
- Replies: 16
- Views: 26471
Re: convert bmp to svg
From past tests and AFAIK autotrace does not work in M$ Win after WinXP. It does work in linux (at least the 32 bit PCLOS I use) Potrace works but does not have a centerline option, which is a big miss. Autotrace is sometimes picky about the input file format, example if saving bmp from gimp enable ...
- 2013-12-02T06:33:53-07:00
- Forum: Users
- Topic: Problem with unix subdirectory relative path as input file..
- Replies: 2
- Views: 5591
Re: Problem with unix subdirectory relative path as input fi
Maybe pass two variables to the script. #!/bin/bash # cdpath=/. cd $1 convert "$2" -resize 100x100 new_"$2" mv new_$2 ../$2 cdpath will set a base for the relative path then sh example.sh "somedirectory" "image.png" should work (just the names, no slashes) edit: as you have guessed, that cdpath is ...
- 2013-10-21T03:36:52-07:00
- Forum: Digital Image Processing
- Topic: How to find hidden text in an image
- Replies: 2
- Views: 17066
Re: How to find hidden text in an image
I found some text but it might be a complete "red herring" or maroon as the case may be. Since it is a gif file, it has a colour map, 2 of the colours are duplicated, maroon, hex 800000, (apart from some strange black entries) editing either to another colour reveals some text but... ....it says ...