Resolution of pics

Hi, I'm new on mac system and application. I'm sorry to open a new topic.
I would like to know if with I -photo 06 i could change resolution of my pics. They are about 1 Megabyte, I would like to have about 50 kb or more. Is it possible? And how?
Thanks for anwering me.
Regards and I'm sorry for my english

aldo.spinelli:
Welcome to the Apple Discussions. Yes you can change the size of the image and file. I'm assuming you need this for posting to the web or for use in another application.
Select the photo(s) you want to resize and use the File->Export->File Export menu options. You'll get to a window where you can select the pixel dimensions of the file(s). Once set, export to a folder on the Desktop and you'll have your smaller files.
Another quick way to get either a 320x240 or 640 x 480 image is to select the photo and click on the email button. You'll be given the opportunity to select either small (320 x 240) or medioum (640 x 480). Select the one you want and when the new email is opened with the photos included, just drag them to the desktop and close the email without sending.
A third way is to drag the photos from iPhoto to a folder on the Desktop and then run Resize! on the folder. With it you can select both the pixel dimensions and the compression (quality) level to create very, very small files. I can resize a 2272 x 1704 (1.6 MB) image file down to 640 x 480 at 40 KB in size. That's with the medium quality compression level. It's a very powerful free application.
Do you Twango?
TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

Similar Messages

  • What is the best resolution for pics in the drop zones of idvd?

    What is the best resolution for pics in the drop zones of iDVD?
    Also: iDVD always seems to align a pic to the left, can I change this anywhere?
    thanks

    Hello, Hans.
    Re: drop zone pic resolution - I generally don't go below 1000 pixels wide (iDVD will resize these images to a slightly smaller format, but I've controlled the largest part of the downsizing in Photoshop Elements).
    The alignment in iDVD is goofy.  The best I've achieved is trial and error -- adding blank background or cropping my image in the downsizing process (see above) to position my image.
    John

  • Size and resolution of pics

    Just set up a new MX892.
    The photo quality has a hazy pale look to it when printed on reg. 20 lb paper.
    (the older printer, MX7600, did a better job.)
    When I print pics through the PhotoPrint EX, the quality is better but the pics are printed in 1/2 scale.
    Please help.

    Hi paulb,
    Performing a manual print head alignment on the printer may resolve the photo quality issue you are experiencing.  To do this, please follow the steps located here.  Should you continue to experience difficulty, please call or email us at one of the methods on the Contact Us page for further assistance.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Resolution of Imported Pics in PE4

    Hi everyone,
    I can't remember what resolution my pics should be have when they're imported into PE4 from my scanner.  I know last time when I created a show, the large pics really slowed down the system.
    Thanks!
    Sarah

    Ideally you want to size them to around 1000x750, the actual NTSC video frame size is 720x480 (non-sqaure pixels, equivalent to 640x480 square pixels) so this allows for some room to pan and zoom around the photos if required.

  • Photo / video resolution: Choice?

    I can't find any control panel where I could select a certain resolution for pics & videos. Must I really take every video in HD? My memory is too small for a longer video, so SD would save me.
    Thank you!

    You can't find it because there is no such option.

  • To convert multiple image files to pdf using pdfsharp in C#

    Hey guys I have this C# code to convert any image file to .pdf using pdfsharp.dll. But I want to select multiple images for conversion please help. here's my code (plz note enable pdfsharp.dll in the reference)
    usingSystem;
    usingSystem.Collections.Generic;
    usingSystem.Linq;
    usingSystem.Text;
    usingSystem.Threading.Tasks;
    usingPdfSharp.Pdf;
    usingPdfSharp.Drawing;
    usingSystem.IO;
    namespaceConsoleApplication1
    classProgram
    staticvoidMain(string[]
    args)
    PdfDocumentdoc =
    newPdfDocument();
    doc.Pages.Add(newPdfPage());
    XGraphicsxgr =
    XGraphics.FromPdfPage(doc.Pages[0]);
    XImageimg =
    XImage.FromFile(source
    path...);
    xgr.DrawImage(img,0,0);
    doc.Save(destination path...);
    doc.Close();

    try this one
    public string CreatePDF(System.Collections.Generic.List<byte[]> images)
    dynamic PDFGeneratePath = Server.MapPath("../images/pdfimages/");
    dynamic FileName = "attachmentpdf-" + DateTime.Now.Ticks + ".pdf";
    if (images.Count >= 1) {
    Document document = new Document(PageSize.LETTER);
    try {
    // Create pdfimages directory in images folder.
    if ((!Directory.Exists(PDFGeneratePath))) {
    Directory.CreateDirectory(PDFGeneratePath);
    // we create a writer that listens to the document
    // and directs a PDF-stream to a file
    PdfWriter.GetInstance(document, new FileStream(PDFGeneratePath + FileName, FileMode.Create));
    // opens up the document
    document.Open();
    // Add metadata to the document. This information is visible when viewing the
    // Set images in table
    PdfPTable imageTable = new PdfPTable(2);
    imageTable.DefaultCell.Border = Rectangle.NO_BORDER;
    imageTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER;
    for (int ImageIndex = 0; ImageIndex <= images.Count - 1; ImageIndex++) {
    if ((images(ImageIndex) != null) && (images(ImageIndex).Length > 0)) {
    iTextSharp.text.Image pic = iTextSharp.text.Image.GetInstance(SRS.Utility.Utils.ByteArrayToImage(images(ImageIndex)), System.Drawing.Imaging.ImageFormat.Jpeg);
    // Setting image resolution
    if (pic.Height > pic.Width) {
    float percentage = 0f;
    percentage = 400 / pic.Height;
    pic.ScalePercent(percentage * 100);
    } else {
    float percentage = 0f;
    percentage = 240 / pic.Width;
    pic.ScalePercent(percentage * 100);
    pic.Border = iTextSharp.text.Rectangle.BOX;
    pic.BorderColor = iTextSharp.text.BaseColor.BLACK;
    pic.BorderWidth = 3f;
    imageTable.AddCell(pic);
    if (((ImageIndex + 1) % 6 == 0)) {
    document.Add(imageTable);
    document.NewPage();
    imageTable = new PdfPTable(2);
    imageTable.DefaultCell.Border = Rectangle.NO_BORDER;
    imageTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER;
    if ((ImageIndex == (images.Count - 1))) {
    imageTable.AddCell(string.Empty);
    document.Add(imageTable);
    document.NewPage();
    } catch (Exception ex) {
    throw ex;
    } finally {
    // Close the document object
    // Clean up
    document.Close();
    document = null;
    return PDFGeneratePath + FileName;

  • Photos are fuzzy

    my photos look good on the ipad but low resolution when printed or shared. how can i change the setting to take more high resolution pictures?

    AFAIK..
    What size/resolution are the photos?
    I have (as of now) 6100 pics on my iPad. They are great and sharp except for some taken by cheap..er...less expensive camera's. Matter of fact, most of mine were taken on a Canon 5D and it took HOURS for iTunes to optimize them for the iPad because they were VERY LARGE files (lot's of RAW files). A 2 megapixel phone grab or a low-resolution camera pic will 'look' good on an iPod Touch. When you blow that pic up 4x for the iPad screen size you can get artifacts (jaggies and fuzz). Easy way to tell is to pull up the picture on your computer and check it. So far, of the 4 amateur photogs who got iPads with me, we have been blown away by the IPS screen. Sharp and color saturation is UNBELIEVABLE in a portable device. If you really feel somethings wrong, burn the 'full size' .jpeg file to a CD and head to the Apple store (might want to make an appointment..they're busy). They will pull it up on a desktop and see what's up.
    Also, the .jpeg format does have some drawbacks...depending on your compression you can actually be generating artifacts into a perfectly good picture.

  • Missing Features on a q10reeditt​ed

    After a month of brain storming I can now say with some authority that features which meant a lot in bb9900 are lined below -
    1) one touch speed dial is not really 1 touch at min is 3 touch
    2) there is no saved message option
    3) in case a mail could not be sent from on e mail I'd it cannot be reedited to be sent alternate mail I'd
    4) videss can't be downsized for easy sending ( nor can they be recorded in low resolution)
    5) pics and videos are seen in multi locations not appear consolidated in 1 place
    6) no group forming possibility in contact list
    7) no back or options from a physical button
    8) deletion in 1 go of several junk messages is not possible only 1 at a time
    9) putting phone in a silent mode in 1 key press is not seen any more while entering a meeting hall
    10) whew... can't recall more... is anyone listening..

    Hello, I had the same problem yesterday after upgrading from Windows 8.1 to Windows 10. After searching the web I found this solution (source: http://support.hp.com/us-en/document/c01114052#SelectiveUpdate) which worked for me:      Step 4: Selectively update the imaging device driverIf a webcam driver is recognized after running the scan for new hardware in Device Manager, verify it is the latest version of the driver. note:If there is an HP webcam driver on the product page for your model and OS, use that driver, otherwise use the Microsoft USB Video Device driver.In the Device Manager, under Imaging Devices, expand the list of webcam drivers, right-click the webcam driver, and then select Properties.Figure : Webcam PropertiesMake a note of the existing name of the webcam driver (Example: HP Webcam), as it may change after the update.On the Webcam Properties window, select Update Driver....When prompted, select the option to Browse the computer for desired driver.When prompted, select the Let me pick from a list of device drivers on my computer option.De-select the Show compatible hardware checkbox, select Microsoft in the Manufacturer pane, select USB Video Device in the Model pane, and then click Next to install the desired webcam driver.Allow the installation of the USB Video Device, and then click Close.View the Imaging devices option in the Device Manager to verify the presence of a webcam driver.   Hope this works for you too. Regards,

  • Recommended pixel size image on Apple Cinema

    Hi,
    I want to buy some photography photos online. Companies like Dreamstime sell credit packages to buy their photos, and it costs more credits for larger image size photos. I am not buying photos to print them - just to view them.
    I got a reply from Dreamtime which said
    "I would recommend checking the owners information that comes with your Apple
    Cinema. They should provide a recommended pixel size of the image (not
    necessarily related to the monitor resolution) for your particular usage.
    Higher resolution images are typically for printed applications, so check
    Apple's owner manual info for recommended sizes if you are only on-screen
    viewing and not printing."
    So my question is what is the recommended pixel size for displaying images on the Apple Cinema since it is not related to actual monitor resolution.
    I don't have an owner's manual for my cinema.
    Thank you

    Hello BSteely,
    Much thanks again for the dialogue and informing me that I'd be best off with 1680x1050 res. I've also been doing some web reading on this resolution issue.
    I understand that when a photo is exported to iPhoto that it scales it to the monitor's dimensions - as I understand it by enhancing or decreasing pixel size - so that it fits on the screen.
    Is it logical to assume then that a picture or photo with 2560 x 1600 res. would be ideal for the Apple 30" Cinema Monitor because that is its maximum resolution - and pic and monitor would have a perfect fit ? Or does it just not make that much of a difference in viewing clarity because iPhoto calibrates the resolution to fit the monitor ?
    And finally does the quality/clarity of the picture suffer more when a pixel size is increased or decreased. The way I am picturing it - picture clarity would suffer more if a pixel is increased ( stretched to fit the screen ) than if a pixel is compacted from an image larger than the maximum resolution of the monitor.
    If you wouldn't mind clarifying that for me that should put the end of my inconveniencing you. You've been really helpful.

  • IPhoto photos are fuzzy

    I've just switched from an iPod Touch to a new iPad and want to sync some of the photos that I have in iPhoto. These photos looked OK on the Touch, but now it looks as though iTunes is not sizing them to the proper resolution when transferring them to the iPad.
    I thought that iPhoto and iTunes worked together to "fix" the images for downloading to the iPad, but it doesn't seem to be working for these photos. What do I need to do? Delete the albums? Re-import the photos into iPhoto?
    Any suggestions?
    Thanks,
    Dave

    AFAIK..
    What size/resolution are the photos?
    I have (as of now) 6100 pics on my iPad. They are great and sharp except for some taken by cheap..er...less expensive camera's. Matter of fact, most of mine were taken on a Canon 5D and it took HOURS for iTunes to optimize them for the iPad because they were VERY LARGE files (lot's of RAW files). A 2 megapixel phone grab or a low-resolution camera pic will 'look' good on an iPod Touch. When you blow that pic up 4x for the iPad screen size you can get artifacts (jaggies and fuzz). Easy way to tell is to pull up the picture on your computer and check it. So far, of the 4 amateur photogs who got iPads with me, we have been blown away by the IPS screen. Sharp and color saturation is UNBELIEVABLE in a portable device. If you really feel somethings wrong, burn the 'full size' .jpeg file to a CD and head to the Apple store (might want to make an appointment..they're busy). They will pull it up on a desktop and see what's up.
    Also, the .jpeg format does have some drawbacks...depending on your compression you can actually be generating artifacts into a perfectly good picture.

  • Camera adjustments

    Needing to change the resolution of pics taken for for files. Default setting eat up too much memory.  Any suggestions? Apps to download to be able to adjuste setting?
    Thank  you!

    I believe it already is, and it didnt seem to make that much difference in the storage capacity of the quantity of pictures we take on a daily basis.  Is there another option available to set at a lower resolution thru a downloable app or something? I know the options are limited in the settings on the iphones.  Most people want awsome pictures. We caputre rental equipment and don't really care how awesome they are. But..the iphones work great with the mobile workforce we are using...
    Thank you!

  • HT204264 iDevice Sync Query - IOS Photos & iCloud Photo Library over filling ipad iphone storage - what happens next?

    Device Sync Query - IOS Photos & iCloud Photo Library fills ipad iphone storage - what happens next?
    Quick question, when you select IOS Photo / IiCloud storage (photos are optimised etc) what happens when ipad / iphone storage is full and you now need to add new apps, photos etc?  In my case I have  3 * 64gb ipads & 2 * 128 gb iphone but these are all filling up with photos since enabling IOS Photo &  iCloud Photo Library (as all of my photos on each device are now copbined on every device as well as the cloud).  This has become a problem as when I try to sync my idevice I get the device full warning (and I am assuming I now need to delete apps / videos if I want to sync or make more space for new photos etc). As far as I can tell once you enable IOS Photos and iCloud all photos will upload at original resolution and download at idevice resolution and there is no way to select / control the photos you want to keep on phone  (eg if you delete photo on phone it will now delete the original on cloud).
    Couple of questions / Suggestions:
    - Will IOS Photos on IOS device  automatically lower resolution of pics or use thumbnails for old photos that are already in icloud to ensure that there is space on device for new photos,  apps videos music etc. Eg will old photos that have already been uploaded in icloud be replaced by new apps videos music etc (not sure that the IOS Sync or iCloud currently does this)
    - Is there away to limit control or limit the number of IOS photos that sync to each idevice (eg by starring photos)? I had a look and can not see away to select photos you want to keep or remove (without deleting them on cloud).  As per above I am hoping that the IOS sync and icloud systems are smart enough to replace Photos that have already upgraded to cloud with a lower quality / thumbnail to make more more room for new photos and apps (but not clear if this occurs)
    - If this is a problem now what happens once the new PHOTOS launches for OS Desktop eg will it add in all our photos from iphoto to the icloud then to the idevice as part of the OS PHOTOS UPGRADE. I have 15-30 gb of photos in IPHOTO that are now backing up to icloud, there needs to be away to only select starred photos or albums or every photo try to download to my iphone (which will kill my storage). There also needs to be away to keep photos on idevice (for those times when you do not have internet and can not download from iCloud to iDevice
    Apologies if I have missed something obvious and welcome any thoughts & answers.
    If there is no solution then Apple needs to look at this and highlight it as a risk to customers who switch as this is being sold as a way to minimise your device storage but can lead to to customers using up more  storage for photos on ipad iphone as a result of switch to IOS PHOTOS &
    iCloud Photo Library

    Things are not as dire as they might seem at first glance. My 66GB iPhoto Library became a 40GB iCloud Photo Library (~11K photos, ~300 videos) and only uses 2.2GB on my iPad and 2.4GB on my iPhone. Scaling that experience, a 64GB/128GB iOS device should be able to easily handle a 300GB iPhoto library. My iPad and iPhone are 32GB devices and I expect them to be livable through at least 30-40K of photos.
    16GB devices have always been problematic for space even before iCloud Photo Library so I'd expect anybody with a 16GB device and more than a few thousand photos is not going to be able to use iCloud Photo Library with it. They will have to use iCloud Photo Streaming to get photos to iCloud Photo Library and iCloud Photo Sharing or iTunes syncing to get a subset of photos back to the device. Not a great solution but workable. However, it wrecks one of the best features for me which is using my iPad to edit the photos I take on my iPhone.
    The part that worries me is the automatic space management routine. The problem it creates is that I might want to add a movie, but there won't be enough space, and my only option will be to reset iCloud Photo Library on the device to get back to all thumbnails on it to see if that gets me the space I need. I've already had to do it a couple of times with iTunes Match and it's not fun. It all depends on how aggressive Photo Library will be in trimming off full-size photos/videos and Apple appears to be leaving it a black box at this point. It would at least be nice to know an estimate of the minimum size so I know how much space I can recapture.

  • Cant open images sent to phone

    Cant open images sent to phone using latest Nokia PC Suite - any ideas? Have made sure they are approx size / resolution of pics sent to PC. Have tried as standard Jpegs AND as Nokia-own style files.
    Also, is there any way to permanently delete image history in PC suite multimedia viewer and revert Nokia style image files back to Photoshop ones?

    After experimentation found the only way was to change the pics from Jpeg to Gif.
    Still havent yet managed to answer my own other two queries though!

  • Samsung -imovie

    i have a samsung HD camcorder that is not listed as compatible on IMOVIE - am I out of luck?  Any options?

    Samsung sc-x105l... nice toy, but definitely no video camera...
    iMovie is a video edit app meant to work with firewire connected miniDV camcorders
    .. no word about flash-mem based mpeg 'corders....
    and:
    fw miniDV don't need any addtional software installed to work with iMovie...
    give iPhoto6 a try, recognizing files of your "camera"
    iPhoto6 allows import of mpegs from still-cams/probabyl your camera...
    import into iPhoto
    try to catch files from iPhoto bin in iMovie
    mpeg4 needs to be converted, poor resolution, poor pic quality.. no fun with iMovie

  • Transferring gif and jpeg files to FCP

    I was wondering why even though I have really high resolution files, pics, etc, when imported to fcp the files look pixelated and low quality. Ideas?

    Several reasons including Not rendered ( full or preview ) or not viewing on an external broadcast monitor, instead your laptop screen. add a drop shadow to it and it'll pop. Gif are usually a lower rez to begin with, stick with jpegs or psd files.
    HTH
    Larry
    editing on FCP since version 1.1

Maybe you are looking for

  • Sdo_nn is not showing desired results

    Hello, We have the following query : SELECT p.codigo_proveedor_ca, p.descripcion AS Proveedor, DECODE(p.habitual,0,'N','S') AS HAB, DECODE(p.h_24,0,'N','S') H24,      b.codigo_base, b.tipo_via || ' ' || b.nom_via || ',' || b.numero_via || ' ' || B.PI

  • Font issue with SWF

    Fonts do not display as set when exporting xlf to swf. Any ideas? Many many thanks

  • My menu bar is hidden. how do i restore?

    my menu bar is hidden. please tell me how to restore it.

  • Extract DDL ONLY !

    Does somone know what parameter needs to be added to extract to enable DDL ONLY ? I don't wan't and DML's extracted. Thanks a lot !

  • Samsung monitor shows black bars on sides

    I'm running OS 10.8.2 on a mid-2012 MacBook Pro, and I recently bought a Samsung Syncmaster SA300 (22 inch) monitor which I've connected using a VGA cable (DVI wasn't working, don't know why). I immediately noticed black bars on the sides of the scre