English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

wheres the zoom on my computer

2006-06-17 15:39:18 · 3 answers · asked by moestime66 1 in Computers & Internet Programming & Design

3 answers

Zooming will make the picture look bigger, but will not actually enlarge the image. In either case you will need to use a software program to zoom or enlarge a picture. I would recommend this excellent free program, click the download link and install it on your PC
http://www.irfanview.com/

2006-06-17 15:49:01 · answer #1 · answered by synapse 4 · 0 0

Most graphic editors include a zoom of some sort, including paint which is the default editor on my system. The best results are usually achieved if you keep the scale up in whole figures, eg x 2 x 3 x 4 etc.

2006-06-17 15:47:39 · answer #2 · answered by MARTIN B 4 · 0 0

If you don't have a picture editor to resize your images, for some fun, go to www.blitzbasic.com download Blitz3D or BlitzPlus demo, and type:

G_W=1280;Change this to match your screen width
G_H=1024;Change this to match your screen width
Graphics G_W,G_H;Set the graphics mode
SetBuffer BackBuffer();Set the drawing buffer to the back of the screen

image=LoadImage("Your_Image.ex");Load the image into the RAM
d_X=300;Width in pixels of the image resized that you want
d_Y=300;Hight in pixels of the image resized that you want
ResizeImage image,d_X,d_Y;Resize the image to the variables

While Not KeyHit(57);While you don't press space...
Cls;Clear the screen
DrawImage image,0,0;Draw the image to the screen
If KeyHit(28) Then SaveImage image, "Your Image.bmp"
Flip;Flip the images to the screen
Wend;Go to the start-"While"

End;End the program

2006-06-17 17:19:19 · answer #3 · answered by [daniel] 2 · 0 0

fedest.com, questions and answers