Hey, its impossible to move jpeg or png files from my pc (w7) to my iphone (4g, latest firmware), tried everything, even 5,99 € app and 20 hrs of googling, pls help

its impossible to move jpeg or png files from my pc (w7) to my iphone (4g, latest firmware), tried everything, even 5,99 € app and 20 hrs of googling, pls help

20 hours of googling?  It's in the user guide on p.117 and 53..
http://manuals.info.apple.com/en_US/iPhone_iOS4_User_Guide.pdf
and here... http://support.apple.com/kb/HT1296

Similar Messages

  • Taking the transparent png files from net into Photoshop. It coming as flat not transparent. How can i do ?

    Hi,
    i want to take some transparent png files from internet into photoshop. The files originally transpernt on internet.
    Im copying that image and paste into photoshop but it won't transparent. therefore im saving the files my mac and using like that.
    But i dont want do this. Because this isn't problem in illustrator. Can anybody help me how can i use transparent png files as transparent in photoshop without save file?
    hope could explain my problem.

    If you can right click on the image and copy its utl to the clipboard you may ne able to open that in Photoshop with this old  Photoshop script.
    // OpenImageFromWeb.jsx
    // Copyright 2006-2009
    // Written by Jeffrey Tranberry
    // Photoshop for Geeks Version 3.0
    // modified by MLH
    // modified by JJMACK 2010
    Description:
    This sample script shows how to download images from a web server using the
    Socket object.
    // Note: Socket.read() parameter & behavior
    // Socket.read() will read or time out. It may not read all data fromserver. <---------------
    // Socket.read(999999) will read 999999 bytes, or timeout, or socket will be
    // closed by the server.
    // enable double clicking from the
    // Macintosh Finder or the Windows Explorer
    #target photoshop
    // Make Photoshop the frontmost application
    app.bringToFront();
    // SETUP
    var html = "";
    var request = "";
    var url = "";
    var binary = "";
    var requesthtml = "";
    var socket = new Socket;
    var domain = "www.mouseprints.net" // the domain for the file we want
    var sImg = "/old/dpr/JJMack8btiSrgb.png"; // the rest of the url for the file we want
    var port = ":80"; // the port for the file we want
    // MAIN
    var url = prompt("Enter the image's full URL http://domain/full image path",url);   // prompt for domain name
    if (url != null && url != ""){
      if ( (url.indexOf("http://") != -1)  || (url.indexOf("HTTP://") != -1)  ) {
      domainPathLength = url.length - "http://".length;
      domainPath = url.substr(7, domainPathLength);
      pathOffset = domainPath.indexOf("/");
      domain = domainPath.substr(0, pathOffset);
      sImg = domainPath.substr(pathOffset, domainPath.length - pathOffset );
      // Isolate Image name
      var Name =  sImg
      var imagePath = "";
      while (Name.indexOf("/") != -1 ) { // Strip Path
      imagePath= imagePath + Name.substr(0, Name.indexOf("/") + 1);
      Name = Name.substr(Name.indexOf("/") + 1 ,);
      //alert("domain = " +  domain + " , Image = " + sImg + " Image File Name = " + Name);
      if ( domain != "" && sImg != "" && sImg != "/" && Name.indexOf(".") != -1 ) {
      var f = File("~/" + Name); // Image file name
      f.encoding = "binary"; // set binary mode
      f.open("w");
      if (socket.open(domain + port, "binary")){
      //alert("GET " + sImg +" HTTP/1.0\n\n");
      requesthtml ="\n\nDmain:" + domain + " Port" + port + " binary\n"
      //request ="GET " + sImg +" HTTP/1.0\n\n"
      request ="GET " + sImg +" HTTP/1.0\nHost: " + domain + "\nAccept: image/gif, image/x-xbitmap, image/png, image/jpeg, */*\n\n";
      socket.write(request); // get the file
      var binary = socket.read(99999999);
      binary = removeHeaders(binary);
      f.write(binary);
      socket.close();
      else { alert("Connection to Domain:" + domain + " Port" + port + " Failed   ");}
      f.close();
      if (binary.length != 0) {
      //alert ("file length = " + binary.length );
      if(app.documents.length == 0) {
      //app.documents.add([width] [, height] [, resolution] [, name] [, mode] [, initialFill] [,pixelAspectRatio] [, bitsPerChannel] [,colorProfileName])
      app.documents.add(new UnitValue(1600,'px'), new UnitValue(1200,'px'), 72, null, NewDocumentMode.RGB, DocumentFill.WHITE, 1,BitsPerChannelType.EIGHT, "sRGB IEC61966-2.1" );
      placeSmartObject( f );
      f.remove(); // Remove temporary downloaded files
      else { alert("Invalid Image URL: " + url ); }
      else { alert("Invalid URL: " + url ); }
    else { if ( url == "" ) alert("No URL Entered"); }
    // FUNCTIONS
    function placeSmartObject(fileRef){
      //create a new smart object  layer using a file
      try {
      var desc = new ActionDescriptor();
      desc.putPath( charIDToTypeID( "null" ), new File( fileRef ) );
      desc.putEnumerated( charIDToTypeID( "FTcs" ), charIDToTypeID( "QCSt" ),charIDToTypeID( "Qcsa" ));
      desc.putUnitDouble( charIDToTypeID( "Wdth" ),charIDToTypeID( "#Prc" ), 100 );
      desc.putUnitDouble( charIDToTypeID( "Hght" ), charIDToTypeID( "#Prc" ), 100 );
      desc.putUnitDouble( charIDToTypeID( "Angl" ), charIDToTypeID( "#Ang" ), 0 );
      desc.putBoolean( charIDToTypeID( "Lnkd" ), true );
      executeAction( charIDToTypeID( "Plc " ), desc, DialogModes.NO );
      activeDocument.activeLayer.resize(100 ,100,AnchorPosition.MIDDLECENTER);
      activeDocument.revealAll();
      } catch (e) { alert("Placeing file: '" + fileRef + "' failed"); }
    // Remove header lines from HTTP response
    function removeHeaders(binary){
      var bContinue = true ; // flag for finding end of header
      var line = "";
      var httpheader = "";
      var nFirst = 0;
      var count = 0;
      while (bContinue) {
      line = getLine(binary) ; // each header line
      httpheader = httpheader + line;
      bContinue = line.length >= 2 ; // blank header == end of header
      nFirst = line.length + 1 ;
      binary = binary.substr(nFirst) ;
      if (httpheader.indexOf("Bad Request") != -1 || httpheader.indexOf("Not Found") != -1) {
      alert (requesthtml + request + httpheader);
      var binary = "";
      //alert (requesthtml + request + httpheader + "\nFile length = " + binary.length);
      return binary;
    // Get a response line from the HTML
    function getLine(html){
      var line = "" ;
      for (var i = 0; html.charCodeAt(i) != 10; i++){ // finding line end
      line += html[i] ;
      return line ;

  • TS1398 Hi.. My internet and wifi are working on samsung phone and hp laptop but its not getting connected to iphone ipad, only skype is coming online rest all apps and safari show no internet connection. Got new linksys router WRT160NL , but situation sam

    Hi.. My internet and wifi are working on samsung phone and hp laptop but its not getting connected to iphone ipad, only skype is coming online rest all apps and safari show no internet connection. Got new linksys router WRT160NL , but situation same. Tried reboot, renew lease, forget network, reset network setting. Pls advice

    Have you tried a simple reset of your iPod to see if that helps?  To do this, press and hold both the Sleep/Wake and Home buttons together long enough for the Apple logo to appear.
    Otherwise, have you tried any of the troubleshooting mentioned in this Apple support document?
    iOS: Troubleshooting Wi-Fi networks and connections
    B-rock

  • Since I have installed Lion onto my iMac it's impossible to to copy any video file from the mac to an external support (ups-stick, Timecapsule). What's happened? What can I do?

    Since I have installed Lion onto my iMac it's impossible to to copy any video file from the mac to an external support (ups-stick, Timecapsule). What's happened? What can I do?

    If you just did upgrade Lion, give it some time. I recall having similar problems and some articles mention heavy background work after install - such as re-indexing for Spotlight etc. I couldn't even copy from folder to folder or e.g. iphoto to folder on the same disk. Went away after a day or two though.
    I do however still have a problem with AFP access to one of the lion machines - kills it's network adaptors rather quickly. No luck solving this so far :|

  • How do I move a smart catalogue file from my Vista computer which has LR4 to my IMac which has LR Creative Cloud. Please explain in layman's terms!

    How do I move a smart catalogue file from LR 4 on a Vista laptop to an IMac where I'm using LR CC? Please use layman's terms as I am new to the IMac.

    You might think so. But it's difficult to decide what people mean. You understood the question, I didn't. If you copied the catalog and everything from the old computer to the new one and utilized the old catalog, the smart collections should still be in place. The old catalog would have to be converted to the new format, and you might have to relink missing images. But after that is all done the smart collections should be in place.

  • Opening Fireworks .png file from Dreamweaver

    Anybody have problems with the connectivity between Fireworks
    and Dreamweaver? I have a Retail version of Macromedia Studio 8.
    I've been designing a new site and noticed that my fireworks .png
    file is not updating from my changes in Dreamweaver (probably
    because I cannot open from the edit button in Dreamweaver.) When I
    try to open the .png file from the Edit button at the bottom of the
    Properties Panel in Dreamweaver it gives me an Error Message :
    Unable to Launch. Please be sure that the application exists and
    that there is enough memory.
    Obviously the only benefit of Macromedia suite is the
    connectivity. Well, since I don't have it it is sucking. Was it a
    misinstallation on my part? Anybody know what's happening here or
    how to fix?
    Thanks,
    JP

    Copy the file off the server, then open it?
    And what version of Photoshop are you using?  On what OS version?
    Most likely this is a bug in the OS or server software that just shows up because of the asynchronous file IO used by Photoshop (to improve performance).

  • I tried to migrate my files from my old G4 book to my new Macbook Air. It did not work properly and I want to restore the Air to its original settings. How do I do this?

    I tried to migrate my files from my old G4 book to my new Macbook Air. It did not work properly and I want to restore the Air to its original settings. How do I do this?

    You will need to use an external DVD drive to run the disc installer that came you your machine. You can also do it with another Mac using the Remote Install Max OS X app. Finely, if you have access to another computer, you could burn the install image on a USB thumb drive, boot from that, erase the drive and run the installer.  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G + 120G OCZ Vertex 3 SSD Boot HD 

  • Do anybody know how to change a PNG file from 1760 width by 1369 height to 800 x 600?

    Do anybody know how to change a PNG file from 1760 width by 1369 height to 800 x 600?

    Crop to 4x3 aspect ratio, then resize to 800x600

  • HT2534 I have my card on file and I'm trying to download a free app and it is telling me my card was declined but its a free app what is going on

    I have my card on file and I'm trying to download a free app and it is telling me my card was declined but its a free app what is going on

    You must have a payment method in your iTunes account, even for free content. It is used to verify your identity. See: http://support.apple.com/kb/HT2534 for information on how to create a billing method if you don't have a credit card.

  • How to save content of JPanel into jpeg or png file

    I have to independent classes: Class A and Class B. Each class constructs its own graphical objects:
    Class A {
    //do something
    public void paintComponent(Graphics g)
    int x = 0;
    int y = 0;
    int w = getSize().width;
    int h = getSize().height;
    bi = new BufferedImage(
    w,h,100,BufferedImage.TYPE_INT_RGB);
    g2d = bi.createGraphics();
    // draw lines
    g2d.drawImage(bi,0,0,ww,hh, this);
    Class B {
    int x = 0;
    int y = 0;
    int w = getSize().width;
    int h = getSize().height;
    bi = new BufferedImage(
    w,h,100,BufferedImage.TYPE_INT_RGB);
    g2d = bi.createGraphics();
    // draw lines
    g2d.drawImage(bi,0,0,ww,hh, this);
    Two buffered images get properly displayed within JPanel component. However, I need to save two those results into one file. If I add saving file routine into every class, at best I can only get them to be in two different files.
    Please let me know if anyone can help me with this problem.
    Thanks,
    Jack

    You didn't mention what should be the format of file that the combines the images. Here are two options:
    1. Create another BufferedImage, and draw the BufferedImages from class A and B over this BufferedImage and save it as JPEG or PNG.
    In each of the class, you can add a method like getBufferedImage(), which would return the local BufferedImage. A third class, say class C, needs to call this method in each of the classes, and then draw the BufferedImages returned by these methods over another BufferedImage. Save this BufferedImage as a JPEG or PNG.
    A disadvantage of this approach is that you can't easily retrieve the individual images from the resulting file.
    2. Create a single zip file by adding the individual JPEG/ PNG images created from the BufferedImage in class A and B.
    Here is an example that creates single zip file of JPEG images from an array of BufferedImageObjects:
    public static void zip(String outfile, BufferedImage bufimage[]){
         if(bufimage == null) return;
         try{
             File of = outfile.endsWith(".zip")? new File(outfile): new File(outfile+".zip");
             FileOutputStream fos = new FileOutputStream(of);
             ZipOutputStream zos = new ZipOutputStream(fos);
             for(int i=0;i<bufimage.length;i++){
                 try{
                    ByteArrayOutputStream boutstream = new ByteArrayOutputStream();
                    JPEGImageEncoder enc = JPEGCodec.createJPEGEncoder(boutstream);
                    enc.encode(bufimage);
    ZipEntry entry = new ZipEntry("bufimage"+(new Integer(i)).toString()+".jpg");
    entry.setMethod(ZipEntry.DEFLATED);
    zos.putNextEntry(entry);
    byte[] fileBuf = boutstream.toByteArray();
    zos.write(fileBuf,0,fileBuf.length);
    zos.closeEntry();
    } catch (Exception e){ e.printStackTrace();}
    zos.flush();
    zos.close();
    }catch(Exception e) {e.printStackTrace();}
    The above method uses the JPEG codec and the zip package, both of which available in J2SE. In other words, you need to import com.sun.image.codec.jpeg and java.util.zip packages.
    With this approach, you can easily retrieve the individual JPEGs using the java.util.zip package.

  • How do I Batch Convert JPEG to PNG files?

    Any idea how I would convert a large number of jpeg's to png files in Photoshop CC?

    You could do it like this: http://www.santoshgs.com/blog/189/how-to-batch-convert-png-to-jpeg-using-photoshop-cs2/
    But can I be honest? I'd do that with a more efficient and far faster conversion utility like IrfanView. Photoshop is incredibly slow for this type of work. For example, I did a quick test to demonstrate the difference in performance:
    folder with 10 images in jpg format, 5600px by 5600px. Simple jpg to png batch.
    Photoshop: over six minutes.
    IrfanView: one minute and 40 seconds.
    That's a rather big difference - and with large numbers of images I just do not have the time to wait for Photoshop to finish the job. It's too slow.
    Another issue is that during the conversion process Photoshop cannot be used - while with a simple conversion utility you can leave it running in the background, and continue to use PS for other work if required. This matters if you have hundreds of images to convert.
    Btw, Irfanview (windows only) is free to download @ http://www.irfanview.com/
    The batch processing you can find under File-->Batch Conversion <b>
    ImageMagick is also free and open source. It is a command line tool, and easy to use for conversions.Will also work on a mac. But it is much slower than IrfanView, a tad faster than PS.
    http://www.imagemagick.org/script/convert.php
    http://www.ofzenandcomputing.com/batch-convert-image-formats-imagemagick/

  • Unknown Error when trying to export movie with certain PNG files in Adobe Premiere

    Hi!
    I've made an animation video in Premiere Pro CC2014 combining apple pro-res live action with png animation. When trying to export, some parts of the video are no problem, and some (seemingly random) png files Adobe Premiere just doesn't like?? I don't understand why it will export some and not others?
    Help??!
    Thanks so much!!

    Error compiling movie can be anything from gap to bad clip, transition, effect, nest, you name it.
    Export from AME with preview open and watch were in the timeline it goes wrong.
    That is the place to fix it.

  • Can I turn a bmp,  gif, jpeg, or png file into a hyperlink?

    Hello,
    I created an image on Photoshop Adobe, and what I'd like to do with this turn into a hyperlink that I can upload to a website.  I was able to turn the pdf file with the same image into a hyperlink, but the website I'm trying to upload it to only accepts bmp, gif, jpg or png files.  That's why I'm asking if there is a way to make an image file using what I've specified into a hyperlink.  Thank you for any insight to my question.  -KD

    Nancy O. wrote:
    An image is just an image.  You need HTML or JavaScript code to make it into a hyperlink. 
         <a href="http://example.com"><img src="your_image.jpg"></a>
    Unless the site you're uploading to is willing to wrap your image inside HTML code like the example above or JavaScript there is no way to make the image file link to anything on its own.
    Nancy O.
    But how is it that a pdf file is able to contain a hyperlink within the image and it takes me to my website?  Where on the image.gif, etc., do I attach the code you've posted?  The website I'm wanting to upload the image to, only allows the files with extensions I've already indicated in my op.   Thanx for your reply and help.   -KD

  • Extracting resourse like .ai & png files from a flash project

    Hi! I have been assined the task of extracting the images from old flash projects and am having a devil of a time doing so.
    There are lots of programs that you can extract info out of the swf files, but these don't give you the original .ai Ilustrator files that may have been used to create the presentation with, or png files with transparent backgrounds.
    Is there a plug-in in Flash that allows you to capture these items in the document?  when I drag the item from the library (lets say a .ai file) to the stage and right click and copy it, it only gives me part of the item when I paste it back into illustrator... and when I drag the PNG resource to photoshop I get it with a background I do not want.
    any help on this would be great!!!!
    I have both cs3 and cs4 so a solution in either one would be great!

    Well that is kinda what I've been doing, only its not quite that simple as doing it that way makes an image of what is on the entire stage.  What I have to do is create a new project copy over all my library items to the new project, and pull over each one individually and do it that way.... if you have a lot of items in your library (which I do a lot of times since these contain a lot of animation sequenced into individual frames) this process can be quite tedious.  Yes you can save out to .ai illustrator files this way as well.
    I was hoping for something a little more... automatic or at least where I don't have to drop each item individually on a stage, reposition, ect...
    But yes, the previous post is one way of doing it with some fooling around with.

  • Animation with .png files - from Maya 3D

    I need to import an 3-second animated sequence (created in Maya 3D by someone else) into FCP Studio sequence.
    I have been given a folder with 90 .png files. Is there quick/easy way to do it?
    The individual .png files open up fine.
    They only have experience with premiere, and thought I should be able to import it as sequence?
    Any suggestions? Do I force them to output as .mov file? They don't know if they can preserve alpha channel (we need to keep background transparent).
    Thanks for any suggestions or help!

    The iPad expects the photos to be in a folder named DCIM, and have names 8 characters long plus the extension. i.e. image001.png
    Do your png files meet this criteria?

Maybe you are looking for

  • Question about camera raw. Need to edit Canon 60D Raw files in CS5.

    I downloaded the program camera raw. folder could not find the installer program. I do not know how to install the camera raw.in the past with these programs had no problems. what version of the program is suitable for Photoshop cs5 and camera canon

  • Splitting the outbound delivery VL10b

    Hi, I am facing the very weird problem. i am using the retail envirnoment ecc 6.0. i have scheduled daily batch job for outbound delivery creation from STO's through VL10B transaction. As per the SAP standard system it should create a single delivery

  • No records in titl block when running in application server

    hi all, i am facing problem when running forms in application server. the error msg whcih is coming is FRM-41092: No Records in block TITL. can any one help pls..... Regards Natesh

  • Imported clips pane shows old clips?

    When I create a new project in iMovie '11, a nice blank area shows up in the project pane of the interface. Then I choose File > Import > Movies and import a new clip. However, the lower right pane, where it shows my imported clips, continues to show

  • Adding additional Domain

    I have a single domain environment I am running windows server 2008 R2 domain controller and exchange server 2010. I have been ask to add a second domain to the exchange server to use for receiving and sending email. now my question is will it be wis