473,503 Members | 9,903 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Zoom in, s60 image

2 New Member
Hi,

I'm writing in python for s60 (nokia cell.) and working with Canvas and Image,
while i'm moving through the image using:

Expand|Select|Wrap|Line Numbers
  1. canvas.blit(image, source=((sourceLocX, self.sourceLocY),
  2. (sourceLocX+ canvas.size[0],
  3. sourceLocY+self.canvas.size[1])))
i can't seems to zoom in/out, I looked into Image and Canvas documentation and still don't
understand how to do that...
anyone knows ?


Best,
PapaJ
Python Fan
Mar 21 '08 #1
1 1323
jlm699
314 Contributor
Expand|Select|Wrap|Line Numbers
  1. canvas.blit(image, source=((sourceLocX, self.sourceLocY),
  2. (sourceLocX+ canvas.size[0],
  3. sourceLocY+self.canvas.size[1])))
Simply based on the code you've posted here I'd say:
Expand|Select|Wrap|Line Numbers
  1. canvas.blit(image, source = ( ( self.sourceLocX, self.sourceLocY ), \
  2.     ( self.sourceLocX + self.canvas.size[0], \
  3.       self.sourceLocY + self.canvas.size[1] ) ) )
The thing you want to make sure you keep track of is the self. notation. This allows you to access members of self . So depending on which of the elements (sourceLoc*, canvas, etc.) are members of self, they should always be prepended with self.

What error codes are you getting? Or is simply nothing happening?
Mar 21 '08 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

4
6511
by: stef | last post by:
Hello: I am trying to design a web page whose graphics content would change according to the "text Zoom" settings of the user. (Basically the goal is to use mathematical symbols that...
0
1245
by: ACaunter | last post by:
Hi there, I have an image on my ASP.Net page and i created a <p> tag that can be dragged around the screen.. I needed to get it so that when the <p> tag is over the image, whatever is inside, or...
2
12660
by: Mo Ade via .NET 247 | last post by:
How do I write code to include a zoom feature in my project so that when my Vb Form loads an image I can click in my main menu zoom in or zoom out? -------------------------------- From: Mo Ade ...
6
22381
by: Rich | last post by:
Hello, I am putting together a simple picture viewing program to view jpg. bmp pictures. I have the picturebox sizemode set to autosize. I have the picturebox in a pannel set to autoscroll, so...
1
1667
by: Ricardo Furtado | last post by:
I've been with a problem for about two months and i've bought books and search the internet for an explanation, and haven't found one. I'm developing a cephalometric software, that needs to capture...
3
4721
by: Keith G Hicks | last post by:
In MS Access image controls there's a property setting for "Size Mode" --> Clip, Zoom or Stretch. I don't see any similar property in an asp image control. When I have an image on a page, it seems...
4
24853
by: Yoshitha | last post by:
I'm developing windows application using c#.net (vs 2003), i've placed several images (picture boxes) in panel control and i want to zoom the panel control so that the images and text which...
4
12281
by: wasishincar | last post by:
I'm trying to read a bitmap and zoom in/out it on screen. I wrote some code but it did not perform as I expect. The bitmap shift 1 pixel to the upper-left coner when zooming in/out button was...
0
8292
by: murry19830507 | last post by:
i want creat an web application(c#.net),which contains an image and one radiobutton list with 3 radiobuttons(zoom in ,zoom out ,zoom window) when user checked on zoom in imge has to be zoom inthe...
0
7095
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7361
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7015
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7470
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5602
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5026
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3183
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3173
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
403
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.