Convert inches to pixels [was: i am trying to build web pages for my friends...]

I have a problem when i find a picture that i want to use when the picture size is displayed in inches. How do I convert those pictures to pixels size?
[Subject line edited by moderator to indicate nature of question]

Open your image in your graphics program.
Whether you decide to resize or not, the program shoulf be able to display the dimensions in either metric.

Similar Messages

  • Guys i have a problem, I used to download apps from one of my friends apple id, now i created my new account, but when i was about to update my apps its asks for my friends id and password. now how could i update my old apps from my new apple id?

    Guys i have a problem, I used to download apps from one of my friends apple id, now i created my new account, but when i was about to update my apps its asks for my friends id and password. now how could i update my old apps from my new apple id?

    The_Tonmoy wrote:
    I have no communication with my that friend :/ So it means i need to delete those apps? There's no other solution to update those apps?
    No.  purchases are forever tied to the apple ID used to buy them.  Delete them and buy your own copies.

  • Aperture fades away after trying to Export Web Pages...

    Running Aperture 3.3.2 under 10.7.4.
    I can't give too much detail regarding this issue because it's a very subtle, quiet issue. When I select a set of photos and try to Export Web Pages..., the app quietly "dies," for the lack of a better term.
    The UI becomes unresponsive. There is no model dialog box (although my instinct tells me that it's behaving as if there is--I've had issues with other apps in Lion, where a modal will live on a different desktop when the app is in Full Screen mode).
    That's all I can say, really. Sorry. When I press Cmd+Opt+Esc, the app appears functional because "The app is not respoding" does not appear next to the app name in the resulting dialog.
    When I Cmd+Tab to the Aperture icon, the menu does not display in the Menu Bar. However, if I click on the Aperture icon in the Dock, the menu does display, although no UI elements in the app window are responsive.
    Like I said, it's a strange, slow-motion crash. This happens only when I try to export web pages. It seems Apple is being lazy deprecating MobileMe references to its apps as I still see MobileMe referenced in a lot of dialog boxes and in the help system. Maybe it's trying to export web pages to the non-existent MobileMe universe, causing a crash due to a communications error?

    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    *Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    In Firefox 4 and later [http://kb.mozillazine.org/Safe_mode Safe mode] disables extensions and disables hardware acceleration.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    If disabling hardware acceleration works then check if there is an update available for your graphics display driver.

  • FireFox keep saying "unexpected error" when trying to print web pages.

    FireFox keep saying "unexpected error" when trying to print web pages. The print preview works OK, but when you try to print that "unexpected error" jumps up.
    Please email me on what to do to get FireFox to work.
    I don't see anything in the FAQ that might help me.

    Hi,
    Please also try this setting: Windows start menu or Control Panel > '''Devices and Printers''', right-click the printer > '''Printer properties''' > '''Advanced''', and select '''Start printing after the last page is spooled'''. In this case you can also close Firefox after spooling is over (usually much faster than direct printing), and printing will continue.
    Also as a general case, if you have security software (antivirus, firewall etc.) installed, you can try deleting all existing instances of Firefox and its related processes/files in all the different configuration modules/areas of the security software like process monitoring, sub/spawned process control, virtualization, HIPS etc., in addition to the security software's main configuration panel. Instead create new fully allowed/trusted rules for Firefox + its related processes in all the different modules/panels - a genuine/original Firefox installer as well as all the installed EXEs (Application) and DLLs (Application extension) are digitally signed by Mozilla Corporation (right-click > Properties > Digital Signatures). Even otherwise, some security software may also ask again when Firefox and/or its sub processes are started, and you may be able to allow/trust at that time. Please see [https://support.mozilla.org/en-US/kb/Firewalls this].
    [http://kb.mozillazine.org/Firewalls AV/Firewalls Configuration]

  • I get scrip error when trying to print web pages.

    I get a scrip error message when trying to print web pages and it will not print.

    FreddieP,
    You may want to download and run the HP Print and Scan Doctor. It helps diagnose and resolve printing issues. You can click on the link below to go right to it.
    Let us know if this works for your issue or not.
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=oj-106151-2&cc=us&dlc=en&lc=en...
    If I helped you at all it would be great if you clicked the blue kudos star!
    If I solved your post please mark it as solved to help others.
    I'm a printer tech with HP.

  • I have used fire fox for a long time but have nothing but problems loading web sites..i think the time has come to uninstall firefox and go with internet explore..im tired of wasting my time trying to load web pages.

    Question
    i have used fire fox for a long time but have nothing but problems loading web sites..i think the time has come to uninstall firefox and go with internet explore..im tired of wasting my time trying to load web pages.

    does not solve problem..guess i'll have to get rid of firefox..never had problen before but to much hassle loading web sites.

  • Error 403 Reported when trying to access web page through a program.

    I was writing a program for fun, to try to download a web page, pdf or anything from the web. The program works fine when given local file system path in URL and also works well when i tried to access a page from the tomcat installed on my machine but gives a error 403 when tried to access URL's outside the system. Tried to read about 403, seems that many sites does not allow to access a particular URL directly using the directory structure, you have to pass thru different hyperlinks before reaching resource.
    IS THERE ANY WAY THIS PROBLEM CAN BE SOLVED.
    import java.io.*;
    import java.net.*;
    class TestDownload
         public static void main(String[] args)
              try
                   URL url = new URL("http://www.webmasterworld.com/forum48/1966.htm");
              //     URL url = new URL("http://localhost:8080/index.html");
              //     URL url = new URL("file:\\C:\\web_2.pdf");
                   URLConnection connection = url.openConnection();
                   InputStream stream = connection.getInputStream();
                   BufferedInputStream in = new BufferedInputStream(stream);
                   FileOutputStream file = new FileOutputStream("x.html");
                   BufferedOutputStream out = new BufferedOutputStream(file);
                   int i;
                   while ((i = in.read()) != -1) {
                        out.write(i);
                   out.flush();
              catch(IOException e)
                   e.printStackTrace();
              System.out.println("Hello World!");
    }

    I was writing a program for fun, to try to download a web page, pdf or anything from the web. The program works fine when given local file system path in URL and also works well when i tried to access a page from the tomcat installed on my machine but gives a error 403 when tried to access URL's outside the system. Tried to read about 403, seems that many sites does not allow to access a particular URL directly using the directory structure, you have to pass thru different hyperlinks before reaching resource.
    IS THERE ANY WAY THIS PROBLEM CAN BE SOLVED.
    import java.io.*;
    import java.net.*;
    class TestDownload
         public static void main(String[] args)
              try
                   URL url = new URL("http://www.webmasterworld.com/forum48/1966.htm");
              //     URL url = new URL("http://localhost:8080/index.html");
              //     URL url = new URL("file:\\C:\\web_2.pdf");
                   URLConnection connection = url.openConnection();
                   InputStream stream = connection.getInputStream();
                   BufferedInputStream in = new BufferedInputStream(stream);
                   FileOutputStream file = new FileOutputStream("x.html");
                   BufferedOutputStream out = new BufferedOutputStream(file);
                   int i;
                   while ((i = in.read()) != -1) {
                        out.write(i);
                   out.flush();
              catch(IOException e)
                   e.printStackTrace();
              System.out.println("Hello World!");
    }

  • N8 - When trying to open web page I get content.bi...

    All of a sudden, when I open the browser and try to open a web page - any web page - I get a message "content.bin, file saved". Then I get content(1).bin, content(2).bin and so on. What is this? Tried a restart, didn't help.
    Former owner of E90, N97 x2, E72, N8 and current owner of E7.

    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Firefox keeps saying conection was reset while trying to load the page what does this mean i called my internet provided and they say my connection is good

    try again i dont understand what is going on it happens often sometimes it can take 10 or 15 min to actually get on the internet

    Did you check your security software (firewall)?

  • Trying to configure WEBI services for connetion to Universes.

    I am trying to connect CRXI R2 to a universe like the sample universes. I can log onto CCM and I can see the universes when I try to create the connection. I am getting the error 'All the servers with CMS cmsservername, cluster cmsservername and kind webiserver are down or disabled.' I changed the command line to include the -request cmsservername -port 6401 and tried 6401. But when I do that the services will not restart.  When I remove the above addition, the services will restart.
    Any ideas?

    Could youplease provide a little bit more insight on the issue ?
    Are you trying to coonect to Universe from CR Designer or from Universe Designer or from Webi or Deski report ?
    Can you coonect to CMC and see if the servers are running and enabled ?
    Can you open Universe in Universe Designer and test it's connection ?

  • Error when trying to build the database for the Oracle Fusion Store Front D

    I have jdeveloper Build JDEVADF_MAIN.BOXER_GENERIC_081002.2127.5156
    I downloaded the FOD_11.zip from http://www.oracle.com/technology/products/jdev/samples/fod/index.html
    When running the Ant script to create the FOD user and schema, I get the following errors:
    Oracle JDeveloper (11g) (Build 5156)
    Buildfile: D:\oracle\Infrastructure\Ant\build.xml
    init:
    [javac] Compiling 1 source file to D:\oracle\Infrastructure\Ant\classes
    setProperties:
    createDatabase:
    refreshSchema:
    BUILD FAILED
    D:\oracle\Infrastructure\Ant\build.xml:52: The following error occurred while executing this line:
    D:\oracle\Infrastructure\DBSchema\build.xml:91: The following error occurred while executing this line:
    D:\oracle\Infrastructure\DBSchema\build.xml:56: The following error occurred while executing this line:
    D:\oracle\Infrastructure\DBSchema\build.xml:28: D:\oracle\Infrastructure\Ant\wlserver_10.3\server\lib not found.
    Total time: 5 seconds
    Does anyone know what the problem is?
    Thanks for your help.

    I had the same problem until I changed the Windows-style back slashes in the directory path to UNIX-style forward slashes, viz:
    C:\Oracle\Middleware\jdeveloper
    is wrong, while:
    C:/Oracle/Middleware/jdeveloper
    works correctly.
    This might be stating the obvious, but it's one of the ongoing write-once-and-fail-to-run-everywhere issues that keep biting newbie Java developers, like myself, in the backside.
    :-(

  • Error message when trying to publish web pages

    Hi,
    I had a problem with some "older" pages not loading pictures on each page. Someone suggested I try "publish all" and now I get this error message:
    Publish Error
    An error occurred while publishing file "/web/.Temporary Web Resources/F9C31143-DADE-4546-B309-FA11EEE9FA9B" Try publishing again later.
    Publishing again later (several times) had no effect--same message. Restoring iWeb to a version that did not have the "publish all" attempt brings up a iWeb that appears identical to the latest version, and all boxes are showing red, indicating a "publish all" step is the only one possible.
    How can I fix the error and/or remove the corrupted file?
    Any help will be greatly appreciated.
    My web pages has numerous pages and lots of pictures, videos etc
    thanks
    hermann

    Try the troubleshooting steps under "Fix iWeb" here....
    http://www.iwebformusicians.com/WebMusic/iWebTips.html
    Then publish your site to a local folder and launch it in the browser by double clicking the index.html file to test it.
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • Hp all-in-one c309n-s Receiving script error when trying to print web page. Any web page.

    I just installed my hp all-in-one c309n-s printer. Everything works fine but when I try to print from a web page (any web page) I am receiving a script error. If I click No to continue running scripts on that page and try to print again, still receive same error. Same wihen I click yes.

    FreddieP,
    You may want to download and run the HP Print and Scan Doctor. It helps diagnose and resolve printing issues. You can click on the link below to go right to it.
    Let us know if this works for your issue or not.
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=oj-106151-2&cc=us&dlc=en&lc=en...
    If I helped you at all it would be great if you clicked the blue kudos star!
    If I solved your post please mark it as solved to help others.
    I'm a printer tech with HP.

  • More Than One Computer Trying to Access Web = Very Slow Download Speeds?

    We have Verizon DSL with a basic Westell modem, which supposedly is only a modem with no router capabilities. We have an Airport Extreme Snow Base Station that acts as a WDS Main, with one other AEB Snow as a WDS Remote. All computers have unique ip addresses in the 10.0.1.X range as provided by the WDS Main's DHCP.
    When only one computer connects to the internet to download web pages, software updates, etc., there seems to be no problem at all. When I do a speed check I get results that seem to be in the correct range, and it doesn't matter which computer I use for the test.
    However, if we try to access the internet with more than one computer at the same time, everything slows to a crawl. Such as, if one computer is downloading software updates, the other CPUs have super slow web page downloads, slow to the point of connection time-outs at times. Or if two of the computers are simply trying to download web pages at the same time, one or the other has super slow downloads.
    I feel like there is some kind of routing problem with the Base Station but for the life of me I cannot figure it out.
    What could the problem be? Where could it originate, and what, if any, advice could someone give me to help trace the problem?
    Thanks in advance.

    ... the one computer I am looking at right now shows DNS servers as 10.0.1.1, which is the internal ip address of the AEB. Could this be part of the problem?
    That is normal and shouldn't cause a problem. Essentially it tells the computer to ask the snow AirPort base station (ABS) for DNS information. The ABS will then provide the DNS information which it currently received from the ISP.
    Would it help if I manually entered the DNS numbers that appear on the AEB on each machine's Network Preferences?
    Probably not. A busy DNS server or faulty DNS info won't affect download speeds. That only affects browsing since that requires the computer to convert human readable addresses to numbers that the computer can use.
    Remember that the snow ABS only operates at 802.11b (11 Mbps) speeds. Then when you use WDS it cuts your available wireless bandwidth in half.

  • When trying to cler all browsing history at the location bar, although I follow the instructions to 'ctrl, shift, delete, some web pages remain stuck. Even if I highlight them one at a time and hit delete, they remain. What can I do to eliminate them?

    When trying to delete web pages from my history at the location bar drop-down area, I do as Firefox instructs by hitting the 'ctrl, shift, delete' keys but some web pages remain. Even if I highlight each page and hit delete, they remain. How can I eliminate these web pages?

    If you visit a bookmarked site then that site will become a history item and shows as such in the location bar drop down list.

Maybe you are looking for