Image scaling changes

Before I started here, the team was using FrameMaker 8 and migrating to FM 10. During the migration, we noticed that images in the documents we opened, converting them to FM10, had their image scaling data changed.
Typically, we acquire screen shots using the highest resolution screen supported - mine is currently set at 1440 x 900. We scale the images to a width of 510 pixels (optimally) but no more than 600 pixels in our screen capture utility. We save the screen shots as Grayscale JPEGs. This process has, historically, provided images that fit our text column flow perfectly.
In previous versions of FM, the images imported by reference appeared as 100% scaling in the FM image properties. Now, they appear as 75% scaling. We're wondering why and if there is any effects we need to be aware of in terms of PDF and HTML Help file sizes.
While testing the import process, looking to see if the FM scaling data affected the image size, we saw that the pixel dimensions given by SnagIt varied wildly from the pixel dimensions given by FM. For example, the SnagIt dimensions for one image indicated it was 505x493 pixels whereas FM gave the dimensions of the source file as 507x315 pixels. Both are, as far as I know, giving me the source file dimensions but they are different.
We might not have noticed this, the images looked okay, but we were carefully going through the transition to FM10 and looking at every detail.
Question: why is FM10 auto-scaling the images to 75%?
Question: does this scaling do anything to our output that we need to be aware of?
Question: why do we get two different dimension data from the two software packages?
Thanks,
Wanda

We  save the screen shots as Grayscale JPEGs.
Are the screen images contone (e.g. real-world photos, CGI imagery),
or flat (e.g. dialogs, line art)? JPEG uses curve-matching compression,
which is great for tones that vary smoothly, but introduces nasty ringing
edge artifacts on sharp edges of flat tones.
TIF(zip), uses repeat-count compression, and is both non-destructive to flat
tone images, and often compresses them more efficiently. We use EPS
for the import format (no compression) and let Distiller or Acrobat post
determine the compression to use.
This process has,  historically, provided images that fit our text column
flow perfectly.In  previous versions of FM, ...
What is the target delivery format?
... the images imported by reference appeared as  100% scaling in
the FM image properties. Now, they appear as 75%  scaling.
In case you want to try it, I have never seen imported EPS objects
change size when migrating a document to a later rev of FM.
We import using 96 dpi.
If the target is PC screen display at 100% page size, that's probably a
decent target. PC screen resolutions today probably range from 80 to
110 dpi, and I'd guess that 96 is very close to the sweet spot.
We use (and I favor) bringing in all contone content at 200 dpi or
higher. We bring bitmap (bi-level line art) in at 600. But then our
target media is 600 dpi B&W bitmap on paper. However, we like
to give web readers of the PDFs reasonable detail in images.
Apple's "Retina" crusade is trying to move the industry to 300 dpi
displays. I'd be happy with 200.

Similar Messages

  • VI Method "Front Panel:Get Image Scaled" Memory Error 17

    Hi all, I've got two almost identical sub vi front panels that I'm dumping to a jpg image for reporting purposes.  One was copied and slightly modified from the other to show a different data set and plot.  The original works just fine, but the second sub vi, when using the "Front Panel:Get Image Scaled" method to pass the image to write the jpg, always returns the following error:
    "Error 17 occurred at Invoke Node in Myprogram
    Possible reason(s):
    LabVIEW:  Not enough memory to manipulate image.
    =============================
    NI-488:  Unrecognized command.
    Method Name: Front Panel:Get Image Scaled
    [Continue] [Stop]  "
    I've stripped the problem section into a simple tiny new that only opens the report and tries to get the image with the same working/non-working result above.  Using the Execution Trace Highlighter, it error is definitely occuring when the Method executes.
    Any ideas?  Thanks.

    Hey cjgpr,
        I haven't been able to dig up much info on this error message.  There's one other discussion forum post that talked about it some, and a KnowledgeBase article on it.  It seems that whatever changes you made to the front panel have caused it to exceed your computer's memory when creating an image.  Try removing items until it works, then see what actually breaks the functionality.
    Brian B
    Field Sales Engineer
    Tennessee/Southern Kentucky
    National Instruments

  • Image size changes when moving an image between Lightroom and CC.

    Image size changes when moving an image between Lightroom and CC.
    I opened a .dng image in LR and then opened it in the Develop module.  I clicked on Crop Overlay and then on the ‘As Shot’ drop down menu (the lock is closed) and cropped to 11 x 17 and clicked ‘Done’-.
    I click Cntl-E and the image opens in CC.  There I click on Image > Image Size and the Image Size  is 13.288 inches by 20.533 inches.
    Why does the image size change?
    I believe there is a menu to control the size of the image and I've looked everywhere I can think of in LR and CC, I googled various descriptions and I checked two of Scott Kelby's books, but I just can't figure out how to keep the image a consistent size when moving between LR and CC.
    Help!...Please?

    The penny will drop soon or maybe the cloud will lift.
    In Lightroom all editing is undoable/nondestructive.
    Hence a crop of 3x2 is not inches, centimetres, pixels or anything else. It is jst a ratio. When a file is exported, either to PS or disk, then the crop ratio has size determined in respect of pixels and inches or cms.
    So my 6000x5000 pixel image I will crop to 3x2 that leaves (before exporting) a 6000x4000 file.
    Now when exported it can be set to export at
    100pixels per inch and will end up at 60x40" when printed.
    200pixels per inch will end up at 30x20"
    300ppi will end at 20x13.3"
    You will notice in the Crop Tool there are no size denominations such as inches or centimetres as an image file only has pixels and the determination of size is done through exporting or printing.
    Hope that helps somewhat..

  • Problems with image scaling

    I'm facing a real problem with image scaling
    I've used several algorithms but it all has defects but the most common thing is the out of memory error after several enlargments...
    does any one know a solution...
    note:
    I've used several packages to do so,but I'm looking for a solution from the jdk itself
    JAlexscorpio

    Did you take into account that the getScaledInstance() -method creates a completly new Image?
    So if you use it like in
    ImageIcon icon1=new ImageIcon("Blah.gif");
    ImageIcon icon2=new ImageIcon(icon1.getImage().getScaledInstance(400,400,SCALE_FAST);
    you will end up with 2 different Images which have their own data and memory requirements.
    even if you use something like
    ImageIcon icon1=new ImageIcon("Blah.gif");
    Image i=icon1.getImage();
    icon1.setImage(i.getScaledInstance(200,200,SCALE_FAST));
    You will need enough memory to store the data for the original image, as well as the data for the scaled
    version of the image, at least for the time that it take the JRE to create the scaled version. You never know when the garbage collector kicks in to delete you old data so it could be that this takes some time and until
    that moment your memory is not available. If your now doing several of the scaling operations, and there is no chance for the garbage collector to do its work, you will run out of memory.
    I hope that might help, if not feel free to post again

  • Desktop Image Arbitrarily Changes Upon Reboot From Aurora to Water

    I leave my MacMini on 24/7 and tend to restart only after installing updates or new apps. This past week I must have restarted about 3 times and each time the desktop background image has changed to 'Water' even though it was previously set to 'Aurora'. I change it back and then it's fine, until the next restart.
    I'm at a loss as to what may be causing this. However, I tend to use Back to my Mac a lot (to control my mini desktop through screen sharing on my MBP) and it seems a strange coincidence that my Mini's desktop defaults to the Water background, which just so happens to be the desktop image on my MBP. Weird huh?
    Has anyone else experienced this?

    Alas, this didn't work. I made a copy of the com.apple.desktop.plist and saved a copy onto my desktop. I logged off then back on and Aurora was still there. Great. However, when I restarted my mini it changed to water upon.
    Anyother ideas - thanks.

  • Your disk copy of image was changed since last opened or saved (Mac OS)

    I am  occasionally getting a message that "the disk copy of image  was changed since the file was last opened or saved". The OS is 10.6.6 and I am using CS5. It happens on no specific file. All of my files are pretty big. The current one that this is happening on is a psb that is 3.26 G unflattened. I have from  ignorance always ignored the message and saved anyway. I have never detected any damage or discernible changes to the files after ignoring the warning, but after searching Adobe forum and reading a thread about this happening in CS4, I guess I should be more cautious and do a save as and change the file name. I started this thread because no one has reported the issue happening in CS5.
    The files were all given to me by ftp as either psd, tiff or camera raw files.  I work on duplicates of the originals in no other program but photoshop and opened and closed the files a few times before getting the message about the disk copy being changed. All of my files are saved to an internal harddrive and  backed up on a time capsule device. I am on a network, but am the sole user of the network. The files are  worked on and saved to an internal hard drive on the same computer. They are never opened on another computer which is usually turned off. I am running no virus protection software except what ever is native to the OS. The only other applications I am running when getting this message are safari, mail and sometimes bridge.
    Why am I getting this message and what is causing changes (that I can't detect) to the disk copy?

    Really, damn
    I wonder what it can be. I'm 100% sure its nothing running in the background changing the files in my workflow.
    I checked everything and its funny because it is the same on 3 Mac Pro here ???
    So it must be a bug some where in Adobe's files/apps/etc
    Some combination of files, setup or what ever making the error come up.
    I never had it before i upgraded to 10.6.x Before all Mac Pro was running 10.5.8 with PS CS4 and it worked alright.
    Then i upgraded all our Mac's to the latest to get the 64bit feature and PS CS5 and even the newer CS5.5
    And then it started and its also with the newest PS from CS5.5
    First i thought i found the problem because i saw a post at Extensis forum about the Suitcase FM core and Fontsense
    extension for Photoshop and i deleted the extension from photoshop plugin folder and i was happy at first but then again.
    It came back after a wile.. Sucks. Not that.
    I wonder if its really because PS thinks the image was changed. I know it suppose to be that way but in our situation it is
    something else. A bug ofcause and i have been trying to figure this out the last 3 days and even yesterday i used 7 hours
    in a row to find a solution but i never found it.
    I really hope we can find a way other than reinstalling Mac OS X and Photoshop. I do think if we formatted the drive and
    started all over it would help but i don't want to do that because it will take me for ever to set up from scratch, yarggg
    What do you think ? Do you have any idea whats so ever what could course this ? any ideas

  • ComboBoxRenderer with image scaling

    hi all,
    I would like to know how to make the comboBoxRender with image scaling. Because my combo box is smaller than the image that I want to put inside..
    currently, I "extends JLabel implements ListCellRenderer", but if I call setIcon to the Label, it is not scale to the combo size..., so I think is it need to extends another type of component ?
    Could some of you give me a suggestion , better provide me a simple code.. Many Thanks for help.

    Hi,
    I've extended the Icon framework to support scaling. I never tried it with cell renderers, but maybe it works:
    Extend JXIconLabel, set the zoomingStrategy to FullZooming.RESPECTING_ASPECT_RATIO_INSTANCE and set the XIcon (eg. a XImageIcon).
    Maybe it works. (The library is open source.)
    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JXIconLabel.html
    Homepage:
    http://www.softsmithy.org
    Download:
    http://sourceforge.net/project/showfiles.php?group_id=64833
    Source:
    http://sourceforge.net/svn/?group_id=64833
    http://softsmithy.svn.sourceforge.net/viewvc/softsmithy/trunk/lib/src/org/softsmithy/lib/
    API:
    http://softsmithy.sourceforge.net/lib/docs/api/index.html
    If you have questions just ask me!
    -Puce

  • Image Scaling Percentage

    I am converting from Quark 6.0 to Indesign CS3 and have a comparison question.
    When viewing an image within Quark you can get specifics about the images scaling percent ratio. IE: 100%, Reduced would be obviously 99.99% to 10% or enlarged would be obviously 100.1% to 150%.
    Is there anyway to see that kind of percentage in InDesign. We try to stay under 150% and above 10% for our printer specifications, so it will make things very difficult if we can not view that info like in Quark.
    Any help is greatly appreciated!!

    I guess what I was hoping for is for the % to actually give its configuration from the original 100% instead of saying that it 100% after it has been reduced or enlarged. Between the info and the % it more or less makes sense, but it is not exact and I guess the user has to somewhat guess? Seems like more work for the user.
    Thanks for your help!!

  • Image Quality Changes After First Preview

    I've only been using Aperture for a few weeks but seem to have a problem when I preview any newly imported RAW images.
    After I import any new RAW files, I'll select one for preview and for no more then a second the image looks great. Then all of a sudden the quality/brightness/sharpness reduces in front of me.
    This only happens the once for each image, after that all images remain at this lower quality once previewed.
    It's almost like Aperture is processing the image when I click to preview, but not in a good way.
    It there a setting I should be looking for? I thought Aperture processed the image at the point of import, not when you first preview the image?

    There can be other causes for this effect than are described above.  On the 5DMK3, if you have the in-camera Picture Styles set to anything other than Standard or Neutral, the Picture Style will be applied to the JPEG but Aperture's Raw converter will not apply the Picture Style adjustments when it processes the image.  Thus you will see some kind of shift in colour and/or contrast.
    So either shoot only in JPEG mode if you want the Picture Styles applied to your images, or change the camera Picture Style to Standard or Neutral.

  • s:BitmapImage get image scaled size and position after it loaded and scaled

    I am try to know the dimensions of the uploaded image into <s:BitmapImage without success.
    The data coming back to me are isthe real image size and not size after it was scaled to fit the component size.
    I can see that the image scaled down and fit to the maxWidth, but I can't get the actual/real scaled width from the BitmapIMage properties.
    I tried:
    <s:BitmapImage id="mainBitMap"  ready="mainBitMap_readyHandler(event)" complete="bitmapimage1_completeHandler(event)" source="{data.Thumbnail.URL}" maxHeight="250" maxWidth="250" scaleMode="letterbox"/>
      protected function bitmapimage1_completeHandler(event:Event):void{ 
    trace("----------------------Start-----------------------"); 
    trace("mainBitMap.bitmapData.width" + mainBitMap.bitmapData.width); 
    trace("mainBitMap.width" + mainBitMap.width); 
    trace("mainBitMap.measuredWidth" + mainBitMap.measuredWidth); 
    trace("mainBitMap.displayObject.width" + mainBitMap.displayObject.width); 
    trace("mainBitMap.explicitWidth.width" + mainBitMap.explicitWidth); 
    trace("mainBitMap.preliminaryWidth" + mainBitMap.preliminaryWidth); 
    trace("mainBitMap.sourceWidth" + mainBitMap.sourceWidth); 
    trace("-----------------------End------------------------");
    Result:
    ----------------------Start-----------------------
    mainBitMap.bitmapData.width=435
    mainBitMap.width=0
    mainBitMap.measuredWidth=0
    mainBitMap.displayObject.width=0
    mainBitMap.explicitWidth.width=NaN
    mainBitMap.preliminaryWidth=NaN
    mainBitMap.displayObject.preliminaryWidth=435
    -----------------------End------------------------
    Thanks,
    Nimrod.

    Hi,
    I tried the ready event, But I still receive the same results.
    I expect to get the new scaled width And height according to the maxHeight and MaxWidth.
    I see that the image scaled to fi it But I can't recive the new size of it.
    Thanks,
    Nimrod

  • InDesign CC 2014 very slow performance when dragging images and changing text

    InDesign CC 2014 very slow performance when dragging images and changing text.
    Running on 2010 Macpro 2.4GHz. 8GB RAM. Any solutions? I've read through many forums on this and tried several fixes.

    Have exact same issue on  my Windows 7 machine. Resetting preferences is a workaround.
    So I start InDesign whilst holding down these keys.
    Ctrl + Alt + Shift (Windows) or Cmd + Ctrl + Opt + Shift (Mac)
    Whilst inDesign is usable again with this fix- I have to do it every time so it trashes all my preferences so NOT GOOD long term fix. Otherwise InDesign freezes and can only be stopped by forcing a quit.
    I have manually deleted the preference files and I have created a brand new admin account - but still no luck - will be onto support tomorrow

  • My MacBook Pro (OSX 10.9.4) reboots automatically when opening images or websites with images that change rapidly or when switching rapidly from an image to another or sometimes on slides on Diaporama.

    My MacBook Pro (OSX 10.9.4) reboots automatically when opening images or websites with images that change rapidly or when switching rapidly from an image to another or sometimes on slides on Diaporama.

    Sun Sep  7 10:31:09 2014
    panic(cpu 2 caller 0xffffff7fa0fa4f7c): "GPU Panic: [<None>] 5 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00610210: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff813ad12000 0x0a5480a2, D0, P3/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.6.22/src/Apple MuxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 2), Frame : Return Address
    0xffffff8128feb0b0 : 0xffffff801ec22f79
    0xffffff8128feb130 : 0xffffff7fa0fa4f7c
    0xffffff8128feb200 : 0xffffff7f9f625f1b
    0xffffff8128feb2c0 : 0xffffff7f9f6ef50a
    0xffffff8128feb300 : 0xffffff7f9f8a70e5
    0xffffff8128feb330 : 0xffffff7f9f8a7e10
    0xffffff8128feb370 : 0xffffff7f9f602b10
    0xffffff8128feb490 : 0xffffff7f9f6034ec
    0xffffff8128feb520 : 0xffffff7f9f6008ab
    0xffffff8128feb560 : 0xffffff7f9f60081b
    0xffffff8128feb600 : 0xffffff7f9f62a576
    0xffffff8128feb800 : 0xffffff7f9f62b3f6
    0xffffff8128feb8e0 : 0xffffff7fa05af9c2
    0xffffff8128feb920 : 0xffffff7fa05bf37f
    0xffffff8128feb940 : 0xffffff7fa05ed33b
    0xffffff8128feb980 : 0xffffff7fa05ed39b
    0xffffff8128feb9c0 : 0xffffff7fa05c4e15
    0xffffff8128feba10 : 0xffffff7fa0590b5e
    0xffffff8128febaa0 : 0xffffff7fa058cae7
    0xffffff8128febad0 : 0xffffff7fa058a636
    0xffffff8128febb00 : 0xffffff801f0ce563
    0xffffff8128febb90 : 0xffffff801f0d045f
    0xffffff8128febbf0 : 0xffffff801f0cdf7f
    0xffffff8128febd40 : 0xffffff801ecb6998
    0xffffff8128febe50 : 0xffffff801ec26bc1
    0xffffff8128febe80 : 0xffffff801ec139c5
    0xffffff8128febef0 : 0xffffff801ec1e013
    0xffffff8128febf70 : 0xffffff801ecc9b8d
    0xffffff8128febfb0 : 0xffffff801ecf3f66
          Kernel Extensions in backtrace:
             com.apple.nvidia.classic.NVDAResmanTesla(8.2.4)[D61B2BB9-4289-318D-9197-5E1E13B 1FF32]@0xffffff7f9f5d6000->0xffffff7f9f83efff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[4662B11D-2ECA-315D-875C-618C97CDAB2A]@0xffffff 7f9f2be000
                dependency: com.apple.iokit.IONDRVSupport(2.4.1)[D41125CE-69BD-32E7-9B1D-4E83431662DD]@0xff ffff7f9f5c6000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[75D81741-64C1-3941-ADFA-9D6B6C434EE4]@0 xffffff7f9f583000
             com.apple.driver.AppleMuxControl(3.6.22)[32862231-50BC-3AF6-87A2-703321AE4F90]@ 0xffffff7fa0f96000->0xffffff7fa0fa9fff
                dependency: com.apple.driver.AppleGraphicsControl(3.6.22)[AA46D551-BE0F-33DA-93A3-8F46197BB 36F]@0xffffff7fa0f8e000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[045D5D6F-AD1E-36DB-A249-A346E2B48E54]@0xfffff f7f9f52b000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[4662B11D-2ECA-315D-875C-618C97CDAB2A]@0xffffff 7f9f2be000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[75D81741-64C1-3941-ADFA-9D6B6C434EE4]@0 xffffff7f9f583000
                dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[E04639C5-D734-3AB3-A682-FE66694C66 53]@0xffffff7fa0f91000
             com.apple.nvidia.classic.NVDANV50HalTesla(8.2.4)[B0E6AAA7-E970-3D81-8B43-145D56 A3A4AC]@0xffffff7f9f849000->0xffffff7f9faf2fff
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(8.2.4)[D61B2BB9-4289-318D-9197-5E1E13B 1FF32]@0xffffff7f9f5d6000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[4662B11D-2ECA-315D-875C-618C97CDAB2A]@0xffffff 7f9f2be000
             com.apple.GeForceTesla(8.2.4)[E0EBC5ED-DC61-3C57-BCCE-0478C0566F4F]@0xffffff7fa 056f000->0xffffff7fa0639fff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[4662B11D-2ECA-315D-875C-618C97CDAB2A]@0xffffff 7f9f2be000
                dependency: com.apple.iokit.IONDRVSupport(2.4.1)[D41125CE-69BD-32E7-9B1D-4E83431662DD]@0xff ffff7f9f5c6000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[75D81741-64C1-3941-ADFA-9D6B6C434EE4]@0 xffffff7f9f583000
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(8.2.4)[D61B2BB9-4289-318D-9197-5E1E13B 1FF32]@0xffffff7f9f5d6000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: BBFADD17-672B-35A2-9B7F-E4B12213E4B8
    Kernel slide:     0x000000001ea00000
    Kernel text base: 0xffffff801ec00000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 510740864359
    last loaded kext at 323988531917: com.apple.filesystems.msdosfs 1.9 (addr 0xffffff7fa10c2000, size 65536)
    last unloaded kext at 409214035879: com.apple.filesystems.msdosfs 1.9 (addr 0xffffff7fa10c2000, size 57344)
    loaded kexts:
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.driver.AppleUSBCDCECMData 4.2.1b5
    com.apple.driver.AGPM 100.14.28
    com.apple.driver.AppleUSBCDC 4.2.1b5
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.GeForceTesla 8.2.4
    com.apple.driver.AppleMikeyDriver 2.6.3f4
    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleMuxControl 3.6.22
    com.apple.driver.AppleIntelHDGraphics 8.2.4
    com.apple.driver.AppleIntelHDGraphicsFB 8.2.4
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 325.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.AppleUSBCardReader 3.4.1
    com.apple.iokit.SCSITaskUserClient 3.6.6
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.AppleFWOHCI 5.0.2
    com.apple.driver.AirPort.Brcm4331 700.20.22
    com.apple.iokit.AppleBCM5701Ethernet 3.8.1b2
    com.apple.driver.AppleUSBEHCI 660.4.0
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 217.92.1
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.driver.AppleIntelCPUPowerManagement 217.92.1
    com.apple.driver.AppleUSBCDCECMControl 4.2.1b5
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.nvidia.classic.NVDANV50HalTesla 8.2.4
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.AppleGraphicsControl 3.6.22
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.nvidia.classic.NVDAResmanTesla 8.2.4
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.iokit.IOBluetoothFamily 4.2.6f1
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.AppleUSBMultitouch 240.9
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.6.6
    com.apple.iokit.IOUSBMassStorageClass 3.6.0
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.6.6
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.6
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IO80211Family 640.36
    com.apple.iokit.IOEthernetAVBController 1.0.3b4
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOUSBFamily 683.4.0
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1
    System Profile:
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 8 GB, SMC 1.58f17
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353237334348302D4346382020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353237334348302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.6f1 14216, 3 services, 15 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: TomTom, Ethernet, en3
    Serial ATA Device: Hitachi HTS725050A9A362, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Hub
    USB Device: TomTom
    USB Device: Built-in iSight
    USB Device: IR Receiver
    USB Device: Hub
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: Internal Memory Card Reader
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    Thunderbolt Bus:

  • I save my images to my hard drive then pull them into lightroom.  Now when I do this my images are changing- they look like I've added a preset but all I have done is imported them.  Can anyone help me with this?

    My images are changing once I import them into lightroom.  Initially they look the same as BOC then it changes image by image as if it is adding a preset.  I am not aware of any changes I have made to the program. 

    I'm not sure how that changed, but I am so grateful for your knowledge!!!  thank you, thank you, thank you!!!!!!!

  • OS 10.8.3 - Desktop Image keeps changing randomly

    Desktop image keeps changing randomly even though this option is not checked. Any ideas how to stop this glich?

    Welcome to the Apple Support Communities
    Try deleting the Desktop settings file. First, open Finder, select Go menu (on the menu bar) > Go to Folder, and tyep ~/Library/Preferences. Then, delete "com.apple.desktop.plist" and "com.apple.systempreferences.plist", and restart. Finally, see if your desktop changes

  • Error 53 : BD.Get Image Scaled

    Hi,
    I used invoke node(method block diagram:get image scaled) to get a screenshot of block diagram of a VI. It works well in LabView 8.6. But with the application built based on the VI, I got a 53 error code. Any suggestion?

    >>"Built" as in built into an .exe file?
    >>
    >>If
    so, you can't get an image of the block diagram because the block
    diagram is removed from the VI's when they are built into the
    executable.  The only thing present is any needed front panels, and the
    underlying compiled code that is built from the block diagram.
    >>
    >>For what reason do you want to capture an image of the block diagram?
    1. Yes, it is a .exx file.
    2. The application is used to generate screenshot of a user specified VI, not a VI built into the executable.

Maybe you are looking for

  • A library program for negative exponents.

    Ok im looking to create a program that can take a number and take that number to a negative exponent. such as this 2^(-2) = .25 this is what i would like to accomplish. heres what i have. public static double power(double base, double expo) //return

  • Export of public synonym in oracle

    Hi All, I am trying to export the database dump in oracle 10g using expdp command.But when I am trying to import that file i found that public synonym are missing. Can anyone help me its very urgent. expdp system/oracle directory=export dumpfile=<<x.

  • Photoshop Elements 8 Licencing Problem

    Photoshop Elements 8 (s/n 1057-1463-2368-0256-2492-2362) has only ever been installed on 2 machines; one was my current laptop Computer which suffered a HD crash, but no problem, I still had a third licence left unused. In late December the same HD f

  • MacBook 5.1 Safari will not load

    I'm having trouble loading Safari on my MacBook 5. Before this morning I had no issues. Today when I attempt to pull up a Safari browser my entire computer locks up. If I have the Force Quit open I can cancel the browser. If not, I can't even select

  • Acrobato Pro 6 fails upgrade to 6.0.1 - PreFlightLib.dll

    Hi everyone, I'm trying to upgrade an Acrobat Pro 6.0.0 to 6.0.1 (manual upgrade). The problem happens during the "Copy new files" operations. I receive the following error: "Error 1334. The file 'PreFlightLib.dll1' cannot be installed because the fi