JScrollpane, Graphics, Image, jpg

I'm try to load a jpg file in a jscrollpane and would like to draw on this jpg file any circels, lines or rectangle in a method . But it doesn't run, can anybody help me? thanks
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
public class JScroll extends JFrame {
   static Graphics g = null;
   static Image image;
   public static void main(String args[]) {
      JScroll wnd = new JScroll();
   public JScroll() {
      super("JScrollPane");
      setBackground(Color.lightGray);
      setSize(400, 400);
      //WindowListener
      addWindowListener(new WindowAdapter() {
         public void windowClosing(WindowEvent e) {
            System.exit(0);
      image = getToolkit().getImage("neutral.jpg");
      g.drawImage(image, 20, 20, this);
      JScrollPane jScrollPane = new JScrollPane(g, VERTICAL_SCROLLBAR_ALWAYS, HORIZONTAL_SCROLLBAR_ALWAYS);
      jScrollPane.setSize(300, 300);
      JPanel p1 = new JPanel();
      p1.setLayout(new BorderLayout());
      p1.add(jScrollPane, BorderLayout.CENTER);
      getContentPane().add(p1);
      paint(40,40);
      setVisible(true);
   public void paint( int y, int z) {
      g.drawImage(image, y, z, this);
}

Thank you for the answers! I have moved my drawMore() Methode, now I can use that Graphics object, but it doesn't draw the black Rectangels, only the red one. Why?
The paintComponent() redraw all and load the jpg again on every repaint() call. How can I only update the Graphic object?
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.MediaTracker;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.geom.Rectangle2D;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
public class JScrollRx extends JFrame {
     AnImagePanel p1;
     public static void main(String args[]) {
          JScrollRx wnd = new JScrollRx();
     public JScrollRx() {
          super("JScrollPane");
          setBackground(Color.lightGray);
          setSize(400, 400);
          setLocation(200, 200);
          //WindowListener
          addWindowListener(new WindowAdapter() {
               public void windowClosing(WindowEvent e) {
                    System.exit(0);
          JPanel p0 = new JPanel();
          p0.setLayout(new BorderLayout());
          p1 = new AnImagePanel(loadImage());
          p0.add(new JScrollPane(p1), BorderLayout.CENTER);
          p0.add(new JLabel("Title"), BorderLayout.NORTH);
          getContentPane().add(p0);
          setVisible(true);
          p1.drawMore(200,200);
     private Image loadImage() {
          Image image = getToolkit().getImage("neutral.jpg");
          // make sure image is loaded before we try to use it
          MediaTracker tracker = new MediaTracker(this);
          tracker.addImage(image, 0);
          try {
               tracker.waitForID(0);
          } catch (InterruptedException ie) {
               System.err.println("interrupt: " + ie.getMessage());
          return image;
     public class AnImagePanel extends JPanel {
          private Graphics g;
          private Graphics2D g2d;
          Image image = null;
          public AnImagePanel(Image im) {
               image = im;
          public void paintComponent(Graphics g) {
               super.paintComponent(g);
               g2d = (Graphics2D) g;
               int w = getWidth();
               int h = getHeight();
               int imageWidth = image.getWidth(this);
               int imageHeight = image.getHeight(this);
               int x = (w - imageWidth) / 2;
               int y = (h - imageHeight) / 2;
               g2d.drawImage(image, x, y, this);
               g2d.setPaint(Color.red);
               g2d.draw(new Rectangle2D.Double(w / 2 - 20, h / 2 - 20, 40, 40));
          public Dimension getPreferredSize() {
               return new Dimension(image.getWidth(this), image.getHeight(this));
          public void drawMore(int x, int y){
               g2d.setPaint(Color.black);
               g2d.draw(new Rectangle2D.Double(x, y, 40, 40));
               repaint();
}

Similar Messages

  • Storing graphic images in a laser printer.

    I want to store small graphic images (.gif, .jpeg, etc.) in the laser printer's memory and use PLC to pull the image onto a sheet to print. Has anyone done this? Need some direction.
    Thanks

    You can't store images in the original source format (.gif, .jpg, etc.), but (assuming that the printer model in question supports the PCL5 Page Description Language) you can (using suitable software) convert these images to appropriate PCL-format raster or vector images, and embed these within PCL macros, which can be stored in the printer's RAM (or more permanently on a hard disk or other attached storage on more expensive models). 

  • I created a signature ID and customized the signature; however, when I go to sign it only shows the name layout or graphic image? How do I go back to using the certificate?

    Dear Forum
    I was using Adobe version XI and the signature feature disappeared from the menu. Now I downloaded Acrobat Reader DC. Using the menu and instructions I created a signature ID and customized the signature; however, when I go to sign a document it only shows the name layout or graphic image? How do I go back to using the certificate that I created?
    Any help would be greatly appreciated.
    Regards
    Carlos

    Firefox works fine on Windows 2000 SP4 for me.
    Any chance you have a dial-up connection that uses a web accelerator to speed the loading of content?

  • I cannot insert a graphic image in a new composition: win 7, tb 24

    At times when composing a new e-mail I cannot insert a graphic image in the message. I have tried both the Insert button and the Insert icon. This does not happen all the time; but, when it does happen I can't seem to make it work. My system is a Win 7 with Thunderbird 24.3.0.5. I have tried inserting different graphic images and have tried all combinations in the Image Properties pop-up window.
    I have closed and reopened Thunderbird. I have restarted my system. I have closed all windows except Thunderbird. Nothing helps. Help! Thank you, Bill Gray

    Bill Gray here again. I find that if I open another Write window, then copy/paste my entire e-mail from the initial window -- I can insert graphics into the new window.
    What happens in Thunderbird to make this happen? This has happened a number of times. But, at least now I know that I can open a new Write window and get around the problem. Yet, I am still stuck with the nagging question: Why does this happen?
    Thank you and God bless, Bill Gray

  • SQL query, function or SP for converting varbinary to image(.jpg format).

    Dear Sir/Mam
    I want SQL query, function or SP which converts binary data to image (.jpg format).
    I m able to convert image (.jpg format) to varbinary. But not able to convert vice versa.
    thanks in advance.

    Binary data is binary data - "image" is only an intrepretation of binary data.  Therefore your question makes little sense in the context of sql server since it does not have any facilities to utilize images.  Since you provide no context, I'm
    guessing that you are trying to retrieve an image stored in the database in a varbinary column and have your application use it as an image.  If so, you should post your question to a forum that is specific to your development environment.  

  • How to import many large graphic images to fit into column width?

    I have a 2-column layout and about 150 large graphic images which must be imported so that they fit exactly into the column width. These are bitmaps which have all the same dimensions. All of them will need a border (stroke). And they should be inline graphics because they belong to exact positions in the text flow.
    What would be the sensible approach to that (apart from scripting which I have not done yet)? I tried to define an object style which has the attribute "Fit content to frame", but this does not scale the image to the column size. How can I avoid to format 150 those images manually?

    It may be easier to change the ppi in photoshop so the image can be placed at the exact size.
    so if the image is 10 inches and the file is 300 ppi
    with resample image unchecked change the width to whatever you want it say 2 inches no the ppi will automatically change to 1500 ppi. Save. If you are creating a PDF make sure these images are not downsampled if you need the resolution.
    another way if all images are the same size would be to size one and place it where all the images go and relink to the other pics, when you relink it should retain the properties of the previous pic.

  • LOAD FILE INTO GRAPHIC IMAGE ON CANV

    How do I load file into graphic image on the canvas not the image item on the block?

    With the Layout Editor open, select Edit > Import > Image.

  • [not DW] referring to Image.jpg instead of image.jpg

    I just noticed something odd. It is not a strict Dreamweaver
    question, but
    perhaps you'll kindly explain anyway:
    When an image called Image.jpg (capital I) is wrongly
    referred to as image.jpg
    (lower case i ), the image shows up when previewed locally.
    Once page and
    image are uploaded though, both FF and IE show the infamous
    red X .
    Why is this? The local previews use the same browsers, don't
    they? (I am not
    taling about DW's Desihn View).
    Just curious.
    Regards,
    Adriana.
    [ put out the rubbish if you need to reach me by e-mail ]
    www.spinsister.nl

    Windows is not case sensitive. *nix is.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "A.Translator" <[email protected]> wrote in
    message
    news:[email protected]..
    >I just noticed something odd. It is not a strict
    Dreamweaver question, but
    >perhaps you'll kindly explain anyway:
    >
    > When an image called Image.jpg (capital I) is wrongly
    referred to as
    > image.jpg (lower case i ), the image shows up when
    previewed locally. Once
    > page and image are uploaded though, both FF and IE show
    the infamous red X
    > .
    >
    > Why is this? The local previews use the same browsers,
    don't they? (I am
    > not taling about DW's Desihn View).
    >
    > Just curious.
    >
    > --
    > Regards,
    > Adriana.
    > [ put out the rubbish if you need to reach me by e-mail
    > www.spinsister.nl
    >
    >

  • Image upload safari ios6 issue -file name always image.jpg

    I could not wait for ios6 when I found out safari allowed for image / photo upload through safari web forms.
    I tested and see the image in form..hit submit and it uploads with the file name image.jpg
    Do it again and same file name for a different photo. This is completely useless. If I upload to my website it just overwrites. 99% of the masses need a unique name, when uploading. Why can it now use the file name in the photos folder?
    Even emailing them out it holds a generic name.
    Looks like an easy fix...insert file name not default name. Lets fix this Apple..or your new feature is as worthless as not having it at all.
    Disappointed to say the least...no I am dumbfounded.

    @kdmasterdas: How did you rename the file??
    It really *** that Apple is not fixing this problem while it's a big problem, especially in a business environment.

  • Want to smooth loaded images (jpg) in flash8

    i want to smooth loaded images (jpg) in flash8
    let's say that i have one layer, one frame and the following
    AS:
    _root.loadMovie("q.jpg");
    the _root could be an object, but the behavior is the same
    so in flash7 CTRL+ENTER, right click and zoom ---> RESULT:
    zoom with image interpolation (like photoshop bicubic resample)
    but in flash8 CTRL+ENTER, right click and zoom --->
    RESULT: zoom with NO image interpolation (like photoshop nearest
    nei ghbor resample)
    why?????
    i have looked in help but all i can find is somthing refering
    about images in the library. I want external jpgs!!!
    i have done a slideshow with setable tranzitions (fade, blur,
    moving, zoom in/out, external loaded masking)
    here is some the important part of the my code (not important
    for my problem, but I just want to say that i've worked about 1-2
    days and i want to make it better. is frustating that i have blur,
    fade, gradient transparency (blending) and not a smooth image):
    Gtime=getTimer(); //global timmer
    ///////////////////////////////ia datele generale, daca cele
    particulare lipsesk
    /*Ttrans=eval("q.tt")-0;*/
    if(eval("q.tt"+pidx))Ttrans=eval("q.tt"+pidx)-0;
    /*Tfoto=eval("q.tf")-0;*/
    if(eval("q.tf"+pidx))Tfoto=eval("q.tf"+pidx)-0;
    /*sv=eval("q.sv")-0;*/
    if(eval("q.sv"+pidx))sv=eval("q.sv"+pidx)-0;
    /*sk=eval("q.sk")-0;*/
    if(eval("q.sk"+pidx))sk=eval("q.sk"+pidx)-0;
    /*xv=eval("q.xv")-0;*/
    if(eval("q.xv"+pidx))xv=eval("q.xv"+pidx)-0;
    /*yv=eval("q.yv")-0;*/
    if(eval("q.yv"+pidx))yv=eval("q.yv"+pidx)-0;
    /*xk=eval("q.xk")-0;*/
    if(eval("q.xk"+pidx))xk=eval("q.xk"+pidx)-0;
    /*yk=eval("q.yk")-0;*/
    if(eval("q.yk"+pidx))yk=eval("q.yk"+pidx)-0;
    /*rv=eval("q.rv")-0;*/
    if(eval("q.rv"+pidx))rv=eval("q.rv"+pidx)-0;
    /*rk=eval("q.rk")-0;*/
    if(eval("q.rk"+pidx))rk=eval("q.rk"+pidx)-0;
    /*xbk=eval("q.xbk")-0;*/
    if(eval("q.xbk"+pidx))xbk=eval("q.xbk"+pidx)-0;
    /*ybk=eval("q.ybk")-0;*/
    if(eval("q.ybk"+pidx))ybk=eval("q.ybk"+pidx)-0;
    /*xbv=eval("q.xbv")-0;*/
    if(eval("q.xbv"+pidx))xbv=eval("q.xbv"+pidx)-0;
    /*ybv=eval("q.ybv")-0;*/
    if(eval("q.ybv"+pidx))ybv=eval("q.ybv"+pidx)-0;
    /*mask=eval("q.mask");*/
    if(eval("q.mask"+pidx))mask=eval("q.mask"+pidx);
    if(trans==0 && Gtime>Ftime+Tfoto*1000){
    //retain values
    aux2=(Gtime-Ttime)*100/((Ttrans*2+Tfoto)*1000);
    Ttrans2=Ttrans;
    Tfoto2=Ttrans;
    sv2=sv;sk2=sk;
    xv2=xv;yv2=yv;
    xk2=xk;yk2=yk;
    rv2=rv;rk2=rk;
    xbv2=xbv;ybv2=ybv;
    xbk2=xbk;ybk2=ybk;
    //end retain values
    Ttime=Gtime;
    trans=1;//transition
    if(p=="p1"){
    p="p2";pp="p1";
    }else{
    p="p1";pp="p2";
    pidx++;
    if(eval("q.p"+pidx)==undefined){
    end=1;
    //gotoAndStop(6);
    }else{
    p1.swapDepths(p2);
    loadMovie(fotofolder+eval("q.p"+pidx),eval(p+".p.p"));
    eval(p)._xscale=eval(p)._yscale=100;
    eval(p)._rotation=0;
    if(trans==1 && Gtime>Ttime+Ttrans*1000){
    Ftime=Gtime;
    trans=0;//not transition
    //tranzition
    if(trans==1){
    if(mask.length>3)
    eval(p)._alpha=100;
    else
    eval(p)._alpha=(Gtime-Ttime)*100/(Ttrans*1000);
    aux=(Gtime-Ttime)*100/((Ttrans*2+Tfoto)*1000)
    eval(p)._x=xv*aux+xk;
    eval(p)._y=yv*aux+yk;
    eval(p)._xscale=eval(p)._yscale=sv*aux+100+sk;
    eval(p)._rotation=rv*aux+rk;
    blur.blurX=aux*xbv+xbk;
    blur.blurY=aux*ybv+ybk;
    eval(p).p.p.filters = [blur];
    //intarzierea
    aux=aux+aux2;
    eval(pp)._x=xv2*aux+xk2;
    eval(pp)._y=yv2*aux+yk2;
    eval(pp)._xscale=eval(pp)._yscale=sv2*aux+100+sk2;
    eval(pp)._rotation=rv2*aux+rk2;
    if(!end)gotoAndPlay(_currentframe-1);
    ////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////

    See
    http://www.kaourantin.net/2005/12/dynamically-loading-bitmaps-with.html
    danredman wrote:
    > i want to smooth loaded images (jpg) in flash8
    >
    > let's say that i have one layer, one frame and the
    following AS:
    >
    _root.loadMovie("q.jpg");
    >
    > the _root could be an object, but the behavior is the
    same
    >
    > so in flash7 CTRL+ENTER, right click and zoom --->
    RESULT: zoom with image
    > interpolation (like photoshop bicubic resample)
    > but in flash8 CTRL+ENTER, right click and zoom --->
    RESULT: zoom with NO image
    > interpolation (like photoshop nearest nei ghbor
    resample)
    >
    > why?????
    >
    > i have looked in help but all i can find is somthing
    refering about images in
    > the library. I want external jpgs!!!
    > i have done a slideshow with setable tranzitions (fade,
    blur, moving, zoom
    > in/out, external loaded masking)
    >
    >
    > here is some the important part of the my code:
    >
    > Gtime=getTimer(); //global timmer
    >
    > ///////////////////////////////ia datele generale, daca
    cele particulare
    > lipsesk
    > /*Ttrans=eval("q.tt")-0;*/
    if(eval("q.tt"+pidx))Ttrans=eval("q.tt"+pidx)-0;
    > /*Tfoto=eval("q.tf")-0;*/
    if(eval("q.tf"+pidx))Tfoto=eval("q.tf"+pidx)-0;
    > /*sv=eval("q.sv")-0;*/
    if(eval("q.sv"+pidx))sv=eval("q.sv"+pidx)-0;
    > /*sk=eval("q.sk")-0;*/
    if(eval("q.sk"+pidx))sk=eval("q.sk"+pidx)-0;
    > /*xv=eval("q.xv")-0;*/
    if(eval("q.xv"+pidx))xv=eval("q.xv"+pidx)-0;
    > /*yv=eval("q.yv")-0;*/
    if(eval("q.yv"+pidx))yv=eval("q.yv"+pidx)-0;
    > /*xk=eval("q.xk")-0;*/
    if(eval("q.xk"+pidx))xk=eval("q.xk"+pidx)-0;
    > /*yk=eval("q.yk")-0;*/
    if(eval("q.yk"+pidx))yk=eval("q.yk"+pidx)-0;
    > /*rv=eval("q.rv")-0;*/
    if(eval("q.rv"+pidx))rv=eval("q.rv"+pidx)-0;
    > /*rk=eval("q.rk")-0;*/
    if(eval("q.rk"+pidx))rk=eval("q.rk"+pidx)-0;
    > /*xbk=eval("q.xbk")-0;*/
    if(eval("q.xbk"+pidx))xbk=eval("q.xbk"+pidx)-0;
    > /*ybk=eval("q.ybk")-0;*/
    if(eval("q.ybk"+pidx))ybk=eval("q.ybk"+pidx)-0;
    > /*xbv=eval("q.xbv")-0;*/
    if(eval("q.xbv"+pidx))xbv=eval("q.xbv"+pidx)-0;
    > /*ybv=eval("q.ybv")-0;*/
    if(eval("q.ybv"+pidx))ybv=eval("q.ybv"+pidx)-0;
    > /*mask=eval("q.mask");*/
    if(eval("q.mask"+pidx))mask=eval("q.mask"+pidx);
    >
    >
    > /
    >
    >
    > if(trans==0 && Gtime>Ftime+Tfoto*1000){
    > //retain values
    > aux2=(Gtime-Ttime)*100/((Ttrans*2+Tfoto)*1000);
    > Ttrans2=Ttrans;
    > Tfoto2=Ttrans;
    > sv2=sv;sk2=sk;
    > xv2=xv;yv2=yv;
    > xk2=xk;yk2=yk;
    > rv2=rv;rk2=rk;
    > xbv2=xbv;ybv2=ybv;
    > xbk2=xbk;ybk2=ybk;
    > //end retain values
    > Ttime=Gtime;
    > trans=1;//transition
    >
    > if(p=="p1"){
    > p="p2";pp="p1";
    > }else{
    > p="p1";pp="p2";
    > }
    > pidx++;
    > if(eval("q.p"+pidx)==undefined){
    > end=1;
    > //gotoAndStop(6);
    > }else{
    > p1.swapDepths(p2);
    > loadMovie(fotofolder+eval("q.p"+pidx),eval(p+".p.p"));
    > eval(p)._xscale=eval(p)._yscale=100;
    > eval(p)._rotation=0;
    > }
    > }
    > if(trans==1 && Gtime>Ttime+Ttrans*1000){
    > Ftime=Gtime;
    > trans=0;//not transition
    > }
    > //tranzition
    >
    > if(trans==1){
    > if(mask.length>3)
    > eval(p)._alpha=100;
    > else
    > eval(p)._alpha=(Gtime-Ttime)*100/(Ttrans*1000);
    > }
    > aux=(Gtime-Ttime)*100/((Ttrans*2+Tfoto)*1000)
    > eval(p)._x=xv*aux+xk;
    > eval(p)._y=yv*aux+yk;
    > eval(p)._xscale=eval(p)._yscale=sv*aux+100+sk;
    > eval(p)._rotation=rv*aux+rk;
    > blur.blurX=aux*xbv+xbk;
    > blur.blurY=aux*ybv+ybk;
    > eval(p).p.p.filters = [blur];
    > //intarzierea
    > aux=aux+aux2;
    > eval(pp)._x=xv2*aux+xk2;
    > eval(pp)._y=yv2*aux+yk2;
    > eval(pp)._xscale=eval(pp)._yscale=sv2*aux+100+sk2;
    > eval(pp)._rotation=rv2*aux+rk2;
    >
    > if(!end)gotoAndPlay(_currentframe-1);
    >

  • Stupid attachment names: photo.jpg, image.jpg

    If I email pictures from my iPhone, it stupidly names renames the attachments photo.jpg or image.jpg depending on how I do the attachment. I could not find a setting to keep the original name.
    Thanks in advance
    PS Just curious, does anybody share my view? I think that iOS becomes more and more anti-Mac (that is, as stupid as it gets). It is very frustrating. In this particular case, why rename the attachment? It doesn't make any sense. (I keep buying iPhones out of inertia - thanks to the Macs)

    Hi Gaurav,
    Thanks for your reply.
    I have already done the changes given in those notes(SICF settings).
    I am able to get file type information for all other file types for images like bmp,tif, and gif.
    Not getting for only jpg file type.
    Any other inputs welcome.
    Regards

  • When I try to open images I am getting this message: "The file "image.jpg" couldn't be opened because you don't have permission to view it." "Which I've tried - but it's not responding, plus its with all images now. Can anyone help?

    When I try to open images I am getting this message: "The file “image.jpg” couldn’t be opened because you don’t have permission to view it." "Which I've tried - but it's not responding, plus its with all images now. Can anyone help?

    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Containers/com.apple.iBooksX
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Quit the application if it's running. Move the selected item to the Trash. Relaunch the application and test.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • The photo "Image.jpg" could not be opened.

    Every time I launch iPhoto, I get this annoying error message: The photo “Image.jpg” could not be opened, because the original item cannot be found."
    I think I know what it means, that there is possibly a broken link between a photo and a pointer to that photo in the library? But I don't know how to go about fixing it. Any suggestions?
    iPhoto '11
    MacBook Pro (mid-2009)
    Mountain Lion
    Thanks.

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In Library Manager it's the FIle -> Rebuild command)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. 
    Regards
    TD 

  • FCP 10.1.3 multiple graphic images into one frame

    Hi - How do I put multiple graphic images into one frame? - so it kind of looks like a video wall - except these are still images. I can do it manually but it's not precise. Anyone found a way other than this? Thanks.

    Here is my quick and dirty generator called "9 Pictures": https://www.dropbox.com/s/92c536wgesh2yzj/9%20Pictures.zip?dl=0
    To install it, unzip the file and place the folder inside /Users/yourname/Movies/Motion Templates/Generators
    It will look like this in FCP X. You just have to click each drop zone icon in the inspector and then select the desired clip from the browser. Use the Pan and Scale controls in the inspector to select which part of each image you want to use. Note: this was done in the hope that it may be helpful, but it is no more than a quick thing. You can also control-click the generator in the generator browser and choose open in motion (if you have it) to see how it was done and to modify it.

  • When opening a word doc in pages i am loosing the graphic images from powerpoint that were embedded in the word doc

    When opening a word doc in pages i am loosing the graphic images from powerpoint that were embedded in the word doc

    Are the images placed in a table? Many Word user have the habit of doing that. Tables are not handles the same way in Word and Pages so they get "hidden" in Pages. One way to find this out is to change the size of the paper of the document. You do that in the Page setup in the file menu. Create a document that is much longer that the default one and see if you images will pp up.

Maybe you are looking for

  • Iphone rings through speakers when using headphones iOS 7

    Merrily sitting on the train checking out the new ringtones etc with headphones on and ringer switch set to silent (iphone 5). Was politely informed by a fellow passenger that he could hear everything! Pretty sure this didn't happen before the iOS up

  • Downloading of Acrobat X pro after changing to a new pc

    Hello! Pls. inform abt. how to download my Acrobat X pro into my new computer,- when using the serial no. in an ordinary downloading situation this is not accepted. The X pro is deleted in the old computer. All the best Arne

  • How to bypass a proxy server in pocket pc 2003

    Hi All, I am trying to run a mobile web dynpro application on pocket pc emulator. As a part of this I have installed the list of installables eVC4.exe, evc4sp3.exe, Microsoft Pocket PC 2003 SDK.msi and trying to deploy the mobile web dynpro applicati

  • Serious issue about BPM initiator

    I have a process with a human task with type initiate. The main problem is that allways partipator click on the application on bpm workspace, its create a new task! without any kind of submit. Is that correct? Why to create a new task even if I close

  • 6500 with 2 SUP's/do the GIG ports on the backup SUP work, when in backup?

    Hey I'm bout to install a 6500 series with 2 SUP engines, one for primary and one for backup in the same chassis. My question is: Do the fiber/GIG ports on the backup SUP engine work, when it is in backup mode, or ONLY when the SUP engine is in prima