Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Greetings!!

I used your code and tried to force it to do what you describe. Unfortunately, I was unable to get it to work, but I'll keep trying.

What's happening is that you are creating a Frame widget then packing it, and creating a Canvas widget, then packing it ON TOP of the Frame widget.

To see this, I added the following, right before the MainLoop();...

$c->lower();
This lowers the Canvas widget, $c in the stack of displayed widgets, placing it below the $cf Frame widget.

It sounds as though you are trying to mix widgets here... The Canvas widget allows you to draw lines, other shapes and create text. The Frame widget allows you to place other widgets, but not draw lines. A big difference between the two, as far as I can tell, is that the Canvas widget only allows you to place a Bitmap object, not other graphical formats, like those allowed by the $mw->Photo() method, like .gif files...

I'll keep digging around and see if I come up with anything... It's definitely an interesting question...

-Daruma

Update: I found a way to do this!! Basically, I put everything into the Canvas widget... And I did find a way to put other image types into a Canvas widget other than bitmaps... the $c->createImage() method works for that...

Here's the code I used to do this...

#!c:\perl\bin\perl.exe use strict; use warnings; use diagnostics; use Tk; my $mw = MainWindow->new(-title => "Line over an image"); my $c = $mw->Scrolled("Canvas", -cursor => 'crosshair', -scrollbars => 'se', ) ->pack(-anchor => 'nw', -fill => 'both', -expand => 1, ); my $tile = $c->createImage(50, 50, -image => $mw->Photo(-file => Tk->findINC('Xcamel.gif')), ); my $line = $c->createLine(0, 0, 100, 100, -width => 2, -fill => "red", ); MainLoop();

In reply to Re: Transparent draw with tk by Daruma
in thread Transparent draw with tk by traveler

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (6)
As of 2024-04-23 10:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found