http://qs321.pair.com?node_id=210971


in reply to Transparent draw with tk

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();