IOS 4.2 no image resize for mailing out of photos...?

While the iPhone offers several options for image size when I send photos out of photos the iPad does not.. Is that normal even for 4.2 or am I missing a setting somewhere? This is hugely annoying bc I only have camera and iPad with me traveling and not always a good Internet connection to upload 10mb pics...
Any suggestions how to get the pics emailed out downsized?
Cheers
Greg

As iOS 4.2 has not yet been generally released, you might do better asking this question of your fellow developers in the Developers' Forum.
Best of luck.

Similar Messages

  • Free Image Resizer for Pix?

    just wondering if the apple has any power toys such as windows. i use to always use the image resizer power toys for windows. does the macbook pro have it as well? or is there any applications that is already installed on here that i can use it. i swear i looked through all of the apps,and could not found anything that could help me.

    I don't know what you mean by 'power toys'. But if it is image resizer that you want, try ToyViewer at http://www7a.biglobe.ne.jp/~ogihara/software/index.html
    It's light, and fairly easy to use. Lots of basic functions as well.

  • Pages rendering for mail out?

    how do you render a pages document to mail so links etc work and its centralized and not an attacment persay,,its for a music promo mail out,,please help!

    Apple Mail stationery via third party templates, or custom development is another possibility. The latter isn't for beginners, and is made more palatable by the use of commercial tools like Mail Designer Pro. Apple Mail stationery embeds the graphical elements into the e-mail, rather than a dependence on those images hosted on a remote server.
    Yesterday, I composed an email with Apple Mail stationery, and sent it to a peer, who received it in Outlook Web App (OWA). This was on a 2010 Exchange Server. The e-mail appeared in the Microsoft mail user agent just as intended by my original composition within Apple Mail.
    I also tested the “Send Contents of This Page” feature from Safari 6 on Lion (10.7.5) that opened an Apple Mail composition window with the web page displayed. I prepended the page content with a short message and sent it on to OWA with similar results to above. On Mountain Lion, the equivalent would be the Sharing icon on the Safari toolbar that contains ”Email this Page.”
    Caveat. There is no assurance that all e-mail clients will embrace Apple Mail stationery, or any HTML e-mail composition with equal compatibility.

  • Image resizing for printing

    Hi,
    I have a simple applet that prints a gif image provided by a 3rd party. I'm using javax to do the printing. My problem is that the image is printing huge, since it's high res, and I'd like to slim it down. Is there a way to do this within the print classes, or do I have to manipulate the image before passing it to the applet? Pseudo-code is below.
    Thank you for any help.
    Jeff
    URL url = new URL(codebase + "filename.gif");
    PrintService ps = (previously defined print service)
    PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet();
    aset.add(OrientationRequested.REVERSE_LANDSCAPE);
    DocPrintJob job = ps.createPrintJob();                              
    Doc doc = new SimpleDoc(url, DocFlavor.URL.GIF, null);
    job.print(doc, aset);

    You should resize the image and pass this to yous Doc objecty.Check this
    Image inImage = getImage(new URL(codebase + "filename.gif"));
              int maxDim = 120;
              double scale = (double) maxDim / (double) inImage.getHeight(null);
              if (inImage.getWidth(null) > inImage.getHeight(null))
                   scale = (double) maxDim / (double) inImage.getWidth(null);
              // Determine size of new image.
              //One of them
              // should equal maxDim.
              int scaledW = (int) (scale * inImage.getWidth(null));
              int scaledH = (int) (scale * inImage.getHeight(null));
              System.out.println(">> "
                   + inImage.getSource().getClass()
                   + " aspect ratio = "
                   + scaledW + " , " + scaledH);
              Image img = inImage.getScaledInstance(scaledW , scaledH, Image.SCALE_SMOOTH);The rest is yours.

  • Automatic image resize in Mail

    Hello.
    Currently I scan negetives with my Epson scaner. I scan at 2400 dpi and get images with approximately 3050 x 2120 pixels and 4 to 6 MB.
    All images are saved to a folder, not a library.
    Now I'd like to send a bunch via email. I drag the images I want into Mail and then something weird happens:
    If I choose "big" as image size, the images are scaled down to 13 KB and 100 x 60 pixels.
    The same happens, if I select "medium" or "small".
    Only "original size" works fine, but the images are to big to send.
    This seems to happen only with my scanned images - with fotos put in from Aperture or iPhoto all works fine.
    What seems to be the problem here?

    What I would try is to put the image into another image application, such as Photoshop, Photoshop Elements, iPhoto, even into Preview, Safari or Word, then save (perhaps by dragging) the image on to the desktop.
    It might work.
    What does GetInfo say about the image? Anthing peculiar?

  • Is it possible to optimize this Bilinear Image Resizing Method more?

    I'm trying to write a speedy bilinear image resizer, for displaying images so it doesn't need to me 100% accurate, just look correct.
    So far i've come up with
         public static final Image resampleImage(Image orgImage, int newWidth, int newHeight) {
              int orgWidth = orgImage.getWidth();
              int orgHeight = orgImage.getHeight();
              int orgLength = orgWidth * orgHeight;
              int orgMax = orgLength - 1;
              int[] rawInput = new int[orgLength];
              orgImage.getRGB(rawInput, 0, orgWidth, 0, 0, orgWidth, orgHeight);
              int newLength = newWidth * newHeight;
              int[] rawOutput = new int[newLength];
              int yd = (orgHeight / newHeight - 1) * orgWidth;
              int yr = orgHeight % newHeight;
              int xd = orgWidth / newWidth;
              int xr = orgWidth % newWidth;
              int outOffset = 0;
              int inOffset = 0;
              // Whole pile of non array variables for the loop.
              int pixelA, pixelB, pixelC, pixelD;
              int xo, yo;
              int weightA, weightB, weightC, weightD;
              int redA, redB, redC, redD;
              int greenA, greenB, greenC, greenD;
              int blueA, blueB, blueC, blueD;
              int red, green, blue;
              for (int y = newHeight, ye = 0; y > 0; y--) {
                   for (int x = newWidth, xe = 0; x > 0; x--) {
                        // Set source pixels.
                        pixelA = inOffset;
                        pixelB = pixelA + 1;
                        pixelC = pixelA + orgWidth;
                        pixelD = pixelC + 1;
                        // Get pixel values from array for speed, avoiding overflow.
                        pixelA = rawInput[pixelA];
                        pixelB = pixelB > orgMax ? pixelA : rawInput[pixelB];
                        pixelC = pixelC > orgMax ? pixelA : rawInput[pixelC];
                        pixelD = pixelD > orgMax ? pixelB : rawInput[pixelD];
                        // Calculate pixel weights from error values xe & ye.
                        xo = (xe << 8) / newWidth;
                        yo = (ye << 8) / newHeight;
                        weightD = xo * yo;
                        weightC = (yo << 8) - weightD;
                        weightB = (xo << 8) - weightD;
                        weightA = 0x10000 - weightB - weightC - weightD;
                        // Isolate colour channels.
                        redA = pixelA >> 16;
                        redB = pixelB >> 16;
                        redC = pixelC >> 16;
                        redD = pixelD >> 16;
                        greenA = pixelA & 0x00FF00;
                        greenB = pixelB & 0x00FF00;
                        greenC = pixelC & 0x00FF00;
                        greenD = pixelD & 0x00FF00;
                        blueA = pixelA & 0x0000FF;
                        blueB = pixelB & 0x0000FF;
                        blueC = pixelC & 0x0000FF;
                        blueD = pixelD & 0x0000FF;
                        // Calculate new pixels colour and mask.
                        red = 0x00FF0000 & (redA * weightA + redB * weightB + redC * weightC + redD * weightD);
                        green = 0xFF000000 & (greenA * weightA + greenB * weightB + greenC * weightC + greenD * weightD);
                        blue = 0x00FF0000 & (blueA * weightA + blueB * weightB + blueC * weightC + blueD * weightD);
                        // Store pixel in output buffer and increment offset.
                        rawOutput[outOffset++] = red + (((green | blue) >> 16));
                        // Increment input by x delta.
                        inOffset += xd;
                        // Correct if we have a roll over error.
                        xe += xr;
                        if (xe >= newWidth) {
                             xe -= newWidth;
                             inOffset++;
                   // Increment input by y delta.
                   inOffset += yd;
                   // Correct if we have a roll over error.
                   ye += yr;
                   if (ye >= newHeight) {
                        ye -= newHeight;
                        inOffset += orgWidth;
              return Image.createRGBImage(rawOutput, newWidth, newHeight, false);
         }I was wondering if anyone can see any problems with this, or suggest any faster ways of doing this.
    Thanks
    Edited by: chris.beswick on Nov 5, 2008 3:24 AM
    Edited by: chris.beswick on Nov 5, 2008 3:40 AM - Changed title to reflect what I am after.

    Thanks for the reply.
    Sadly, both the methods in the link are for simple nearest neighbour resizing, which looks god awefull. In addition the first one on the page is insanely slow only only needed with much versions of J2ME that do not support directly accessing pixel data from Image (via getRGB()).
    I started with something like the second example, and have them tweaked it down while adding in the weighted re sampling of the 4 nearest pixels, to remove jaggies. I've managed to get my "bilinear" version to be only around 4 times slower than nearest neighbour, which given that it reads 4 times the data for each pixel is not bad... just wondering if I can go any faster :D
    My current intention is it use a fast nearest neighbour while the image is being moved around / zoomed, and then when there is a pause in user input update the image with the bilinear image.
    Also, I'm trying to use variables (xA, xB, xC, xD) in place of arrays(x[0], x[1]. x[2]. x[3]) as I've read somewhere it is faster as there is no need for bounds checks when accessing a variable unlike an array,
    Finally, does anyone have any good ideas on using bit shifting to approximate all the multiplication (ie x << 8 instead of x * 256) of the pixels by weights, the resulting answer may be "wrong" but if it is close enough it might work.
    Chris
    Edited by: chris.beswick on Nov 5, 2008 4:14 AM

  • Discussion about image resizing

    Hi,
    I'd like to get some point of views regarding image resizing ....
    Handling images is always a lot of work, having to resize, give names, then alt tags then titles  etc ..... Depending on the design, on one page one image has to be 200px wide , on another 150 and in the gallery 600px ..... Hw do you handl this, do you really resize all images so they fit where they need to be , and do thumbs everytime or do you use automatic resizing .... Server side, css ?
    In an ideal world I would like to have just one folder with one version of all images and be able to use those ones without having to resize them manually .... What do you reckon ?
    Obviously, I'm not talking about high resolution images or full screen images but images that would rnge between 400 to 600px wide for instance. Do we still have to think about server load and download speed today in 2012 ? Do you think or know it really affects ranking on search engines .... well ... debate is open , I'm really interested in getting all point of views as they surely be very different from one user to another !!

    In the old days, when connection speeds were modem-sized, it was important to be conservative with regard to page weight.  In this era of high-speed internet, it's not so much.  My pages that use lots of full-size and thumbnail images will often just use the larger image resized for the thumbnail.  Resizing down is fast and cosmetically acceptable. 
    Also, I'm certain that image size has no impact on search engine ranking.

  • Iphoto photo import - best image type for max resolution (jpg vs tiff)

    What is the recommended image type for maximum resolution of photos brought into iphoto albums, since I will be enlarging them? (ie assuming everything brought into iphoto is set/reduced to a standard resolution, then jpg might allow more digital data for later enlargement; on the other hand tiff is often recommended for best resolution though it requires more space). Thanks, - D

    Thanks, Terence - OK, lets assume I shoot a 5-meg photo of a painting and adjust the paralax etc in photoshop so it is perfectly set inside the rectangular format. Now I want to import it into iphoto, knowing that I will use the crop tool to make two blow-up enlargements to go along with the original full-size image... total 3 related images of the artwork. As you mentioned these will eventually go into iweb as part of a series inside an album, with a hyperlink connecting the two enlargements to the full-size image... so viewers can tap to see finer detail and then go back to the overall composition. My question is, for the original photo image of the painting should I drag a 10-meg tiff into iphoto or a 2-meg jpg? (I do not know what importing the image into iphoto does to the original in terms of final image resolution and data size... Will a 2-meg jpg provide sufficient data to work with and enlarge via the cropping, or would the 10-meg tiff be better as a starting point? Or, if everything gets translated into a certain pre-ordained size anyway, would the tiff get watered down to, say, a 2-meg-size image anyway?) Thanks, - D

  • Since ios 6 update hotmail fetches or push on its own. I have hotmail set to manual. Best I can tell its only hotmail and not yahoo. Is this a known problem? How do I make hotmail stop checking for mail when I have it set to manual?

    Since ios 6 update hotmail fetches or push on its own. I have hotmail set to manual. Best I can tell its only hotmail and not yahoo. Is this a known problem? How do I make hotmail stop checking for mail when I have it set to manual?

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • Image resize in CS5 vs cell size in LR3 for large print quality

    What is the benefit of image resizing(larger) with resampling in photoshop than creating a larger cell size and increasing the DPI in LR3 if the file is to be printed just out of LR3.  Is there a significant improvement in image quality if this is done in CS5, if so then what about the need for fractal program.  I am taking my images with a D3x and making prints up to 20x30 on Epson 7900?

    Interoperation from LR is far superior to the basic in PS CS 4, whilst this may have improved in CS 5 I haven't tried it and wouldn't expect it to be any better than LR 3. The print module in LR can also make it all a lot easier to do than using PS. Some may still prefer Genuine Fractals (I have a copy), however I have felt no need for it since LR 2. Any resizing I require is done using LR

  • After I updated iOS 5 can´t use the "open with" for mail attachments.

    After I updated iOS 5 on my iPad 2, I can not use the "open with" for mail attachments. The option is not appearing.
    For example, when I try to open an .wmv attachment the iOS 5 doesn´t show "open with". Before update, I was able to open with "AZUL" software.
    Can anyone help me?

    You did say that the option does not appear at all in mail no matter which file type you want to open correct? I can only assume that something went corrupt in the update that affected your settings and that's why this option no longer appears. For experimental purposes, you could try emailing a PDF to yourself and see if that will allow you to use the Open in function in the mail app.
    If nobody else jumps into this discussion with a different idea, then maybe you should try restoring your iPad. The best way to do so is - first backup the device - and then restore to factory settings and then you can try restoring from a backup at the end of the process.
    However, if one of your settings is corrupt, the backup will be corrupt as well. It may be that you will have to restore to factory settings and then start all over again - adding your apps and content back to the device to get the best results. I would certainly use this process as a last resort. Restoring from a backup maybe all that you need to do.

  • Image resizer - power toy's style program for osx ?

    I hope this is the correct forum. I am new to the mac way of life and I have just began to explore my new (and first) mac (17" G4 powerbook).
    I have Adobe elements that came with my Canon 300D, so I do have an image resizer, however I was hoping someone had information to a resize program that worked similar to the Microsoft power toys. Simply right click the image and choose the size you wish it to be.
    If this exists, please point me in the right direction
    Thanks a million!
    Tiger 10.4 OSX

    I think??? what you're looking for is QuickImageCM (a contextual menu plugin).
    http://www.pixture.com/macosx.php
    Enjoy!
    PowerMac G4/Dual 800   Mac OS X (10.4.3)  

  • Anyone else experiencing random app crash for mail app for IOS 7.1

    Anyone else experiencing random app crash for mail app for IOS 7.1

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.

  • The default account option in iOS for contacts is missing; while I have multiple account options for mail and contacts are turned on for iCloud and other accounts.

    The default account option in iOS for contacts is missing; while I have multiple account options for mail and contacts are turned on for iCloud and other accounts.  I previously was able to select between my Microsoft Exchange Contacts (work account) and iCloud (personal), but both those options are now gone.  I tried turning contacts for both off and on and rebooting, but it didn't help.  Any ideas?

    Just a guess but if the exchange account is from your employer, your employer may have installed a security profile to your device preventing you from adding or editing contacts in the exchange account by removing the Default Account setting.  You would need to check with your employer's IT department to confirm this.  You could also test this by adding a Gmail account and turning on contacts syncing with Gmail to see if the setting reappears.

  • I get a message IOS 6.1.2 failed verification because you are no longer connected to the internet .  i checked my connection to internet and its fine for mail and all other internet use only keep getting nowhere fast.

    i get a message IOS 6.1.2 failed verification because you are no longer connected to the internet .  i checked my connection to internet and its fine for mail and all other internet use only keep getting nowhere fast

    Just Power off your Iphone wait for 10 seconds and then power on again and got to settings and software update it will download the update once again and it will work fine.

Maybe you are looking for

  • Mail won't open. . .  I think I've tried EVERYTHING!

    Okay. I think I've tried EVERYTHING to get Mail to work on my Powerbook G4, 1.33 GHz/1.25 GB. Here's the backstory. A few weeks ago, all my applications kept quitting unexpectedly. I got kernel panics all the time, and eventually got a persistent ker

  • ITunes 10.7 Won't open

    Just updated iTunes and now it won't open. Anyone else had the same problem? I've reinstalled, run Disk Utility and all the other normal fixes.

  • Syncing to itunes from a new computer without having original itunes library

    Hi there i am stuck in a tricky situation and would appreciate all the help i can get, first things first i know this is quite a frequently asked question as i have done a bit of searching on the net about it however could not not find anything that

  • Purchase requisition tables

    HI all, I want to know the tables and transactions related to Purchase Requisition. Also, in which table the Purchase Requisition APPROVAL result and the APPROVER name will get stored? Regards, Shanthi

  • Full Load and delta loads of HR Data using ABAP Program

    Hi All, I need to write an ABAP program that will pull some HR data from some of the infotypes.When i run it for the first time it should pull all the data for all the employees but in the subsequent runs it should run only the delta changes for exam