Storage space for photos

I want to buy either a 64 0r 32gb Ipad to take with me on holidays. I shoot my pictures in RAW format. If I used this the Ipad to down load my pictures for storage how many can be stored? I will have minimal apps on the device.

The iPad is not a very good device for storage of photos. When photos are imported to the iPad, they are "optimized" for viewing on the iPad, so you may lose some of the resolution. Also it's not easy to export or delete the photos from the iPad. Also when photos are imported, the photo file name does not appear on the iPad display.
Another option:
Expand your iPad's storage capacity with HyperDrive
http://www.macworld.com/article/1153935/hyperdrive.html
On the road with a camera, an iPad, and a Hyperdrive
http://www.macworld.com/article/1160231/ipadhyperdrive.html
An alternate would be to get multiple SD cards.
 Cheers, Tom

Similar Messages

  • How do I get the music back on my iPhone after manually deleting it from the device (to get space for photos/videos)?

    How do I get the music back on my iPhone after manually deleting it from the device (to get space for photos/videos)?  I can sync with iTunes but it doesn't copy these songs back, even though they still appear in my iTunes library.  I can click on the Music link  under 'On My Device' in iTunes and the missing songs all appear to still be on the device, but they are not.  I normally delete using iTunes and do not have this issue.  This time I was out and needed more space to shoot photos and videos so I removed a lot of music from my phone through the Music App.

    The songs I'm trying to reload on my phone are on my PC.  These we had loaded into iTunes.  I can remove them all from the library and then add them all back one by one I imagine.  The problem I'm having is that I removed them manually from the phone, they still appear in iTunes music library yet they won't sync.  I don't want to take the time to compare the phone to my library, remove from the library what's missing on the phone and then add them all back again.  64GB (mostly music) will take a while.

  • I have a new Mac Pro.  I want to use my old Mac Pro as a storage drive for photos and old documents, linked to my new Mac Pro.  How do I set up the old computer?

    I have a new Mac Pro.  I want to use my old Mac Pro as a storage drive for photos and old documents, linked to my new Mac Pro.  How do I set up the old computer?  Both computers have OS X10.9.3.  Currently they are connected by a Firewire 800 cable.

    You certainly could keep the old Mac Pro in Firewire mode (hold down the T key on its keyboard as you boot) to show its drives on the new MP. This is basically as fast as putting the drives into a Firewire enclosure.
    Or you could boot it normally and share its files over the network using the Sharing panel of System Preferences. If you turn on both File and Screen Sharing, you don't even need to have a monitor attached - you can do all administration using screen sharing. However, this method requires that you open all files over the network, which will be slower than the direct-connect method above, and may also not work with all applications.
    Matt

  • Storage space for sub mail accounts

    Does anyone know how I can allocate more storage space for my additional mail accounts? I ran out of space and purchased another 2gb of storage on my .mac account. However, none of this space is allocated to my additional mail accounts i.e. all of it goes into my main mail account (where I dont need it...). Any advice?

    This forum is for discussing issues related to the Mail & Address Book applications included with Mac OS X 10.4 (Tiger). Yours appears to be a .Mac issue that has absolutely nothing to do with Mac OS X’s Mail. The right forum for such questions would be one of the .Mac Forums, such as .Mac General, for example.

  • Custom column to show total remaining storage space for a host

    I'm looking for a way to easily view the total amount of remaining storage space for a virtual host. At present, viewing the properties for a host in VMM is the only way to view this in the GUI. I was looking at sourcing a Powershell command to do this,
    and then feed it into a custom column, for easy viewing within the VMM main window. This is probably best suited to the Powershell forums, but I placed the post here, as I may have overlooked another way to achieve this within VMM itself. Has anyone desired
    for such a thing?
    Many thanks.

    I'm looking for a way to easily view the total amount of remaining storage space for a virtual host. At present, viewing the properties for a host in VMM is the only way to view this in the GUI. I was looking at sourcing a Powershell command to do this,
    and then feed it into a custom column, for easy viewing within the VMM main window. This is probably best suited to the Powershell forums, but I placed the post here, as I may have overlooked another way to achieve this within VMM itself. Has anyone desired
    for such a thing?
    Many thanks.

  • Am I correct, if I presume that Photo stream IS the iCloud storage device for photos?

    Is Photo-stream the iCloud storage device for photos?

    Photo Stream is a photo sync service between your computers and devices. That's not designed as a storage service, because photos uploaded to Photo Stream are deleted 30 days after adding them to it. If you want to see more limitations, see > http://support.apple.com/kb/HT4858?viewlocale=en_US&locale=en_US

  • Command to show total remaining storage space for a host

    I'm looking for a way to easily view the total amount of remaining storage space for a virtual host. At present, viewing the properties for a host in SCVMM is the only way to view this in the GUI. I was looking at sourcing a Powershell command to do this, and
    then feed it into a custom column, for easy viewing within the VMM main window. Has anyone desired for such a thing?
    Many thanks.

    Hi!
    Since I find your question to be interesting, I decided to write two scripts that might be of use to the both of us, and the community, perhaps. The first script does what you wanted. As a bonus, I wrote a similar script that checks for free space on the
    virtual machines.
    IMPORTANT: I tested the scripts on SCVMM 2012 Service Pack 1. I do not recommend running the scripts without checking for possible compatibility issues.
    You can use the scripts in several ways. For example, you could run the scripts every time before running SCVMM. Or you could create a Scheduled Task using a Group Managed Service Account. Or on wednesdays...
    The scripts update the fields when ran.
    Prerequisites for running the first script:
    Execution Policy, of course
    Custom Property: "Available Storage"
    Here is the script you are looking for.
    Import-Module virtualmachinemanager
    $hostNames = (Get-SCVMHost | Select-Object Name).Name
    $availableStorageProperty = Get-SCCustomProperty -Name "Available Storage"
    ForEach ($hostName in $hostNames) {
    $VM_Host = Get-SCVMHost -ComputerName $hostName
    $availableStorage = $null
    $availableStorage = $VM_Host.AvailableStorageCapacity / 1GB
    If ($availableStorage) {
    $availableStorage = $availableStorage.ToString("N") + " GB"
    } Else {
    $availableStorage = "N/A"
    Set-SCCustomPropertyValue -CustomProperty $availableStorageProperty -InputObject $VM_Host -Value $availableStorage
    In my organization, most of the virtual machines use only one disk, but 20% or more of all our virtual machines have two or three disks. That is why the second script checks free space on three disks per machine.
    Of course, it is fairly easy to remove the lines where the script checks the state of the other two disks.
    NOTE: If a Virtual Machine is in an unknown state (deleted configuration or missing in other way), the script returns several errors (six) for that machine. The script is not destructive in any way, it only updates the desired fields (Custom
    Properties).
    Prerequisites for running the script:
    Execution Policy, of course
    Custom Property: "Disk0 FreeSpace"
    Custom Property: "Disk1 FreeSpace"
    Custom Property: "Disk2 FreeSpace"
    Here is the second script.
    Import-Module virtualmachinemanager
    Function Get-FreeSpace {
    param ($disk)
    If ($disk) {
    $disk_freeSpace = $disk.MaximumSize - $disk.Size
    $disk_freeSpace = $disk_freeSpace / 1GB
    $disk_freeSpace = $disk_freeSpace.ToString("N") + " GB"
    } Else {
    $disk_freeSpace = "N/A"
    Return $disk_freeSpace
    $VM_Names = (Get-SCVirtualMachine | Select-Object Name).Name
    $VM_disk0_freeSpaceProperty = Get-SCCustomProperty -Name "Disk0 FreeSpace"
    $VM_disk1_freeSpaceProperty = Get-SCCustomProperty -Name "Disk1 FreeSpace"
    $VM_disk2_freeSpaceProperty = Get-SCCustomProperty -Name "Disk2 FreeSpace"
    ForEach ($VM_Name in $VM_Names) {
    $VM = Get-SCVirtualMachine -Name $VM_Name
    $disk0 = $disk1 = $disk2 = $null
    $disk0 = Get-SCVirtualHardDisk -VM $VM | Select-Object -First 1
    $disk1 = Get-SCVirtualHardDisk -VM $VM | Select-Object -Skip 1 -First 1
    $disk2 = Get-SCVirtualHardDisk -VM $VM | Select-Object -Skip 2 -First 1
    $VM_disk0_freeSpaceValue = Get-FreeSpace $disk0
    $VM_disk1_freeSpaceValue = Get-FreeSpace $disk1
    $VM_disk2_freeSpaceValue = Get-FreeSpace $disk2
    Set-SCCustomPropertyValue -CustomProperty $VM_disk0_freeSpaceProperty -InputObject $VM -Value $VM_disk0_freeSpaceValue
    Set-SCCustomPropertyValue -CustomProperty $VM_disk1_freeSpaceProperty -InputObject $VM -Value $VM_disk1_freeSpaceValue
    Set-SCCustomPropertyValue -CustomProperty $VM_disk2_freeSpaceProperty -InputObject $VM -Value $VM_disk2_freeSpaceValue
    If you have any questions, ask. I'll check in later.
    Cheers!

  • I want to cancel the plan storage space for any icloud Alstraetha

    How canceled storage space for any iClaoud

    Go to Settings > iCloud > Storage & Backup > Change Storage Plan

  • Why do we not receive 5 gb of free cloud storage space for the multiple Apple devices my wife and I have purchased?

    Why do we not receive 5 gb of free cloud storage space for the multiple Apple devices my wife and I have purchased?  Seems only fair.

    logical. fair. I can understand the confusion in policy  as another fine cloud service - DropBox - has a different model for increases in free storage amounts for one account = evangelism. As many policies as there are services probably.
    cya 'round o' kilted one
    CCC

  • I deleted all downloaded songs from my iphone but under Settings/About it still shows songs on my phone. How do I fix this?  I need to use that storage space for other things.

    I deleted all downloaded songs from my iPhone but under
    Settings/About it still shows songs on my phone.
    How do I fix this?  I need to use that storage space for other things.

    First thing to try is to reset your device. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider should one appear until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.

  • How do I manage (i.e., limit) storage space for Messages?

    How can the amount of storage space for Messages be limited and/or managed? Messages are currently taking up nearly 600MB of my iPhone and iPad devices storage space. Deleting old message threads does not appear to reduce it. And I don't consider myself to use messages excessively.

    How can the amount of storage space for Messages be limited and/or managed? Messages are currently taking up nearly 600MB of my iPhone and iPad devices storage space. Deleting old message threads does not appear to reduce it. And I don't consider myself to use messages excessively.

  • Just purchased more storage space for iphone6 but not showing?

    I just purchased more storage space for my iphone6, 20gb, but my backup storage still shows 5gb?  How do I troubleshoot this problem, my credit card info is accurate?

    You cannot install more storage space on an iDevice. If you don't have space on the device to download to it, then you need to delete stuff from it. Buying more cloud space does not do a thing for you unless you store to the cloud and remove from the device.

  • Storage Space with Photo Connector

    Friends,
    I have a 20gb u2 photo iPod. I'm using an ipod photo connector and it seems to only let me store about 2gb of photos when this is still like 12gb of free space on the ipod. What is the go with that?
    Cheers
    empiregordo

    Hello Sean R,
    Do you mean that you want to create a two way mirror storage space with 6TB space?
    Based on my test, I create three VHD, two 4GB VHD and one 8 GB VHD.
    And then try to create a two way mirror storage space. Please take a look at the following screenshot.
    The total pool capacity is only 13.7 GB, so I can create a 8GB storage space with fault tolerant.
    Best regards,
    Fangzhou CHEN
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Not enough free storage space for ios update

    My wife's iPad Air MD786LL/A with 32GB. Running iOS 8.0.2. I bought it for her last year for her birthday to replace her old iPad. She won't give up the old iPad. I keep her iPad Air up to date from time-to-time but when I tried to update the iOS, it said there was not enough free storage space (requires 2.4GB and the iPad Air only has 1.8GB). She also has a MacBook Air running Yosemite and an iPhone 4S on iOS 8.2. The old iPad runs iOS 7 and won't do the multi-device sync with MBA and iPhone (which is why I was trying move her to the  more modern iOS). I need to free up some space on iPad Air.
    Songs: 278
    Videos: 40
    Photos: 7,695
    Apps: 50
    I note that Settings>General>About does not list Books in the list of things on the iPad Air. Why is this?
    Everything syncs to iCloud.
    Q: can I delete photos on the iPad Air without removing them from her MacBook Air or iPhone?
    I note that the iCloud Photos is still Beta. When I went to turn that on, it said that the 7,695 photos would be removed from the other devices. I did not proceed.
    Q: How does one move a book back to the cloud after it has been read? This should free up space.

    See: Update the iOS software on your iPhone, iPad, and iPod touch - Apple Support
    Scroll down to "Update your device using iTunes" and follow those steps.

  • HT204053 I have multiple apple devices, 2x phones ipad etc, but all are through the same email and I only get the storage space for one device, what should I do?

    I have multiple devices all under the same id and email but I don't get multiple icloud storage space and it's running out!
    Can anyone help as I've just bought an iphone for my daughter and would like to link it as well.
    Thanks in anticipation of your help.

    One icloud account gets a 5 GB of storage, regardless of the number of devices connecting to it.  But you're in luck, you can buy more storage for the account if you are running low.
    As for your daughter, be sure to get her own icloud account, otherwise she'll end up getting all your email, contacts, etc.  And if she deletes any of this data, it will be deleted on your devices as well.  Note:  you can all keep using the same ID for the itunes store for sharing purchased items.
    To create a new icloud account, go to
    http://www.apple.com/icloud/setup/

Maybe you are looking for

  • Blank images in web galleries

    Since I upgraded to Mac OS X 10.4.9, when I create a web gallery, I typically end up with 3 or 4 out of 200 images which are all white or partially white. If I export a version using the same settings, it works fine. Has anyone else experienced this?

  • Error occurred during activation of iMessage

    I did the apple update and now my son's iPod is requesting me to fill in the password for our iTunes account to activate Facetime and iMessage.  I fill in the password and it still says there is an error and to try again. Help?

  • I don't get email on my iPad, but I can get it on my laptop so itwifi. How do I retrieve my mail on the iPad?

    I don't get email on my iPad, but I can get it on my laptop so it is not a problem with my wifi. How do I retrieve my mail on the iPad? I used to be able to...

  • Variance due to Two Production Versions

    Dear Experts, I am working for a cement Industry. We are having one FG Material. The material can be produced from two sources (Kinl1 & Kiln2). Every month we produce the material from both the sources. 2 production orders will be created every month

  • Flash won't play in browser, only on local system

    Hi, When I use 'finder' to open and play this SWF, the track plays fine. As soon as I drag the SWF onto my html web page and preview in the browser, it is not functioning, so no sound plays. How do I need to tweak this so it could play? Here are the