Zoom/enlarge

Sorry I have had so many questions.  Hopefully, this is my last one.  I have a few images that I want
to zoom in on or enlarge.  (example: a far away shot that I would prefer to have as a close up)  Is there a
way to do that?
Thank you so much for your help!  This forum and the people that use it are extremely knowledgable!

Hey,
Zooming in an image will only allow you to view the details in a larger view but to make it look like being shot as a closeup, you would need to crop it the required area which can make itlook as a closeup.
Cheers,
Swarnima

Similar Messages

  • I uploaded the new firefox and all of my texts and pictures became small. ive tried the zoom, enlarging the texts, and even add-ons and nothing is working. how can i get it back to were it was before i downloaded the new firefox?

    ever since i uploaded the new firefox i cant get my texts and pictures back to the size i had them before. ive tried everything i could think of to get this problem fixed. now my texts are running into each other because the texts windows are so small and the texts are so large. i love firefox but ever since i uploaded this new one i cant use it.

    Reset the page zoom on pages that cause problems: <b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    * http://kb.mozillazine.org/Zoom_text_of_web_pages
    You can use one of these extensions to adjust the default font size and page zoom on web pages:
    * Default FullZoom Level - https://addons.mozilla.org/firefox/addon/6965
    * NoSquint - https://addons.mozilla.org/firefox/addon/2592

  • Simple image enlarge/zoom

    Hi
    I need a way to resize or zoom in a png/jpg image in j2me. I am fairrly new to j2me and have been reading a few books but I am no proffesional.
    Could someone post a midlet that does that. A COMPLETE midlet with imports and all, I have collected quite alot of pieces of code from the net but I have no idea how to put them into a midlet lol!
    Any assistance would be appreciated I just need an application that takes an image located in the jar file and zooms/enlarges it to a size that I want.
    Here are some of the codes i got from the net, but I dont really understand that much.
    public static Image resizeImage(Image src, int screenWidth, int screenHeight) 
        int srcWidth = src.getWidth(); 
        int srcHeight = src.getHeight(); 
        Image tmp = Image.createImage(screenWidth, srcHeight); 
        Graphics g = tmp.getGraphics(); 
        int ratio = (srcWidth << 16) / screenWidth; 
        int pos = ratio / 2; 
        // Horizontal Resize 
        for (int x = 0; x < screenWidth; x++) 
            g.setClip(x, 0, 1, srcHeight); 
            g.drawImage(src, x - (pos >> 16), 0, Graphics.LEFT | Graphics.TOP); 
            pos += ratio; 
        Image resizedImage = Image.createImage(screenWidth, screenHeight); 
        g = resizedImage.getGraphics(); 
        ratio = (srcHeight << 16) / screenHeight; 
        pos = ratio / 2; 
        //Vertical resize 
        for (int y = 0; y < screenHeight; y++) { 
            g.setClip(0, y, screenWidth, 1); 
            g.drawImage(tmp, 0, y - (pos >> 16), Graphics.LEFT | Graphics.TOP); 
            pos += ratio; 
        return resizedImage; 
    }  another one is
      * This methog resizes an image by resampling its pixels
      * @param src The image to be resized
      * @return The resized image
      private Image resizeImage(Image src) {
          int srcWidth = src.getWidth();
          int srcHeight = src.getHeight();
          Image tmp = Image.createImage(screenWidth, srcHeight);
          Graphics g = tmp.getGraphics();
          int ratio = (srcWidth << 16) / screenWidth;
          int pos = ratio/2;
          //Horizontal Resize       
          for (int x = 0; x < screenWidth; x++) {
              g.setClip(x, 0, 1, srcHeight);
              g.drawImage(src, x - (pos >> 16), 0, Graphics.LEFT | Graphics.TOP);
              pos += ratio;
          Image resizedImage = Image.createImage(screenWidth, screenHeight);
          g = resizedImage.getGraphics();
          ratio = (srcHeight << 16) / screenHeight;
          pos = ratio/2;       
          //Vertical resize
          for (int y = 0; y < screenHeight; y++) {
              g.setClip(0, y, screenWidth, 1);
              g.drawImage(tmp, 0, y - (pos >> 16), Graphics.LEFT | Graphics.TOP);
              pos += ratio;
          return resizedImage;
      }//resize image  if these were complete midlets it would be easy and quick for me to understand.
    Thanx

    here's a piece of code i use .
    This is the class that is used to resize the image
    public class St3ph3n {
        public St3ph3n() {
        public static int[] scale(int[] srcImage,int dataWidth,int dataHeight) {
            //Preallocating heap-size
            int x, y, b, d, e, f, h, e0, e1, e2, e3, x0, x1, y0, y1, y_width, x_multi,
    y_multi, width_multi;
            int[] dstImage = new int[srcImage.length * 4];
            //Walking array
            for (x = 0; x < dataWidth; x++) {
                for (y = 0; y < dataHeight; y++) {
                    //Get old pixel
                    x0 = Math.max(0, x - 1);
                    x1 = Math.min(dataWidth - 1, x + 1);
                    y0 = Math.max(0, y - 1);
                    y1 = Math.min(dataHeight - 1, y + 1);              
                    y_width = y * dataWidth;
                    b = srcImage[x + (y0 * dataWidth)];
                    d = srcImage[x0 + y_width];
                    e = srcImage[x + y_width];
                    f = srcImage[x1 + y_width];
                    h = srcImage[x + (y1 * dataWidth)];
                    //Calculate new pixel
                    if (b != h && d != f) {
                        e0 = (d == b) ? d : e;
                        e1 = (b == f) ? f : e;
                        e2 = (d == h) ? d : e;
                        e3 = (h == f) ? f : e;
                    } else {
                        e0 = e;
                        e1 = e;
                        e2 = e;
                        e3 = e;
                    //Set new pixel
                    x_multi = x << 1;
                    y_multi = y << 1;
                    width_multi = dataWidth << 1;
                    dstImage[x_multi + y_multi * width_multi] = e0;
                    dstImage[x_multi + 1 + y_multi * width_multi] = e1;
                    dstImage[x_multi + (y_multi + 1) * width_multi] = e2;
                    dstImage[x_multi + 1 + (y_multi + 1) * width_multi] = e3;
            return dstImage;
    }and here's how you use it
    import javax.microedition.lcdui.*;
    import javax.microedition.midlet.*;
    public class St3ph3nTest extends MIDlet
    Image original;
    Image Scaled;
    Display display;
    Form frm;
    public St3ph3nTest()
    display=Display.getDisplay(this);
    frm=new Form("Test Scale");
    try{
        original= Image.createImage("/res/test.png");
      }catch(Exception ee)
       int [] imageData = new int[original.getHeight()*original.getWidth()];
    original.getRGB(imageData, 0, original.getWidth(), 0, 0, original.getWidth(), original.getHeight());
      int[] bigImageData = St3ph3n.scale(imageData, original.getWidth(), original.getHeight());
      Scaled= Image.createRGBImage(bigImageData, original.getWidth()*2, original.getHeight()*2, true);
    protected void startApp()
    frm.append(original);
    frm.append(Scaled);
    display.setCurrent(frm);
    protected void pauseApp()
    protected void destroyApp(boolean uc)
    }cheers

  • Ipad screen is stuck in zoom.already reset and restored settings, read manual...how do i get out of zoom

    ipad screen is stuck in zoom...already read manual, restored settings and back-up done...all applications work fine, just enlarged how do i get out of the zoom/enlarged view?

    King_Penguin, Thanks! Your solution worked exactly and perfectly for me.
    (I suppose you should get the Correct Answers points but some folks just don't know/or care about that).
    Good work. Appreciated.

  • How do I make PDFs OPEN and fit my screen?

    Every time I open a PDF, the document opens larger than my screen. How do I make the document fit the screen I have?
    This is absolutely NOT a zoom problem.
    I have a 15 inch laptop. It has a screen that is about 12 inches wide x 7.5 inches high.
    I open a PDF, and the document opens on my screen so that the entire document is more like 13 inches wide, and 10 inches high. The top menu bar, where I would grab to move, change zoom, enlarge, or, for that matter, CLOSE the document is like 2-2.5 inches OFF the TOP of my screen.
    I can change zoom - it only changes the size of the contents in the window, never the actual window size, and the problem is the window size.
    So the question is, why does PDF even open a window larger than my screen supports, and how do I stop it.
    This is not new - this should by now be a known serious flaw with Adobe Reader and Acrobat and regularly happens with PDFs, and has for years. If I have a second monitor, I can drag the side of the window over onto my second monitor, and then shrink it. But, if I  am traveling, so without my second monitor, it effectively means the only thing I can do with any PDF is right click on the bottom menu bar and "Close all windows"
    Windows XP, Windows 7, Windows 8. 

    Try clicking the arrows top right  corner of your Safari window or Control + Command + F on your keyboard.

  • Java stopped working in FF 3.6.12despite having uninstalled/reinstalled latest Java

    Life was good until recently when java stopped working in FF when accessing eBay (although this continues working fine in IE).
    I have uninstalled all Java and reinstalled the latest version, made sure Java is enabled in FF, all to no avail. Clicking on Tools/Java Console does not bring up the console and most of the Java-based functions in eBay (Zoom, Enlarge, various links and buttons) are not working.
    FF version is 3.6.12 and Java is 1.6.0.22 (per javatester.org web site... which does bring up the Java console in FF, for what ever that's worth... does this indicate the problem is with eBay and not FF???).

    To avoid confusion: http://kb.mozillazine.org/JavaScript_is_not_Java
    See [[JavaScript]] and http://kb.mozillazine.org/JavaScript
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • I've lost my complete iTunes window

    I've had iTunes installed for at least a year, and I've never had this happen. Just now when I turned my set on and clicked on the iTunes icon, a little window about 1" X 4" appeared on my screen. This window contained only one song, although it was possible to go backward and forward on the iTunes song list. I don't want a one-song window, I want what I've had since I installed iTunes: a window showing all of the songs in my iTunes librry.
    I've tried closing-out iTunes, and I've tried turning my computer off and on, but it doesn't help. When I come back, I'm faced with that little, unwanted window. How can I restore the full iTunes window?

    According to Mac (Finder) Help:
    "The three buttons in the top-left corner let you
    close, minimize (shrink), and zoom (enlarge) the
    window."
    Shirley
    Okay, Shirley, I guess I'll just have to expand my definition of "enlarge". What you helped me do was to perform a transformation rather than an enlargement, at least the way I see things. I had one little window devoted to one little song and then I had the whole ball of wax.THAT'S an enlargement! No it isn't, that's a transformation, that's a galactic shift. In any event, it is what it is, and I'll keep it in mind in the future. Thanks for the explanation.

  • Missing radio buttons in Safari 4 / Snow Leopard

    I'm a Moderator/Jr. Admin on a forum and just noticed since upgrading last night to Snow Leopard 10.6.1 that I no longer see radio buttons on my drop down options list (Safari 4.0.3). Screen capture can be seen at: http://i71.photobucket.com/albums/i152/imacpwr/EFcapture001small.jpg
    There are suppose to be radio buttons to the left of each option but they are missing! I'm seeing this problem only on my Mac Pro. My Mac Book Air has the same version of OS X and Safari but not the problem.
    I thought I'd try and re-install Safari so I downloaded the file and started the install. The installer then informs me that I need OS X 10.5.8 or newer to install.
    Huh ? ? ?
    Anyone got any ideas how to get the radio buttons working again?
    Message was edited by: imacpaul

    Yes, I saw that on the following thread and can confirm it's true, Zooming (enlarging) the page causes the radio buttons to drop out. Very annoying in my situation since I have 3-23" monitors and regularly use 4 virtual desktops as a forum moderator. I like to enlarge the pages so that I can sit back and clearly read all the monitors at ease.
    http://discussions.apple.com/thread.jspa?threadID=2143627&tstart=15
    Message was edited by: imacpaul

  • What is the difference between the 45W MagSafe power adapters models A1374 versus MC747LL/A?

    Greetings:
    Can anyone tell me the difference between the MBA 45W MagSafe power adapters models A1374 and MC747LL/A? I cannot seem to find any specs using google and search on these forums.
    Thanks!
    matt
    Zoom
    Enlarge
    Sell one like this
    MacBook Air 45W MagSafe Power Adapter - MC747LL/A

    Two articles:
    http://support.apple.com/kb/HT2346
    http://support.apple.com/kb/HT1565
    Compare the images there, with the images where the model is shipped.

  • What is the best application to keep your photos private?

    I'm looking for a privacy/security app (paid or free) that is easy to use and STABLE, and that won't change the resolution of my photos.  One app that I use crashes all too often, and the other seems to change the photo resolution.  By this, I mean that while the photo is still in the Camera Roll, I can zoom/enlarge it with no problem.  However, after I import the photo into the privacy/security application, I can't zoom/enlarge it nearly as much and when I do the photo becomes visibly fuzzy and degraded.  I want to hide my photos, but I want them to remain high quality.  I would like an app that will work on both the iPhone 4 and iPad (3rd Generation).  Thank you for your recommendations. 

    https://itunes.apple.com/gb/app/picture-safe-hidef-no-1-privacy/id303740913?mt=8
    i use this one they do videos too

  • Tweening a looping FLV

    Hi All,
    It's me again. Stumped again:
    Kglad helped me make a FLV loop seamlessly and tween an FLV (converted to a movie clip) so that it zooms. Now I'm trying unsuccesfully to make both (loop and zoom) happen at the same time. It looks like the looping method below only works on a FLVPlayback component ...and the tweening method only works on a movie clip. Any recommendations?
    Here's the code in frame 1 of my timeline:
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    import fl.video.*;
    //Looks like the looping code below can't make a movie clip loop. It only works with a FLV
    //in a FLVPlayback component.
    //Loop the FLV animation
    var index:int = 0;
    my_FLVPlybk.addEventListener(fl.video.VideoEvent.COMPLETE, completeHandler);
    my_FLVPlybk.source = "FroggyTop.flv";
    my_FLVPlybk.play();
    readyNextPlayerF();
    function completeHandler(e: fl.video.VideoEvent): void {
    my_FLVPlybk.play();
        my_FLVPlybk.visibleVideoPlayerIndex = index;
        readyNextPlayerF();
    function readyNextPlayerF():void{
    index++;
        my_FLVPlybk.activeVideoPlayerIndex = index;
        my_FLVPlybk.source = "FroggyTop.flv"; //assign the source
    //Zoom (enlarge) the FLV animation.
    //Needed to make the FLVPlayback component a movie clip 1st).
    var scaleXTween:Tween=new Tween(LoopingMC,"scaleX",
    None.easeNone, 1,3,5,true);
    var scaleYTween:Tween=new Tween(LoopingMC,"scaleY",
    None.easeNone, 1,3,5,true);
    //How can I do both on same object at the same time (ie; make the animation loop as it's tweening)?
    Here's the posted swf: http://home.comcast.net/~samiri/director/mortals/froggy/linkedFLV__loopAndZoom.swf
    Here's the fla source file: http://home.comcast.net/~samiri/director/mortals/froggy/linkedFLV__loopAndZoom.fla
    Thanks much.

    I thought I tried that but maybe I'm misunderstanding what you mean. Here's what I'm doing:
    -From my main timeline I select: Insert > new symbol
    -Name it "childMC"
    -drag the FLVPlayback component from the library to the stage
    -Set the Properties of the flvPlayback component so that its source is the FLV in the same folder
    -On the FLVPlayback's layer in the timeline: extend the frame to span 20 frames (click on frame 20 and hit F5)
    -select that span and rt click and choose 'create motion tween'
    -click on the flvPlayback object on the stage so the Properties window reflects the flvplayback's properties
    -select the last frame and change the x and y scale so it's bigger
    -hit the return key to preview: I see the flv grow as the playhead moves from the first frame to the last frame (looks fine)
    -now go back to the main timeline
    -create a new layer in the timeline
    -find the just-created "childMC" in the library and drop it onto the stage (and into that new layer)
    -Control > test movie
    The childMC on the main timeline stage does not change in size as it does when I preview from the tweened movie clip's timeline. The movie clip on the main timeline plays ..but just stays the same size on the stage.
    What am I doing wrong?
    Thanks

  • Enlarge a section of the screen or at least vertical zooming option

    Isn't there in FCE the zooming funcionality of Logic (Zooming to enlarge a section of the screen to fill the whole window)?
    And if no, is there at least a vertical zooming option?

    I'm not sure I understand what you need.
    In any case if you want to enlarge a section of the clip, you can use the Motion tab of the viewer: open the clip from the timeline into the viewer, open the Motion tab, change Center and Scale until the section you want is centered in the window and zoomed as required.
    If you want you can also keyframe both Center and Scale to move them as you like.
    As another possibility you can activate Image+Wireframe in the canvas, and while the clip is selected in the timeline you can drag the image in the canvas window to move its center, and drag one of its corners to change its zoom.
    I hope this answers your question
    Piero

  • Is there a way to enlarge the print, maybe zoom in or out?

    Sometimes when I read on line the print is so small I have trouble reading it. Also, I play different games on facebook and such and some of them are so small. I would like to enlarge them. I did it before on internet explorer but haven't figured out if I can do it with firefox. Thank you.

    You can use an extension to set a default font size and page zoom on web pages.
    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

  • Every since I updated to the latest Camera Raw and Photoshop I have the following issue: when I finish the photo in Raw and bring it into Photoshop I have white squares in the Photo. If I crop the photo the white square disappears until I zoom to enlarge

    Every since I updated to the latest Camera Raw and Photoshop I have the following issue: when I finish the photo in Raw and bring it into Photoshop I have white squares in the Photo. If I crop the photo the white square disappears until I zoom to enlarge it then the white square reappears. I do not believe the squares are saved

    Does turning off »Use Graphics Processor« in the Performance Preferences and restarting Photoshop have any bearing on the issue?
    Please read this (in particular the section titled "Supply pertinent information for quicker answers"):
    http://forums.adobe.com/docs/DOC-2325

  • How to I enlarge the fonts of sites PERMANENTLY, (without the zoom in feature)

    I'm working on a 27 inch screen and have constantly to zoom in in order to read content. Is there a way to enlarge website fonts loaded by firefox?

    The Firefox [https://support.mozilla.com/en-US/kb/Page+Zoom Page Zoom] feature does a domain by domain level of saving the users preferred zoom level settings, there is no default Page Zoom level setting in Firefox, as with some other browsers.
    Try the Default FullZoom Level extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/6965
    Or the NoSquint extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/2592/

Maybe you are looking for

  • How do I get rid of someone else's apps on my account?

    A few months ago I synched my new iPhone with my computer at work. It seems that, unknown to me at the time, someone had used the itunes on my computer to update their iPad. Suddenly, I had one million apps on my phone that I had never downloaded. It

  • How can I bypass the password on my iPad ios 7.0.3

    Can someone please tell me how to bypass the password on my iPad.  I don't need it and it's really annoying to have to enter it every single time.  Thanks.

  • Issue of Outgoing payment F-53

    I have a problem about document currency. Actually, our PO, GR/IR is based on USD currency. But when we did clearing by F-53, we use our local currency for document currency. I would like to know is better to use USD as document currency or local cur

  • Loading freight cost on inventory

    Dear All I am implementing LE .Our client want freight charges to get uploaded on inventory during STO. Will any-one please help me to get rid of this problem , I want urgent solution for this . Best Regards Parveen Kumar Thakur

  • MapViewer Legend

    Hallo, I am dealing with mapviewer and the legend. 1: I can create a legend by defining each theme and the symbol I use for this. But is there a way that the legend is defined "automaticlly" so that I do not have to define each theme but mapviewer kn