Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Mapping node relationships

by one4k4 (Hermit)
on May 13, 2003 at 15:17 UTC ( [id://257777]=note: print w/replies, xml ) Need Help??


in reply to Mapping node relationships

#!/usr/bin/perl -w use Image::Magick; $image=Image::Magick->new; $image->Set(size=>'100x100'); $image->Read("xc:white"); $image->Raise('3x3'); $image->Draw(stroke=>'red',primitive=>'rectangle',points=>'20,20 25,25 +'); $image->Draw(stroke=>'red',primitive=>'rectangle',points=>'30,20 35,25 +'); $image->Draw(stroke=>'black',primitive=>'line',points=>'25,23 30,23'); binmode STDOUT; $image->Write('gif:-');
A nice ImageMagick snippit demonstrated, at least to myself, that it is possible to draw via coords (points=>..), and I think I can create what I need from the tables I have currently.

One4k4 - perlmonks@poorheart.com (www.poorheart.com)

Replies are listed 'Best First'.
Re: Re: Mapping node relationships
by PodMaster (Abbot) on May 14, 2003 at 11:04 UTC
    Have you trid GraphViz? It's great for mapping relationships (example: All Roads Lead to Taco).


    MJD says you can't just make shit up and expect the computer to know what you mean, retardo!
    I run a Win32 PPM repository for perl 5.6x+5.8x. I take requests.
    ** The Third rule of perl club is a statement of fact: pod is sexy.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://257777]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-04-19 23:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found