How do I upload an image to a discussion?

Please tell me the steps to add a screen cap to a discuusion thread in Apple Support Communities.  I have taken the screen cap (power + home buttons).  I tried copying and pasting the picture from the Photos app into my discussion in my Safari Web browser, but that didn't work.

When you have a message composition window open you will notice a camera icon in the toolbar.
Click on the icon and a large window will open which has a button labeled, "Choose File." Drag your image file from your computer and drop on top of that "Choose File" button, then click on the "Insert" button in the lower right corner of the window.

Similar Messages

  • How can you upload an image to MYSQL using php?

    Ok this is a joint thread with one of my other ones because no one else  was posting on it, so I did not get what I needed, so, How can you  upload an image to mysql so when some one logs on to my site, they see  or can upload there own avatar, now there are loads of problems with  this, 1) many people don't know how, 2) It's not every day you try to  encode a image into mysql, 3) Letting people upload images into mysql  can cause traffic problem with people trying to log in. So that's it.

    Uploading images into MySQL is a bad idea, for more reasons than you mention. You should store the images in a directory on the server instead. But if you want to learn the hard way, here is the method:
    The mysql data type must be blob.
    The form enctype must be multipart, like this: enctype="multipart/form-data"
    The form input field myst be type file, like this: <input type="file" name="upload"/>
    Here is example code that prepares the variable $photodata to be inserted into the database.
      $uploadfile = $_FILES['upload']['tmp_name'];
      $photoname = $_FILES['upload']['name'];
      $uploadtype = $_FILES['upload']['type'];
      if ($uploadfile != "") {
    $tempfile = fopen($uploadfile, 'rb');
    $filesize=filesize($uploadfile);
    $width=getimagesize($uploadfile);
    $widthx=$width[0];
    $heightx=$width[1];
    if (($widthx > 102) or (heightx > 135)){
    $image_too_big = " but the image size was too large and was not submitted.";
    } else {
    $photodata = fread($tempfile, filesize($uploadfile));
    $photodata = addslashes($photodata);

  • How can i upload a image file to server by using jsp or servlet.

    Hi,
    I m gurumoorthy. how can i upload a image file to server by using jsp or servlet without using third party API. pls anyone send me atleast outline of the source code.
    Pls send me anyone.
    Regards,
    Gurumoorthy.

    I'm not an applet programmer so I can't give you much advice there.
    If you want to stream the file from the server before it's entirely uploaded, then I don't believe you can treat it like a normal file. If you're just wanting to throw it up there and then listen to it, then you can treat it like a normal file.
    But again, I'm not entirely certain. You might be able to stream the start of the file from the server while you're still uploading the end of it, but it probably depends on what method you're using to do the transfer.

  • How can I upload an image to this forum

    How can I upload an image to illustrate a problem? I have a tiff image of 41K, and I click on the camera icon to try to upload it, but an error message says
    "[The content type of this image is not allowed.]". What do I have to do?
    Thanks

    You need to use a jpeg image or a PNG image. Use GraphicConverter 7.3 to change the format.

  • How can I upload/display image within a record ?

    Hi,
    I like to integrate an image into a record. Say, we have a table with columns: name, address, telefon, image
    How do I upload the image into that very "image" field and display it in a report ?
    <br>TIA
    <br>Bernhard

    Greetings,
    I have a question. Following the howto on the upload/download app, and then being able to successfully upload the image into the DB, is it possible to reference this image from with the Portal tablespace. IE, can I do an <img src="whatever here"> call and be able to pull that image into a portal page. Can I reference it outside HTMLDB?
    -- Thanks in Advance
    -- Cliff Moon
    -- UTPA Webmaster

  • How can I upload a (image) file through an applet ?

    How can I upload a (image) file through an applet ?

    have a look at http://www.haller-systemservice.net/jupload/
    i'm using Apache Jakarta HTTPClient to create a new HTTP connection to the webserver and sending a new POST request, which holds the image file. (So it's RFC1867 conform)
    there is also an open source implementation of such an applet on sourceforge. it's also called JUpload, but i think it's not maintained any more.

  • How do i upload an image to a server and put the name into a database table

    Ok, i found a php image upload script that im using for a cms
    image gallery on my site. But for it to work the way i need to i
    have to have certain information submited into a mysql table at the
    same time. I could just make it so the user types the name of the
    image in a second form, but i would rather not have to as it seems
    a clumsy way to do things and opens things up to typos etc.
    So, i can upload the image ok, and i can upload data to the
    table, but i dont know what I have to do so that the name of the
    uploaded file is automaticly inserted into the mysql table.
    The first bit of code below is the form I am using to upload
    the file to the server. The second bit of code is what I am using
    to tell the server what the file name is.
    How do I combine the 2 form into one? Please help. It is
    driving me to dispair.
    Attach Code
    <form enctype="multipart/form-data" action="uploader.php"
    method="POST">
    <input type="hidden" name="MAX_FILE_SIZE" value="500000"
    />
    Choose a file to upload: <input name="uploadedfile"
    type="file" />
    <br />
    <input type="submit" value="Upload File" />
    </form>
    <form action="<?php echo $editFormAction; ?>"
    method="post" name="form2" id="form2">
    <table align="center">
    <tr valign="baseline">
    <td nowrap="nowrap" align="right">Image One</td>
    <td><input type="text" name="kingsImage1"
    value="<?php echo
    htmlentities($row_rskingscentre['kingsImage1'], ENT_COMPAT,
    'UTF-8'); ?>" size="32" /></td>
    </tr>
    <tr valign="baseline">
    <td nowrap="nowrap" align="right">Image Two</td>
    <td><input type="text" name="kingsImage2"
    value="<?php echo
    htmlentities($row_rskingscentre['kingsImage2'], ENT_COMPAT,
    'UTF-8'); ?>" size="32" /></td>
    </tr>
    <tr valign="baseline">
    <td nowrap="nowrap" align="right">Image
    Three</td>
    <td><input type="text" name="kingsImage3"
    value="<?php echo
    htmlentities($row_rskingscentre['kingsImage3'], ENT_COMPAT,
    'UTF-8'); ?>" size="32" /></td>
    </tr>
    <tr valign="baseline">
    <td nowrap="nowrap"
    align="right"> </td>
    <td><input type="submit" value="Update record"
    /></td>
    </tr>
    </table>
    <p>  </p>
    <p>
    <input type="hidden" name="MM_update" value="form2" />
    <input type="hidden" name="kingsHeader" value="<?php
    echo $row_rskingscentre['kingsHeader']; ?>" />
    </p>
    </form>

    jeffoirecoupe1234 wrote:
    > Ok, i found a php image upload script that im using for
    a cms image gallery on
    > my site. But for it to work the way i need to i have to
    have certain
    > information submited into a mysql table at the same
    time. I could just make it
    > so the user types the name of the image in a second
    form, but i would rather
    > not have to as it seems a clumsy way to do things and
    opens things up to typos
    > etc.
    >
    > So, i can upload the image ok, and i can upload data to
    the table, but i dont
    > know what I have to do so that the name of the uploaded
    file is automaticly
    > inserted into the mysql table.
    >
    > The first bit of code below is the form I am using to
    upload the file to the
    > server. The second bit of code is what I am using to
    tell the server what the
    > file name is.
    >
    > How do I combine the 2 form into one? Please help. It is
    driving me to dispair.
    >
    > Attach Code
    >
    > <form enctype="multipart/form-data"
    action="uploader.php" method="POST">
    > <input type="hidden" name="MAX_FILE_SIZE"
    value="500000" />
    > Choose a file to upload: <input name="uploadedfile"
    type="file" />
    > <br />
    > <input type="submit" value="Upload File" />
    > </form>
    >
    > <form action="<?php echo $editFormAction; ?>"
    method="post" name="form2"
    > id="form2">
    > <table align="center">
    > <tr valign="baseline">
    > <td nowrap="nowrap" align="right">Image
    One</td>
    > <td><input type="text" name="kingsImage1"
    value="<?php echo
    > htmlentities($row_rskingscentre['kingsImage1'],
    ENT_COMPAT, 'UTF-8'); ?>"
    > size="32" /></td>
    > </tr>
    > <tr valign="baseline">
    > <td nowrap="nowrap" align="right">Image
    Two</td>
    > <td><input type="text" name="kingsImage2"
    value="<?php echo
    > htmlentities($row_rskingscentre['kingsImage2'],
    ENT_COMPAT, 'UTF-8'); ?>"
    > size="32" /></td>
    > </tr>
    > <tr valign="baseline">
    > <td nowrap="nowrap" align="right">Image
    Three</td>
    > <td><input type="text" name="kingsImage3"
    value="<?php echo
    > htmlentities($row_rskingscentre['kingsImage3'],
    ENT_COMPAT, 'UTF-8'); ?>"
    > size="32" /></td>
    > </tr>
    > <tr valign="baseline">
    > <td nowrap="nowrap"
    align="right"> </td>
    > <td><input type="submit" value="Update record"
    /></td>
    > </tr>
    > </table>
    > <p>  </p>
    > <p>
    > <input type="hidden" name="MM_update" value="form2"
    />
    > <input type="hidden" name="kingsHeader"
    value="<?php echo
    > $row_rskingscentre['kingsHeader']; ?>" />
    > </p>
    > </form>
    >
    >
    >
    Hi Jeff:
    Though this does not show you how to solve this issue via a
    code
    snippett, there are a couple of extensions at WebAssist.com
    that enable
    you to do this, they are Data Assist and Digital File Pro.
    When you have
    time, take a look at these Solution Recipes (tutorials) that
    show how
    DataAssist is used and then now Digital File Pro is used in
    conjunction
    with DataAssist:
    http://www.webassist.com/professional/products/solutionrecipe/Media_139.asp
    http://www.webassist.com/professional/products/solutionrecipe/Media_112.asp
    DataAssist can be used to save time when you need to build
    database
    search and management applications quickly, and Digital File
    Pro can be
    used to include file upload functionality to your form fields
    while
    enabling you to insert your server file name into the
    database, all on
    the same page.
    enthusiastically,
    mark haynes

  • How do I upload an image to Kuler web so I can create a theme?

    It seems that it is possible to upload an image to teh Kuler web site and then create a  tehme from teh colors in the image - teh help fiel  doens't say how to do this - jsut implies it is possible

    I've just noticed this from the Kuler team's thoughts on the redesign:
    Create a theme from an image: We know many users really like the “Create from an Image” feature.  Unfortunately, this feature was not ready for the new site launch.  So, rather than launching a buggy or half-baked feature, we decided to take a bit more time to get it right.
    We intend to add this feature to the site as soon as it’s ready.  Until then, you can use the free iPhone app to create themes from images.
    So, it looks like that feature is coming back soon.
    More here: http://forums.adobe.com/message/5365181#5365181

  • How do i upload an image in the netweaver developer studio

    Can anybody gimme a detailed description of uploading an image in the netweaver developer studio.

    This could be handy..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00062266-3aa9-2910-d485-f1088c3a4d71
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/30398c47-40a9-2910-4aae-cec9b96d56b0

  • How do I upload an image with sound?

    Photshop CS5.1
    Windows 8
    I've got my audio file in Photoshop anx my image. It's in a timeline animation, the sound is fine, too. But when I play, the next frame removes my one image for the rest of the time.
    How do I make my image stay for the whole Audio and what formats can I export it in for an image with sound. Do I need additional software?

    Photshop CS5.1
    Windows 8
    I've got my audio file in Photoshop anx my image. It's in a timeline animation, the sound is fine, too. But when I play, the next frame removes my one image for the rest of the time.
    How do I make my image stay for the whole Audio and what formats can I export it in for an image with sound. Do I need additional software?

  • How do I upload an image using as3 and display it without a server?

    Is it possible to upload an image using as3 and flash player 9 and then display it in a movie clip without server side assistance?
    thanks,
    JB

    Hi,
    Check out the links..
    I hope it will helps u.
    http://labs.findsubstance.com/2008/04/03/as3-upload-encode-images/
    http://flexscript.wordpress.com/2009/01/12/uploading-an-image-into-flash-without-server-si de-script-using-flash-player-10/
    Saransoft

  • How do I upload multiple images to d-base through a single page?

    I can upload a single image with a form to my MySql database with no problem.  It sends the file name to the database then stores the image in an image file.
    But now I want to upload multiple images in the same way from the same PHP page.  Each multiple upload needs to be stored to a single record (designated user that's logged in).  I have a field for each image in the database.
    This may give you a better idea of what the database looks like:
    Username
    ID
    image1
    image2
    image3
      scmeeker
    5
    dotty.jpg
    hello.jpg
    kitty.jpg
    jdmeeker
    7
    So now I want to upload multiple images for each image field.  When it works correctly, it should send the name of the image file to the proper field and then send the image to the image folder.  I've tried it several ways with no luck at all.
    Any one have any ideas???
    Thanks!

    I think you would be better off having two tables in you database. One would be a users table that has all of the user data including a user id (the primary key for this table and the foreign key for the other table). The second would be an images table. You would use the images table to upload infinite (well, as many as the db can handle) images. The trick, is that each record in the images table would have a foreign key, which would be the user id for the user that uploaded the image.
    This way your users wouldn't be limited to three images but could upload as many as you want to allow them to. The association of the user id, which has to be unique to each record in the users table (there cannot be duplicates, it should be your primary key on the users table), to the user id in any number of records in the images table is what will allow this to work.
    EX:
    The users table
    user_id
    f_name
    l_name
    email
    other_info
    100001
    first
    last
    [email protected]
    100002
    f_name
    l_name
    [email protected]
    The images table
    image_id
    src
    user_id
    10000000001
    /db_imgs/img1.jpg
    100001
    10000000002
    /db_imgs/img2.jpg
    100001
    10000000003
    /db_imgs/img3.jpg
    100002
    10000000004
    /db_imgs/img4.jpg
    100001
    10000000005
    /db_imgs/img5.jpg
    100001

  • How we can upload multiple images in particular id in sharepoint

    WE have some legacy systems in that we have multiple images for perticuler patient. How can i migrate that all related images into perticuler patient while uploading to share point site...can you help for the same 
    another issue is which task(component) is used for migrate the images into CRM destination---I mean which transformation is used for implementing ETL packages in ssis 

    Hi,
    You have posted your question on the MS Project forum which is dedicated to the Microsoft scheduling and planning software. Eventhough most of us have basic/advanced knowledge on SharePoint, I suggest that you posted your question on the Sharepoint forum
    http://social.technet.microsoft.com/Forums/en-US/home
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • How do i upload an image for social network sites

    how

    hi,
    sorry to jump on the thread but just wanted to know why you would use flex and not ADDT image upload? is there better advantages?
    Also a question for you Gunter, is the ADDT and FX extensions using some of the same code?
    thanks for the link to this site, i have never came across these extensions before.
    many thanks

  • HOW DO I UPLOAD AN IMAGE?

    I have attempted to download an image.
    When I click browse a black screen with white in the middle comes up.
    Is it possible to download a pic from phone?

    download an image from where, what source?
    A browser page?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • Battery heating and dying rapidly

    My bb curve 8520 is about a year old.  3 days ago i noticed the battery went from 100% to 0% in a span of some minutes.  i recharged the battery and noticed it kept doing the same thing.  I then replaced the battery thinking it had run its course but

  • How to upload an output file to the ftp

    Hi everyone, Could anybody please guide me about how can i upload an output file (a text file from SAP Program) directly to ftp location? Please guide. Thanks and Regards

  • Limit document types for transactions

    Hi Sapper's, Besides using a validation, is it possible to limit document types for certain transactions Eg. FB60 - Doc Type KR and KA and KG ONLY. Cheers

  • WebLogic Workshop Portal Extension in workshop 10.1

    I used Workshop 10.0 and have on the menu some features such as File - New - Portal Web Project and Windows - Portal Perspective However, when I installed the Workshop 10.1 (I try both on the same BEA_HOME and on a new directory), I could not find th

  • Sy-msgno - What are the possible numbers and their meanings?

    I am wondering what the possible numbers are for the field sy-msgno and their meanings.  I am trying to determine what some code is doing but there isn't any documentation.  The code is looking for, and setting, specific values in the field sy-msgno