How to pick up a photo for a webpage input?

I visiting a webpage and want to upload photo on it, but iPhone is not allow me to pick up a photo.
Please help. thanks.

You will have to dock your iPhone and transfer/sync your photos into your computer, then upload into your site.
There are some services that will allow you to eMail photos into a server.
Tim

Similar Messages

  • How o I reverse a photo for transfer

    How do I reverse a photo for transfer

    Hi, Tammie!
    So that the Community can help you better, we will need to know exactly which operating system is running on your computer, and what application(s) you may be using in hopes of doing this transfer. That, and any other details you'd like to give will help the Community better understand your issue!
    Thanks and have a great day!

  • I would like to know how do you create a shortcut for a webpage for your desktop?

    I would like to how if possible, how do you put a "shortcut" on your desktop when using Firefox?
    Thank you for your time.

    ''how do you create a shortcut for a webpage for your desktop?:''
    Drag the favicon at the left side of the location bar to the desktop
    Reference: (you can also do from bookmarks)
    * https://support.mozilla.com/kb/Creating+a+desktop+shortcut+to+a+web+page

  • How do I use my photo for my background ?

    How do we now , after this update , use our own images or photos for our backgrounds?

    go to
    setting
    wallpaper
    choose wallpaper
    tap on the one you want to change and you'll have the choice of included ones or access to your camera roll. then choose your picture from there.

  • HT4362 How do I access my photos for Apple TV in iTunes 11?

    The only instructions I've found are for iTunes 10 or later, but I can't seem to find the Advanced menu to enable me to share photos?  Can any body help me?

    Choosing photos for homesharing is now done from the homesharing options in the file menu.

  • How to pick up the last value of the input string

    Hi there,
    I have a requirement in which I have to pick up the last value of the input string.
    I don't know the field length, it could be 10 line, it could be 4 line and it could be even 1 line.
    Another problem is that the field contains all the alphanumeric values so the sort function is not working.
    I believe I need to write a UDF but not sure exact what and how.
    Can some body please help me solving this issue.
    Input.
    1.Abc
    2.abc123atxx.com
    3.(980)771-2341
    4.
    5.518VR50V58AD10DSAYBDSAFDSIEGHA:1
    In that case I only need to pickup the last value i.e. 518VR50V58AD10DSAYBDSAFDSIEGHA:1
    Output
    518VR50V58AD10DSAYBDSAFDSIEGHA:1
    Note:
    1. Length is unknown
    2. Alphanumeric data
    Thanks,

    Hi karthick Lakkar,
    Thanks for your quick response but unfortunately I am getting mapping exception.
    What I did is create a UDF with 2 input
    INPUT
    a string
    b string
    and then this code
    int Length=Integer.parseInt(a);
    int requiredLength=Integer.parseInt(b);
    if(Length<=requiredLength)
    return(a);
    else
    return a.substring((Length-requiredLength),Length);
    I am wondering about the input as well.
    At present I am doing
    KTEXT + KTEXT --- UDF
    + does represent concat, means same input will go to the UDF
    This is the error which I am getting
    Exception:[java.lang.NumberFormatException: For input string: "Kevin Farrar"] in class com.sap.xi.tf._MM_XXXXXXXXXXXXXX_ method calculate[Kevin Farrar, Kevin Farrar, com.sap.aii.mappingtool.tf7.rt.Context@6dbf19db]

  • How can i add multiple validations for a single input box in adf?

    hi,
    i want to add multiple validation for a single input text control in adf like number validation and its existence in database.
    MY JDEV VERSION IS 11.1.1.5.0
    pls help !!!!

    Hi,
    1.I want to validate if the value entered is pure integer
    Option 1-
    select the component and in the Property Inspector, in the "Core" category select a "Converter" format, select javax.faces.Number, if the user put a string, adf show a dialog error or message error...
    Option 2-
    or use the Regular expression:-
    http://jdevadf.oracle.com/adf-richclient-demo/docs/tagdoc/af_validateRegExp.html
    https://blogs.oracle.com/shay/entry/regular_expression_validation
    Also check this:-
    http://docs.oracle.com/cd/E15523_01/web.1111/b31973/af_validate.htm#BABHAHEI
    Option 3-
    Frank in his great book 'Oracle Fusion Developer Guide' shows a example using a javascript for input which is allowed only for numbers. You can manipulate for your requirement.
    Here is the code:
    function filterForNumbers(evt) {
        //get ADF Faces event source, InputText.js
        var inputField = evt.getSource();
        var oldValue = inputField.getValue();
        var ignoredControlKeys = new Array(AdfKeyStroke.BACKSPACE_KEY, AdfKeyStroke.TAB_KEY, AdfKeyStroke.ARROWLEFT_KEY, AdfKeyStroke.ARROWRIGHT_KEY, AdfKeyStroke.ESC_KEY, AdfKeyStroke.ENTER_KEY, AdfKeyStroke.DELETE_KEY);
        //define the key range to exclude from field input
        var minNumberKeyCode = 48;
        var maxNumberKeyCode = 57;
        var minNumberPadKeyCode = 96;
        var maxNumberPadKeyCode = 105;
        //key pressed by the user
        var keyCodePressed = evt.getKeyCode();
        //if it is a control key, don't suppress it
        var ignoreKey = false;
        for (keyPos in ignoredControlKeys) {
            if (keyCodePressed == ignoredControlKeys[keyPos]) {
                ignoreKey = true;
                break;
        //return if key should be ignored
        if (ignoreKey == true) {
            return true;
        //filter keyboard input
        if (keyCodePressed < minNumberKeyCode || keyCodePressed > maxNumberPadKeyCode) {
            //set value back to previous value
            inputField.setValue(oldValue);
            //no need for the event to propagate to the server, so cancel
            //it
            evt.cancel();
            return true;
        if (keyCodePressed > maxNumberKeyCode && keyCodePressed < minNumberPadKeyCode) {
            //set value back to previous value
            inputField.setValue(oldValue);
            evt.cancel();
            return true;
    2.I want to check if the value exists in my respective DB You must be having EO or VO if you want to validate with database in that case use the solution suggested by Timo.
    Thanks
    --NavinK                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Spry Slide Show-how to use one size photo for large photo and thumbnail?

    Hi all,
    I'm am using Adobe's Spry Slide Show. I can only use one size photo 640x480px for both the large photo and the thumbnail.
    I changed the size of the small thumnail on the html:
                     <li><a href="Photos/TestPhoto640x480.jpg" width="490" height="367"><img src="Photos/TestPhoto640x480.jpg" width="63" height="47" alt="photos-1.jpg" /></a></li>
    The thumbnail looks fine until you hit Live View or Preview in Browser then photo comes in full size and you can only see the upper left hand corner.
    I assume that the java is doing this. But I have no training in Java.
    How can I change the Java Code so the thumbnail comes in at 63x47px?
    Many thanks.

    Wish I could use scaled down versions of the thumbnails-but I can't.
    Why not?
        img.src = info.src;
        img.style.width =  "490px";<!--Large Photo size on internet-changed from info.width + "px"; to "490px";  *********-->
        img.style.height =  "368px";<!--Large Photo size on internet-changed from info.height + "px"; to "368px";  *******-->
    You're shooting yourself in the foot with this.  It's overriding your HTML and CSS  values.
    As an FYI, Adobe Abandoned the Spry framework late last year.
    http://blogs.adobe.com/dreamweaver/2012/08/update-on-adobe-spry-framework-availability.htm l
    You might want to cut your losses right now and switch to something better suited to modern web devices & browsers.
    jQuery Fancybox
    http://fancybox.net/
    20 of the best jQuery Slideshows
    http://vandelaydesign.com/blog/web-development/jquery-slideshow/
    Nancy O.

  • How do I submit my photo for my podcast page?

    I already submitted my podcast and it was accepted by iTunes.
    At the time, I didn't have a photo to put up so I skipped that part (thinking I could do it later). Now I can't figure out how to get an image up, and it's all ready (600x600 px).
    I also didn't know about the RSS tags, and we're working on that today (summary, etc). I'd like to get it all done asap.
    Can someone please help? Thanks!!
    http://itunes.apple.com/us/podcast/virtual-dating-assistants/id493547641

    Firstly you need to upload the photo to your server. Then you need to add this tag in the top section of the feed, between the 'channel' tag and the first 'item' tag:
    <itunes:image href="URL OF AN IMAGE FOR THE PODCAST" />
    The URL must be a full one, including the http:// and the server name.
    Upload the feed and wait patiently - it will take some days to appear in the Store page.
    This image will not appear when people subscribe - that's a different matter and is explained here:
    http://www.wilmut.webspace.virginmedia.com/notes/coverart.html

  • How to add cations to photos for slideshow

    How do I add captions to photos (to identify people or places) for a slideshow presentation? I'll be showing old photos and my audience won't know who is in the picture. 

    If you're running iPhoto 11 you can set the slideshow to display the title or title and descriptions or just descriptions in the Settings pane:
    This only works in the Classic and Ken Burns themes.
    OT

  • In the Pages Program template on the 4 column page a text is wrapped around a violinist photo How do I prepare the photo for a similar result

    In the Pages Program template on the 4 column page a text is wrapped around a violinist.
    How do I have to prepare the photo to have a similar result.
    Thanks

    You need to have an image with a more or less even background or at least contrasting to the main part.
    Menu > Format > Instant Alpha > run the cursor over the parts you want to eliminate
    With the image selected > Inspector > Wrap > check Image causes wrap > click on 2nd icon > Text Fit > 2nd icon
    Play with Extra Space and Alpha to get what you want.
    Peter

  • How to merge moments in photos for OS X

    I Was wondering if anybody knew if it is possible to merge moments together on the new Photos app?  It was possible in iPhoto and was a useful feature where the system decides to separate photos from the same event.
    thanks very much.

    This makes for a terrible user experience, and it's a surprising design mistake by Apple.
    iPhoto had this right: you had the convenience of having your photos auto-categorized into Events, which were correct 90% of the time, but you could still split and combine Events when iPhoto didn't guess correctly. Albums were useful when you needed a way to organize random photos from various Events into their own container (for printing or sharing or whatever).
    In Photos, this is all gone. If Photos doesn't split your photos into Moments to your liking, your stuck. For example, say I go on a field trip to the zoo with my kid, then our family goes out to dinner later, and I take pictures for both events. I expect this to become two "Moments": The Field Trip, and The Dinner. Instead, I got this: one Moment that included one picture from the bus ride down and another picture at the zoo entrance; then another moment that included the rest of the pictures from the zoo (which were taken immediately afterward), plus pictures from the dinner, which were taken much later (and in a different city).
    The fact that Photos split this up illogically is annoying, but beside the point. I don't expect Photos to do all this exactly to my liking (although I do expect it to try, as iPhoto would). But I absolutely MUST be able to adjust (split, merge, rename) them.
    Until this is resolved, I'm going back to iPhoto (which also performs much better on older hardware, I might add). Hopefully this will be corrected soon.

  • How do I submit a photo for the apple world gallery?

    I am an avid Instagram photographer and would love to be able to submit some of my photos to the world gallery. I take all of my pictures on an iPhone 6 plus. I have searched everywhere and have found no information on how to contribute my photographs. Any help would be much appreciated.

    They were invited: http://www.imore.com/apples-new-world-gallery-feature-77-photographers-across-70 -cities-and-24-countries

  • How do I resize vertical photos for iMovie?

    The online support says "constrain to HD" but when I do that, it just cuts off the top and bottom of photo - how do I resize it to keep the whole photo, just "shrink" it?

    Welcome to the Apple Discussions.
    Double-click on the photo in the iMovie project to open its settings, and check if Ken Burns is selected. Turn it off and make sure the size slider is set all the way to the left. iMovie should display the entire photo with black bars at the sides.
    Regards.

  • How do I find a Photo for a Craigs list/Ebay Ad?

    I hit the browse button but have to navigate for ten minutes to find the photo I'm looking for.
    Is there an easy way to attach a photo from iphoto?
    powerbook g4 - 15   Mac OS X (10.2.x)  

    Hi larry,
    It is easiest to select a photo in iPhoto and go to Share>export.
    Export it to the desktop, and at this time you can also choose the naming scheme and input a smaller size (better to upload)
    Navigate to the photo on the desktop to upload.

Maybe you are looking for

  • Outline Agreements - min order qty and regular vendor flag

    As a part of E Source Integration with ECC we are planning to leverageusing Outline Agreement(Contract Type MK) to store Price and other Business Terms for Material / Vendor combinations. Currently we are using Purchase Information Record with minimu

  • New iTunes keeps relaunching immediately after Quit

    Downloaded and installed new itunes update last night, everything working well, except when I quit it, it immediately relaunches. Can't figure the reason here. Even Force quitting doesn't solve the problem. Just another immediate relaunch. Any ideas?

  • Multiplication calculation in form

    I wish to have a form field return a calculation that is a multiplication of another form field. Example: Field name where calculation is to take place = FieldG Field name where base numeric is = FieldF Field G needs to return a calculation that is 3

  • Error: no 'server' JVM

    Hi guys. I'm just trying to work out how to get my application working and I seem to continually get this error. Error: no 'server' JVM at 'C:\Program Files\Java\jre1.5.0_06\bin\server\jvm.dll'. I've tried numerous things to fix the error, but still

  • Ipod tunes states I am not connected to internet

    I have wireless in my home. I downloaded music from itunes, downloaded two free games. When I go to apps it states that I am not connected to internet, although I am plugged into the internet. I understand I have to enter my router number somewhere,