Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 33

Thread: [Award Winner] Technique for adding coastal detail as you zoom in.

  1. #21

    Post

    Do "convert --version" and see what it says. Random noise was added in version 6.3.5: http://www.imagemagick.org/script/changelog.php
    Last edited by isomage; 12-20-2008 at 08:17 PM.
    My random map generators and GIMP scripts: http://axiscity.hexamon.net/users/isomage/

  2. #22

    Post

    Ok, I'm on version 6.2.4

    That'll teach me not to install from sudo apt-get install


    ok
    compiled
    ran the thing to test and i get an error

    dr-spangle@dr-spangle-laptop:~/Desktop/ImageMagick-6.4.7-10$ /usr/local/bin/convert logo: logo.gif
    /usr/local/bin/convert: error while loading shared libraries: libMagickCore.so.1: cannot open shared object file: No such file or directory

  3. #23

    Post

    Quote Originally Posted by dr-spangle View Post
    ok
    compiled
    ran the thing to test and i get an error

    dr-spangle@dr-spangle-laptop:~/Desktop/ImageMagick-6.4.7-10$ /usr/local/bin/convert logo: logo.gif
    /usr/local/bin/convert: error while loading shared libraries: libMagickCore.so.1: cannot open shared object file: No such file or directory
    If you built it from source instead of installing from your package manager, you may need to make sure that the path where the libraries were installed (probably /usr/local/lib) is in /etc/ld.so.conf, and then run ldconfig.
    Last edited by isomage; 12-20-2008 at 11:20 PM.
    My random map generators and GIMP scripts: http://axiscity.hexamon.net/users/isomage/

  4. #24

    Post

    Code:
    include /etc/ld.so.conf.d/*.conf
    
    /usr/lib/atlas
    so do I add it to the bottom?

  5. #25

    Post

    Yeah. And then run "ldconfig" in the shell as root.

    It's possible that it's already in one of the files referenced in the "include" line -- you could check the files in /etc/ld.so.conf.d/ to make sure, so you're not repeating. Run "ldconfig" in either case.
    My random map generators and GIMP scripts: http://axiscity.hexamon.net/users/isomage/

  6. #26

    Post

    ok, it worked
    somewhat

    the test function on their site "/usr/local/bin/convert logo: logo.gif" worked


    the noise one didn't work so well

    Code:
    dr-spangle@dr-spangle-laptop:~$ convert -size 512x512 xc: -type Grayscale +noise Random -resize 4096x4096 -contrast +noise Laplacian -blur 2 -contrast /home/dr-spangle/Desktop/noise.png
    convert: no encode delegate for this image format `/home/dr-spangle/Desktop/noise.png' @ constitute.c/WriteImage/1145.

  7. #27

    Default

    It's possible you don't have libpng installed, or ImageMagick was configured "--without-png", or both. If you don't want to fix that you could just use gif, since you know it works.

    By the way, what distribution and version are you using?
    Last edited by isomage; 12-21-2008 at 02:34 PM.
    My random map generators and GIMP scripts: http://axiscity.hexamon.net/users/isomage/

  8. #28

    Post

    Ubuntu 7.10

    Any newer and my crappy wireless card fails...

    Getting a new computer in January, thinking about a macbook, they tend to work apparently

    This one is sort of falling apart:
    http://80.42.17.23/Photos/Laptop/RIMG0903.JPG

    Yes, that tape holds the screen up

  9. #29
    Administrator Redrobes's Avatar
    Join Date
    Dec 2007
    Location
    England
    Posts
    7,196
    Blog Entries
    8

    Post

    LOL, I like to see every last CPU cycle extracted from a PC before it dies

    Dunno what to suggest for the file output other than to try a few types and see what saves out which you can use in Gimp.

  10. #30

    Post

    "identify -list format" will print a list of supported image formats.
    My random map generators and GIMP scripts: http://axiscity.hexamon.net/users/isomage/

Page 3 of 4 FirstFirst 1234 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •