Inserting a jpg Photo

Hello,
I received a logo as a .jpg file that needs to be inserted into my report either in a corner of the report or as a background. Can anyone offer steps on how to do one or the other (or even both!)?
Thanks,
Megan

From the Insert menu select Picture.
For how to make it a background image search the help files for "watermark"

Similar Messages

  • How to insert a JPG file from file system to Oracle 10g?

    I have developed a schema to store photos as BLOB which store the text description as CLOB original filename, file size.
    I also use ctxsys.context to index TEXT_DESCRIPTION in order to perform Oracle Text Search and it works.
    I would like to insert some JPG file from say C:\MYPHOTO\Photo1.jpg as a new record. How can I do this in SQL PLus and/or Loader?
    How can I retrieve the PHOTO_IMAGE back to the file system using SQL Plus and/or command line in DOS?
    See the following script:
    create user myphoto identified by myphoto;
    grant connect, resource, ctxapp to myphoto;
    connect myphoto/myphoto@orcl;
    PROMPT Creating Table PHOTOS
    CREATE TABLE PHOTOS
    (PHOTO_ID VARCHAR2(15) NOT NULL,
    PHOTO_IMAGE BLOB,
    TEXT_DESCRIPTION CLOB,
    FILENAME VARCHAR2(50),
    FILE_SIZE NUMBER NOT NULL,
    CONSTRAINT PK_PHOTOS PRIMARY KEY (PHOTO_ID)
    create index idx_photos_text_desc on
    PHOTOS(TEXT_DESCRIPTION) indextype is ctxsys.context;
    INSERT INTO PHOTOS VALUES
    ('P00000000000001', empty_blob(), empty_clob(),
    'SCGP1.JPG',100);
    INSERT INTO PHOTOS VALUES
    ('P00000000000002', empty_blob(), 'Cold Play with me at the concert in Melbourne 2005',
    'COLDPLAY1.JPG',200);
    INSERT INTO PHOTOS VALUES
    ('P00000000000003', empty_blob(), 'My parents in Melbourne 2001',
    'COLDPLAY1.JPG',200);
    EXEC CTX_DDL.SYNC_INDEX('idx_photos_text_desc');
    SELECT PHOTO_ID ,TEXT_DESCRIPTION
    FROM PHOTOS;
    SELECT score(1),PHOTO_ID ,TEXT_DESCRIPTION
    FROM PHOTOS
    WHERE CONTAINS(TEXT_DESCRIPTION,'parents',1)> 0
    ORDER BY score(1) DESC;
    SELECT score(1),PHOTO_ID ,TEXT_DESCRIPTION
    FROM PHOTOS
    WHERE CONTAINS(TEXT_DESCRIPTION,'cold play',1)> 0
    ORDER BY score(1) DESC;
    SELECT score(1),score(2), PHOTO_ID ,TEXT_DESCRIPTION
    FROM photos
    WHERE CONTAINS(TEXT_DESCRIPTION,'Melbourne',1)> 0
    AND CONTAINS(TEXT_DESCRIPTION,'2005',2)> 0
    ORDER BY score(1) DESC;

    Hi
    You can use the following to insert an image:
    create table imagetab(id number primary key,imagfile blob, fcol varchar2(10));
    create or replace directory imagefiles as 'c:\'
    declare
        v_bfile BFILE;
        v_blob  BLOB;
      begin
        insert into imagetab (id,imagfile,fcol)
        values (3,empty_blob(),'BINARY')
        return imagfile into v_blob;
        v_bfile := BFILENAME ('IMAGEFILES', 'MyImage.JPG');
        Dbms_Lob.fileopen (v_bfile, Dbms_Lob.File_Readonly);
        Dbms_Lob.Loadfromfile (v_blob, v_bfile, Dbms_Lob.Getlength(v_bfile));
        Dbms_Lob.Fileclose(v_bfile);
        commit;
      end;
    /

  • Can't import .jpg photos

    I received a group of .jpg photos both by e-mail and on a CD and some of them will not import into iPhoto 09, I get the error message "the file is in an unrecognized format". Some of them import normally. I can open the bad ones in Photoshop and resave them but they still won't import to iPhoto. I can insert them into a slide show on iDVD and they are fine. They open in Preview and they are large, 5552 × 3616 pixels but nothing else looks strange. Any ideas?
    Thanks, Jim Easton

    Terence,
    Thank you for this explanation. Like many of the other posters, I have images from a scanner that iPhoto won't import. Your post made me check their color profiles: all are grayscale. Saving them as TIFFs will indeed solve the problem for a lot of people but there is an easier way if you have Photoshop Elements. Open the image, choose Save As, and in the Save dialog uncheck "Embed Color Profile."
    TC

  • EPrint JPG Photo files always print 3.5 x 5.25"???

    Is there a way to make my JPG photo files print larger than 3.5 x 5.25.  On the US TV Commercial with the baby, the EPrint comes out of the printer in what looks to be an 8x10 format??????  I can't find any settings to size my photo on my EPrint Central site.

    Have you tried inserting 8 x 10 photo paper in the printer tray?????
    You can try copying the 8x 10 image into MS Word or PDF document and send the file as attachment
    Or, copy the image directly into the mail body and see if it works or not.
    Say "Thanks" by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as "Accepted Solution"

  • I am making a calendar in iPhoto, picking photos from a folder, let's call it "2011 Pics," in iPhoto. After arranging all the photos and captions I decided I wanted to insert a new photo -- one that was not in "2011 Pics." So I inserted it into the folder

    Add new photo to existing calendar folder in iPhoto
    I am making a calendar in iPhoto, picking photos from a folder, let's call it "2011 Pics," in iPhoto. After arranging all the photos and captions I decided I wanted to insert a new photo -- one that was not in "2011 Pics." So I inserted it into the folder, but the picture does not show up on the scrolling menu of pictures at the left of the calendar-making page. This happened last year and in frustration I started all over again. But surely there is a way to add a new picture to a calendar that is already laid out.

    Yes, the Old Master file has a folder for each year where I find all photos from that specific year. I am attaching a screen shot of the file.
    In the meantime i have managed to download all photos (it did not download any video files though in mpg, avi, 3gp, m4v,mp4 and mov format) to a new iphoto library. Unfortunately the photos are quite mixed and often doubled up. I ma considering to purchase iphoto library which checks all duplicates in iphoto. this will save me a lot of time. What do you think?

  • How to insert a JPG image in a column of type "image" in sql server 7.0 ??

    hi all,
    I have a table with 2 columns.
    First col is of "Name" and second col is of type "image" .
    I am using sql server 7.0 on window 2000.
    now i have created table. I want to insert a jpg/gif image in its 2nd column.
    How can i do so ? and how i can i read the image object after insertion ?
    I am using 2nd col of type "image" and NOT Binary or varBinary.
    Any idea will be highly appreciated.
    Thanks in advance.
    AlwaysJava

    hi all,
    I have a table with 2 columns.
    First col is of "Name" and second col is of type
    "image" .
    I am using sql server 7.0 on window 2000.
    now i have created table. I want to insert a jpg/gif
    image in its 2nd column.
    How can i do so ? and how i can i read the image
    object after insertion ?
    I am using 2nd col of type "image" and NOT Binary or
    varBinary.
    Any idea will be highly appreciated.
    Thanks in advance.
    AlwaysJavaHi,
    Below are some excerpts from my program.. which was doing image insertions and retrievals also.. I have included the image insertion and retrieval portion.. retrieval can be done in more than one ways.. one of them is given.. for very large images, u can read chunks of data from the input stream and write it to the disk. for smaller ones , the given methods work very well..
    I tested the program with jdk1.4.0 and aveConnect3.0 driver. on an
    SQL server 7 machine from my box running windows 2000... and it worked..
    Im not still sure if this is the optimised way.. there can be other more optimised methods..
    hope this clears your problem..
    cheers,
    -Jer
        Connection conn = null;
        Statement stmt = null;
        ResultSet rst = null;
        PreparedStatement pstmt = null;
        FileInputStream fis = null;
        FileOutputStream fop = null;
        File file = null;
        InputStream is = null;
        String createtable = "Create table testtable (name varchar(32),_image image)";
        String inserttable = "Insert into testtable values (?,?)";
        String retrievetable = "Select _image from testtable";
        String droptable = "Drop table testtable";
        String url = "jdbc:AvenirDriver://CodeServer:1433/test";
        conn = DriverManager.getConnection(url,"test","test");
    //Create the table
        stmt = conn.createStatement();
        stmt.execute(createtable);
    //Insert the file into the table
        file = new File("input.gif");
        fis = new FileInputStream(file);
        pstmt = conn.prepareStatement(inserttable);
        pstmt.setString(1,file.getName());
    //Set the filestream to the binary stream into the image in the table
        pstmt.setBinaryStream(2,fis,fis.available());
    //Updating the table
        pstmt.executeUpdate();
    //clean up the streams and atatement
        fis.close();
        pstmt.close();
    // Retrieve the image from the table..
        pstmt =  conn.prepareStatement(retrievetable,ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE);
    // execute the Query
        rst = pstmt.executeQuery();
    //jump to the first row of the resultset
        rst.beforeFirst();
        rst.next();
    //get the inputstream from the image object in the  result set
        is = rst.getBinaryStream(1);
    //Writing the data in the inputstream into an outputfile
              //Using getbytes method from the result set
                   byte[] bytearray = rst.getBytes(1);
                   baos = new ByteArrayOutputStream();
                  baos.write(bytearray);
                  fop = new FileOutputStream ("output.gif");
                  baos.writeTo(fop);
    //using the input stream and storing the data in bytearray
    //allocating the buffer size to store the data from inpuit stream ... here whole inptstream is allocated..
    //(The buffer size can be varied if the file is too large and the reading be..
    //  ..done in loop , to read small chunks from the input stream and write it to the file)
        byte[] bytearray = new byte[is.available()];
    //to write the data in the byte array into an output file
        baos = new ByteArrayOutputStream();
        baos.write(bytearray);
        fop = new FileOutputStream ("output.gif");
        baos.writeTo(fop);

  • After upgrading to Yosemite, Preview does not let me edit jpg photos (cut out something in background and paste a patch to get rid of the flaw.)

    After upgrading to Yosemite, Preview does not let me edit jpg photos (cut out something in background and paste a patch to get rid of the flaw.) Help.

    thankyou. THANK you.
    thankyouthankyouthankyou!
    sorry about no screenie but the first option worked (at least so far!)
    THANKYOUTHANKYOUTHANKYOUTHANKYOUTHANKYOUTHANKYOUTHANKYOUTHANKYOU

  • I also have a .csv file with the name of a jpeg in one column and a text description of each jpeg in a second column. Is there a way to automatically insert one jpeg (photo) and its corresponding text, each pair on one page, into a Indesign document?

    I also have a .csv file with the name of a jpeg in one column and a text description of each jpeg in a second column. Is there a way to automatically insert one jpeg (photo) and its corresponding text, each pair on one page, into a Indesign document?

    I would also recommend to write the description into the meta data. This would allow to place a text frame above the image and it is possible to add meta information and file name automatically together with the image, when you place it or even in a prepared template.
    Meta data information can be written easily in Bridge in the Meta File Workspace.

  • How do I add a jpg photo into the library

    I am trying to animate a layer on top of a background, I've made the background layer the first in the back but when I animate it dissapeers. I can use one of the stock backgrounds from the library and it stays in thebackground while the other gif layers work fine. I want to use my jpg photo as the background, have it remain there while the animated gif runs, any suggestions would be  greatly appreciated.
    Thanks,
    Mark

    Hi Barbra,
    I appreciate the help, I tried your idea but I'm probably doing something
    wrong I can't seem to get the right sequence, but I'll keep playing with
    it. If you go to our site theundertoneband.com you can see I am starting to
    get this animating thing a little. I have a question, is there anyway to
    make a normal pic into a background like they have in the library, or maybe
    add my pic to the library?
    Thanks for all your Help,
    Mark

  • Inserting a flash photo gallery in a column

    Hi
    I usually work with frames but I now started a new site using
    the default HTML 2 columns template. One of the columns will hold
    my main content. I'm trying insert a flash photo gallery in the
    column but this gallery (SimpleViewer) has its own index.html file.
    Is this possible and how can I do it?
    Thanks!

    Hi Anthony:
    Have you tried simply applying iMovie's 'Flash" effect to the slug?
    Sue

  • How do i convert a pdf photo to a jpg photo on mac?

    HELP.  HOW DO I CONVERT A PDF PHOTO TO A JPG PHOTO SO I CAN DOWNLOAD THE PHOTO TO IPHOTO ON MY MACBOOK PRO?

    Open it in Preview, Duplicate and Save as JPEG.  It's advisable to add the extension ".jpeg" to the filename when you save.

  • How to insert a JPG file into a Table from a Form?

    I create a Schema and a Table as follows:
    SQL> create user myphoto identified by myphoto;
    User created.
    SQL> grant connect,resource to myphoto;
    Grant succeeded.
    SQL> create table myphoto.photo_table
    2 (photo_id varchar2(10) primary key,
    3 photo_content blob);
    Table created.
    I would like to build an Oracle Form with a Text Item to enter the full path and filename to be uploaded and inserted into the photo_table; and a Push Button to insert the jpg file into the photo_table.
    Can any one give me details on how this could be done?

    Hi,
    have a look at webutil on otn.oracle.com/products/forms ---> Webutil
    Webutil has the capability to load files into the database.
    Frank

  • How to get jpg photo into photoshop as jpg wt LR changes

    I can not determine how to get jpg photos from Lightroom into Photoshop CS3 without using the export function. With a raw photo I can simply press "clrl e" and the raw photo is converted into a tif or psd file and sent to photoshop. That is very convenient when you have worked on the photo and wish to make additional adjustments in CS3. When I do the same process with a jpg file, it converts the file from jpg into a tif at a much larger file size then necessary. Is there a way to get a jpg file which I have worked on within Lightroom into CS3 without using the export function? Thanks, Arthur

    Lee Jay, I think you are wrong this time (only)!
    Arthur, to solve your problem you have to do two things:
    1. In LR open preferences and activate to automatically write changes to XMP. This ensures that your JPG pictures are updated with the LR settings in the XMP container within the jpg file.
    2.in PSCS3 open preferences. In the file handling section you will find the option to 'prefer Adobe Camera Raw for JPEG files'. If this option is activated also jpg files are processed with ACR.
    You asked for a way to get a jpg file into CS3 without using export. Now you have that. After you made your adjustments in LR just open the jpg in CS3 and you will see the photo with all changes you have made. I tested this with LR and CS3 beta myself it it works perfectly.

  • Can I see depth map in a JPG photo taken on the HTC One M8 phone with the duo lens?

    Can I open a JPG photo taken on the HTC One M8 phone with the duo lens & see the grey scale depth map? See Depthy.me & StereoPhotoMaker that do it for Google Camera Lens Blur photos.
    Can a plug in be created to do it pls?
    Will

    Thanks Chris. Depthy.me & Stereo Photomaker both provide free tools to view the depth map data as a grey scale for Google Camera Lens Blur files. However, that needs you to move the camera to capture the parallax data which is impractical for photographing anything that's not still! The HTC dual lens is therefore superior as it's instant.
    Once the depthmap is extracted, Stereo Photomaker then produces stereo pairs to view on a 3D TV or produces multi views that can be interlaced in Triaxes 3D Master Kit & printed as glasses free lenticulars.
    HTC publish the dual lens SDK so I hope someone can easily write a plugin for Photoshop to read the HTC depth data.

  • PSE9 Can't create a slideshow with .jpg photo and .mov video

    Hi
    I don't find some informations how to make a slideshow where I can use my .jpg photos AND my .mov vidoes - both are coming from my Panasonic Digitalcamera.
    I bought PSE9 because everywhere is written that this is the right product to create a slideshow / Diashow... with photos and vidoes.
    But if I want use the "Diashow" I get the information that this is only for windows player and all my .mov videos which I can play in the PSE9 are NOT in the Diashow.
    Knows everyone how I can come further with my holidayvideo???
    Thanks in advance
    Herlinde

    guess PRE will work fine for your mov files. ...

Maybe you are looking for