Zoom past edges of image

Hello,
I am having an issue that i cannot figure out, i might have hit some kind of shortcut or something... When i zoom in 100% to an image, i use the navigator to go to the corner of the image. however when i look at the image (i am in the corner) the scroll bars show that i can go further than that! so if i use the scrollbars to get to the corner it goes right past the image... now i know i can do this in fullscreen mode... (F key) however i have tried that and know that i am NOT in that mode, yet i can still scroll past the image. any thoughts on what or how to change this back to stop at the edge?! thanks in advance!

Here are a couple of screen shots to show what i am talking about... it really looks like i am in fullscreen
mode but i assure you i am not!
Navigator in bottom corner of image, but image scrollbars show there is more... even though there isn't!
useing the scrollbars i go right past the image like i am in fullscreen mode!   any thoughts!?

Similar Messages

  • One person, in a crowd is in normal speed while everything else zooms past

    I have wanted to do this effect for a while. I want to film a peson walking on the street normally while everyone else zooms past. I posted this same message last fall, but I never got around to filming it, and was unclear about it. I pretty much understand the concept. locked off tripod shot. FIlm the area with nothing in it. film the person with the backgroung. then shoot the people you want to zoom past. Everyone tells me to use difference mattes, but I can never get them to work proporly. Can any one take me step by step in the editing side, as if I have already shot this. I want to use this effect in my next film school project. I would really appreciate any input on this
    thanks
    Stephen...

    v1: (background) crowds in street (sped up as required)
    v2: main character - isolated from empty streets background using difference matte
    v3: (foreground) crowds (sped up as required) - isolated from empty streets background using difference matte
    you could do it without v3
    the main thing in this effect is not the post production, it is the production and pre-production. think about the lighting in the different versions of the shots and how that will affect your composite. you need to choreograph everything, make sure your talent and the "crowds" understand exactly what is required of them, down to the smallest details. thats what will make or break your shot.
    and, of course, if you don't have the resources necessary for all that, then you need to scale down your expectations respectively
    as to how to use the difference matte:
    apply the difference matte to the clip, open the clip's filters tab, and in the difference matte settings drag and drop a still frame of the empty streets background onto the "Difference Layer" image well. adjust the threshhold and tolerance sliders to fine tune ... if the key obtained is not quite perfect, it should still provide a good starting point before going in, frame by frame, to clean it up with garbage mattes etc as required

  • Zoom- after initial zoom I want the image to return to original size

    After trying many different ways to zoom on one slide I have
    broken each zoom (of a selected image) out into 8 slides. I am
    wondering though... if I select the zoom to only last a few
    seconds, why does it continue to be 'zoomed' even after that time
    alloted has past?

    Hi bfair76 and welcome to our community
    Notice that the Zoom feature is typically configured for
    displaying the zoomed area for the slide duration. But you can
    easily change this. For example, I had a slide timed for 3 seconds.
    I inserted a zoom area and it zoomed for 1.5 seconds and stayed on
    the slide until the slide time ended at 3 seconds. I then increased
    the slide time to 5 seconds and the zoom followed suit. If you
    double-click the zoom object and click the Options tab, you may
    easily change the "Display for" area from "rest of slide" to
    "specific time", then configure the duration as desired.
    Hopefully this was helpful to you... Rick

  • Jquery zoom plugin that shows images above the zoomed image on mouse rollover

    Hi all, after much effort and help from this forum I've managed to get a zoom effect to work on my image. It needed to be a loupe effect like this - http://www.dailycoding.com/Posts/imagelens__a_jquery_plugin_for_lens_effect_image_zooming. aspx
    This is the plugin I've used.
    Problem now is that I need images to appear above the image on mouse rollover. Currently - if I place images above this image and place my cursor over the image the zoom effect works but it ignores the images placed on top and just zooms in on the image shown below.
    I would be very appreciative of anyone who can help me with this issue.
    Thanks.
    I wondered if it was possible to stop the jquery zoom plugin working when I mouseover the image on top of the map. Maybe that would be a solution?

    > the image I have above the roll over I have just
    > inserted shows the image that should be shown when I
    roll over the image I
    > have
    > just inserted
    url address please. words will not work for this.
    random guess- check that the name and/or ID of every item on
    the page is
    unique.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Zoom into high resolution image

    Hi,
    Before starting to learn Muse, I've one big need: zooming into high-resolution images.
    I want to show how high the resolution is by letting the viewer zoom in with a loupe (or just scrolling with mouse wheel). I'm not talking about of a slideshow through some crops of the main image, but of an shrink- or grow effect of the image.
    Is this possible to achieve?
    Thanks for your insight,
    Dominique

    Could this be the solution, you are looking for?
    https://creative.adobe.com/addons/products/2406#.U8Jp1mIaySM

  • Pan | Zoom: how to get image offsets when panning

    Hello,
    I am trying to use the Pan | Zoom control to show images, allowing zoom and pan. I haven't found yet a way to infer the X,Y offset of the part of the image that it's displayed in the imageviewer visible rectangle. I need these details in order to print objects and markers at the right place over the image.
    Is there some hidden or simple way to get these informations?
    Thanks,
       Mario

    Hello,
    I am trying to use the Pan | Zoom control to show images, allowing zoom and pan. I haven't found yet a way to infer the X,Y offset of the part of the image that it's displayed in the imageviewer visible rectangle. I need these details in order to print objects and markers at the right place over the image.
    Is there some hidden or simple way to get these informations?
    Thanks,
       Mario

  • Paste from one image to another I get 'Paste Path'?

    Photoshop CS4  / Windows 7
    When I try to copy and paste from one image to another I get 'Paste Path' in the layers menu, but no pasted image appears. What have I done? - IM

    You probably have a path selected in the Paths panel in that image (or a Vector Mask active but that's the same thing). Go to the Paths panel and deselect the active path before copying

  • HI Please Help me with Zoom of a buffered image

    Hi All,
    Please help,
    I want to zoom the buffered image using Affine Transforms, the code shown below can rotate the buffered image now how to zoom the same buffered image using Affine Transforms.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.awt.image.BufferedImage;
    import javax.swing.*;
    public class RotationBounds extends JPanel implements ActionListener
        BufferedImage image;
        AffineTransform at = new AffineTransform();
        Rectangle2D.Double bounds = new Rectangle2D.Double();
        double theta = 0;
        double thetaInc = Math.PI / 2;
        public void actionPerformed(ActionEvent e)
            theta += thetaInc;
            setTransform();
            repaint();
        private void setTransform()
            int iw = image.getWidth();
            int ih = image.getHeight();
            double cos = Math.abs(Math.cos(theta));
            double sin = Math.abs(Math.sin(theta));
            double width = iw * cos + ih * sin;
            double height = ih * cos + iw * sin;
            double x = (getWidth() - iw) / 2;
            double y = (getHeight() - ih) / 2;
            at.setToTranslation(x, y);
            at.rotate(theta, iw / 2.0, ih / 2.0);
            x = (getWidth() - width) / 2;
            y = (getHeight() - height) / 2;
            // Set bounding rectangle that will frame the image rotated
            // with this transform. Use this width and height to make a
            // new BuffferedImage that will hold this rotated image.
            // AffineTransformOp doesn't have this size information in
            // the translation/rotation transform it receives.
            bounds.setFrame(x - 1, y - 1, width + 1, height + 1);
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D) g;
            setBackground(Color.gray);
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                RenderingHints.VALUE_ANTIALIAS_ON);
            if (image == null)
                initImage();
            g2.drawRenderedImage(image, at);
            // g2.setPaint(Color.blue);
            g2.draw(bounds);
            g2.setPaint(Color.green.darker());
            g2.fill(new Ellipse2D.Double(getWidth() / 2 - 2,
                getHeight() / 2 - 2, 4, 4));
        private void initImage()
            int w = 360, h = 300;
            image = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
            Graphics2D g2 = image.createGraphics();
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                RenderingHints.VALUE_ANTIALIAS_ON);
            g2.setPaint(new Color(220, 240, 240));
            g2.fillRect(0, 0, w, h);
            g2.setPaint(Color.red);
            g2.drawString("Text for test", 50, 50);
            g2.drawRect(0, 0, w - 1, h - 1);
            g2.dispose();
            g2.setTransform(at);
    //        setTransform();
        private JPanel getLast()
            JButton rotateButton = new JButton("Rotate");
            rotateButton.addActionListener(this);
             JButton zoomButton = new JButton("Zoom");
            JPanel panel = new JPanel();
            panel.add(rotateButton);
            panel.add(zoomButton);
            return panel;
        public static void main(String[] args)
            RotationBounds test = new RotationBounds();
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(test);
            f.getContentPane().add(test.getLast(), "North");
            f.setSize(400, 400);
            f.setLocation(0, 0);
            f.setVisible(true);
    }Message was edited by:
    New_to_Java

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.awt.image.BufferedImage;
    import java.util.Hashtable;
    import javax.swing.*;
    import javax.swing.event.*;
    public class RotationZoom extends JPanel {
        AffineTransform at = new AffineTransform();
        Point2D.Double imageLoc = new Point2D.Double(100.0, 50.0);
        Rectangle2D.Double bounds = new Rectangle2D.Double();
        BufferedImage image;
        double theta = 0;
        double scale = 1.0;
        final int PAD = 20;
        public RotationZoom() {
            initImage();
        public void addNotify() {
            super.addNotify();
            setTransform();
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
                                RenderingHints.VALUE_INTERPOLATION_BICUBIC);
            g2.drawRenderedImage(image, at);
            g2.setPaint(Color.red);
            g2.draw(bounds);
        public Dimension getPreferredSize() {
            return new Dimension((int)(imageLoc.x + Math.ceil(bounds.width))  + PAD,
                                 (int)(imageLoc.y + Math.ceil(bounds.height)) + PAD);
        private void update() {
            setTransform();
            revalidate();
            repaint();
        private void setTransform() {
            int iw = image.getWidth();
            int ih = image.getHeight();
            double cos = Math.abs(Math.cos(theta));
            double sin = Math.abs(Math.sin(theta));
            double width  = iw*cos + ih*sin;
            double height = ih*cos + iw*sin;
            at.setToTranslation(imageLoc.x, imageLoc.y);
            at.rotate(theta, scale*iw/2.0, scale*ih/2.0);
            at.scale(scale, scale);
            double x = imageLoc.x - scale*(width - iw)/2.0;
            double y = imageLoc.y - scale*(height - ih)/2.0;
            bounds.setFrame(x, y, scale*width, scale*height);
        private void initImage() {
            int w = 240, h = 180;
            int type = BufferedImage.TYPE_INT_RGB;
            image = new BufferedImage(w,h,type);
            Graphics2D g2 = image.createGraphics();
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            g2.setBackground(new Color(220,220,240));
            g2.clearRect(0,0,w,h);
            g2.setPaint(Color.red);
            g2.draw(new CubicCurve2D.Double(0, h, w*4/3.0, h/4.0,
                                            -w/3.0, h/4.0, w, h));
            g2.setPaint(Color.green.darker());
            g2.draw(new Rectangle2D.Double(w/3.0, h/3.0, w/3.0, h/3.0));
            g2.dispose();
        private JPanel getControls() {
            JSlider rotateSlider = new JSlider(-180, 180, 0);
            rotateSlider.setMajorTickSpacing(30);
            rotateSlider.setMinorTickSpacing(10);
            rotateSlider.setPaintTicks(true);
            rotateSlider.setPaintLabels(true);
            rotateSlider.addChangeListener(new ChangeListener() {
                public void stateChanged(ChangeEvent e) {
                    int value = ((JSlider)e.getSource()).getValue();
                    theta = Math.toRadians(value);
                    update();
            rotateSlider.setBorder(BorderFactory.createTitledBorder("theta"));
            int min = 50, max = 200, inc = 25;
            JSlider zoomSlider = new JSlider(min, max, 100);
            zoomSlider.setMajorTickSpacing(inc);
            zoomSlider.setMinorTickSpacing(5);
            zoomSlider.setPaintTicks(true);
            zoomSlider.setLabelTable(getLabelTable(min, max, inc));
            zoomSlider.setPaintLabels(true);
            zoomSlider.addChangeListener(new ChangeListener() {
                public void stateChanged(ChangeEvent e) {
                    int value = ((JSlider)e.getSource()).getValue();
                    scale = value/100.0;
                    update();
            zoomSlider.setBorder(BorderFactory.createTitledBorder("scale"));
            JPanel panel = new JPanel(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.weightx = 1.0;
            gbc.fill = GridBagConstraints.HORIZONTAL;
            gbc.gridwidth = GridBagConstraints.REMAINDER;
            panel.add(rotateSlider, gbc);
            panel.add(zoomSlider, gbc);
            return panel;
        private Hashtable getLabelTable(int min, int max, int inc) {
            Hashtable<Integer,JComponent> table = new Hashtable<Integer,JComponent>();
            for(int j = min; j <= max; j += inc) {
                JLabel label = new JLabel(String.format("%.2f", j/100.0));
                table.put(new Integer(j), label);
            return table;
        public static void main(String[] args) {
            RotationZoom test = new RotationZoom();
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(new JScrollPane(test));
            f.getContentPane().add(test.getControls(), "Last");
            f.setSize(500,500);
            f.setLocation(200,100);
            f.setVisible(true);
    }

  • Zooming in on an image

    Hi all,
    I'm playing around some with ClipView to drag and zoom in on an image (like in Google Maps). ClipView supports the panning, but not the zooming. So, I've added a zoom binding on scaleX and scaleY on my ImageView, like this:
        // Enable zooming
        scaleX: bind zoom;
        scaleY: bind zoom;
        onMouseWheelMoved: function( e: MouseEvent ):Void {
            // Zoom on scroll
            zoom += -e.wheelRotation / 10
        }The problem now is that if I open a high-resolution image and it at first is showed at a lower resolution (to fit inside my window), it won't show the better quality when I zoom but instead it only zooms on the current view, making the image pixly and not zooming in on the original image to show the better quality. I guess this is due to that the original view of the image is cached (and hence not replaced by the better resolution that the original image has after I zoom).
    Any clues on how to achieve this?

    Solved:
    I happened to forget that I had specified an initial size of the Image, smaller than than original image =)

  • Zoom in/out into images

    Hi mates ,
    wanted to know if there is a method for zooming in/out to images or ill just have to implement it myself ?

    lshaibin,
    Use Graphics2D scale method in the paint method of your class that extends JPanel class.
    example:
    public void paint(Graphics g)
    Graphics2D g2 = (Graphics2D)g;
    // If you want some quality
    g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION,RenderingHints.VALUE_INTERPOLATION_BICUBIC);
    g2.scale(zoom,zoom);
    g2.drawImage(image,0,0,null);
    g2.dispose();
    }

  • What script for Zoom in/ out of image?

    1. I plan to import quite bigger bitmap image and save as a
    Graphic Symbol
    2. Make some Botton Symbols for +(Zoom in, -(Zoom out) and
    Reset.
    3. If I click +(Zoom in) button, image (reduced sized image
    in smaller window) got magnified.
    ----> What scripts do I need for this design? I'm working
    on Flash8.
    Thanks much in advance!!
    *** I got this idea from the site of
    http://www.metmuseum.org/explore/cezannes_apples/look.html
    And click "Let's Look Closely"...

    First of all, dont put your image as a graphic symbol ... use
    movieClip instead.
    Lets say you transform it into a movieClip and give it the
    instance "image" and that your zoom button is called zoomBtn and
    the un-zoom button is called unZoomBtn:
    //--> start the loop for zooming in on "press" event
    zoomBtn.onPress = function(){
    this.onEnterFrame = zoomIn;
    //--> start the loop for zooming out on "press" event
    unZoomBtn.onPress = function(){
    this.onEnterFrame = zoomOut;
    //--> stop the loop for zooming in or out on "release"
    event of both buttons
    zoomBtn.onRelease = unZoomBtn.onRelease = function(){
    delete this.onEnterFrame;
    //--> line of code executed in loop for the zoom in
    function zoomIn(){
    image._xscale = image._yscale += 5;
    //--> line of code executed in loop for zoom out
    function zoomOut(){
    image._xscale = image._yscale -= 5;
    }

  • Pasting CS2 photoshop images into CS2 Indesign

    On windows XP platform----How do I paste CS2 Photoshop images without pixels around image into CS2 InDesign? Thanks.

    First question:
    >How do I paste CS2 Photoshop images... into CS2 InDesign?
    Later:
    >How do I paste images from Photoshop CS2 into Illustrator CS2...?
    Later still:
    >How do I paste an image from Illustrtor CS2 to InDesign CS2...?
    So what's going on here?
    Start again. What programs are you using? Generally, you use File > Place to import files into InDesign or Illustrator. Copy/Paste are usually a recipe for bed news.

  • I am trying to use the business card template, but every time I go to copy/paste, my original image won't paste, and everything else disappears.  Anyone have any thoughts on this?

    I am trying to use the business card template.  But every time I go to copy/paste my original image (which I have grouped according to directions) it won't paste, and everything else disappears.  Anyone got any thoughts on this?

    OK I'll bite.
    What business card template?
    What directions?
    What Pages?
    What OSX? Somehow I don't believe the Mac OSX 10.5.8.
    What thoughts?
    Peter

  • Zoom and Pan of image

    My objective is to be able to zoom in on an image and be able
    to pan the image around within my stage.
    Is there any tutorials that anyone knows of.
    Thanks for your time

    You can use ActionScript to create a mouse event to your
    image (convert it to a movie clip) and when the user clicks on the
    image, he can make the image bigger or smaller. It's not a real
    zooming in but if the image gets bigger you do see more.
    Is that what you are trying to achieve?

  • PS CS6 Shows Transparent Pixels Over Image When Zooming Past 50%

    I'm not sure why, but Photoshop just started doing this after I converted my files to a smart object. When I try to zoom in past 50%, it displays these transparent pixel squares over the entire image. I tried rasterizing and flatting the image back, but that didn't do anything. It seems to keep doing this. Any suggestions how I can fix this?

    That sounds like a typical display driver problem.
    If you have a PC, visit the web site of the maker of your video card, seek out and download/install the latest display driver for your hardware and OS, and reboot (even if it doesn't require it).
    If you're on a Mac, you might find that manipulating the graphics processor-specific settings in your Photoshop-Preferences-Performance dialog (and in the Advanced settings) might help.  Make sure to fully Quit and restart Photoshop after making changes there.
    -Noel

Maybe you are looking for