Images resized from Intel to PPC Using Motion 3

Hey guys, I'm having a reoccurring issue. I work on an animation using still images doing basic ken burns animations with some masks. However when I open the same exact project on my Dual G5 Power Mac which has the same version of Motion. the images get re sized and the mask's are displaced. I originally create the animation on an intel Power Mac. I know it's something with the intel-PPC thing because when I open the same project on my intel Mb Pro it looks the same as the Intel Power Mac. I have all the preferences set to default except turning off the setting to automatically re-size large images in the preferences. Any thoughts?

if you watch the scale of your objects in the media tab does that change?

Similar Messages

  • Wanting to use Photoshop CS6 to open images directly from iPhoto 11. Using OSX10.8.2 and iPhoto 11.  Just installed Photoshop CS6 and want to open images directly from iPhoto.    Before I installed PS I was not able to edit photos in iPhoto 11.  Nothing

    Wanting to use Photoshop CS6 to open images directly from iPhoto 11.
    Using OSX10.8.2 and iPhoto 11.  Just installed Photoshop CS6 and want to open
    images directly from iPhoto.    Before I installed PS I was not able to edit photos
    in iPhoto 11.  Nothing happens when I click on ‘edit‘ it is blank. 
    And now it will not work using Photoshop CS6 either.
    From Help Center I have gone to iPhoto/Preferences/ Advanced and chosen Photoshop CS6  to Edit Photos but then cannot find an 'Open' to click? Perhaps this is the problem?
    When I select a photo in iPhoto and click the Edit button - nothing happens.
    Please advise. Glenys

    This may be of help to you:
    Using Photoshop or Photoshop Elements as Your Editor of Choice in iPhoto.
    1 - select Photoshop or Photoshop Elememts as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop.  When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done. 
    3 - however, if you get the navigation window
    that indicates that  PS wants to save it as a PS formatted file.  You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    NOTE: With Photoshop Elements  the Saving File preferences should be configured as shown:
    I also suggest the Maximize PSD File Compatabilty be set to Always.  In PSE’s General preference pane set the Color Picker to Apple as shown:
    Note:  to switch between iPhoto and PS or PSE as the editor of choice Control (right)-click on the thumbnail and select either Edit in iPhoto or Edit in External Editor from the contextual menu. If you use iPhoto to edit more than PSE re-select iPhoto in the iPhoto General preference pane. Then iPhoto will be the default editor and you can use the contextual menu to select PSE for your editor when desired.
    OT

  • Burning disk from Intel or PPC, is there a difference when booting?

    Hi,
    I have a Intel iMac and a PPC PowerBook G4.
    I have an .iso of my OS X Leopard 10.5 DVD (backup copy) that I want to burn using Disk Utility on a DL DVD, then use it to install Leopard on the PowerBook G4.
    I already have done a .iso file from the disk.
    OS X Leopard 10.5 is Intel and PPC compatible, from the same disk.
    Question:
    -If I do the process of burning the .iso to a DL DVD from a Intel iMac, will it only boot from an Intel Machine?
    -If I burn the .iso from the PowerBook G4 under 10.4, will it boot on the PowerPC?
    Burn ISO’s using Disk Utility
    Insert a blank disc.
    Start Disk Utility (/Applications/Utilities/Disk Utility.app)
    From the File menu, choose “Open Disk Image” and select the ISO you want to burn
    In the list of volumes, select ISO file.
    Click the Burn button and follow the instructions.
    Thanks,

    The point is not regarding whether I should have a backup of my OS X disk, but rather to understand how boot disk are made with regards to the Intel PowerPC nuance.
    This applies also if I wanted a boot disk to run some utilities. I would like to burn it and make sure the disk boot on the correct hardware.
    I would like to understand if it matters on which machine (Intel) you burn the disk, if it will be used on the different hardware (PowerPC).

  • Image resize : loss of quality by using Java API. What's wrong ?

    We actually have a problem with the resizing of pictures.
    We use jdk 1.4.2.
    We are trying to transform some picture from approx. 2000*1600 to 500*400.
    The result is poor (loss of colors, blur ...)
    We use an affineTransform and some renderingHints.
    There is actually no effect when we change the renderingHints parameters. Why ?
    Here's the code we use:
    import java.awt.geom.AffineTransform;
    import java.awt.image.*;
    import java.io.*;
    import javax.imageio.ImageIO;
    import java.awt.*;
    import javax.swing.*;
    public class Jpeg
        public Jpeg()
        // i  = la largeur de l'image redimensionner
        // s  = le chemin d'acces � l'image original
        // s1 = le chemin d'acces � l'image retaill�e
        public boolean resize(int i, String s, String s1)
           try
                File file  = new File(s);
                File file1 = new File(s1);
                //Parametrage de la lecture
                ImageIO.setUseCache (true);
                BufferedImage src = ImageIO.read(file);
                double d  = src.getWidth();
                double d1 = src.getHeight();
                double d2 = i;
                double d3 = d2 / d;
                if(d1 * d3 > d2)
                    d3 = d2 / d1;
                if(d3 > 0.8D)
                    d3 = 1.0D;
                int j = (int)(d * d3);
                int k = (int)(d1 * d3);
             AffineTransform  tx = new AffineTransform ();
                tx.scale (d3, d3);
                RenderingHints  rh = new RenderingHints (RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
                rh.put (RenderingHints.KEY_ALPHA_INTERPOLATION, RenderingHints.VALUE_ALPHA_INTERPOLATION_QUALITY);
                rh.put (RenderingHints.KEY_COLOR_RENDERING, RenderingHints.VALUE_COLOR_RENDER_QUALITY);
                rh.put (RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BICUBIC);
                rh.put (RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_QUALITY);
                rh.put (RenderingHints.KEY_STROKE_CONTROL, RenderingHints.VALUE_STROKE_PURE);
                rh.put (RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
                AffineTransformOp  op    = new AffineTransformOp (tx, rh);
                BufferedImage      biNew = new BufferedImage (j, k, src.getType ());
                op.filter(src, biNew);
                ImageIO.write (biNew, "jpg", new File (s1));
            catch (Exception  e)
                e.printStackTrace ();
                return  false;
            return  true;
        public static void main(String args[])
            Jpeg jpeg = new Jpeg();
            jpeg.resize (Integer.parseInt (args [0]), args[1], args[2]);
    }Here's the original picture http://193.252.12.20/bugimage/14457.jpg
    Here's the resized picture http://193.252.12.20/bugimage/bur.jpg
    Here's the paintshop pro resized picture http://193.252.12.20/bugimage/psp.jpg
    Is there another way to resize pictures ?
    Can we have a better result by using jdk 1.5.0 ?
    Thanks for your help.

    Nothing wrong - it's a feature :).
    "Loss of colours" is connected with Java embedded JPEG decoder. If you transcode to for example PNG format using any image processing program and then resize using Java then colors will be OK.
    "Blur..." is connected with bad implementation of interpolation algorithms in JDK/JRE and can't be fixed :)
    I'm close to finish developing own resizing library which produced the next results from your image (it's a very good image to test). "from_png" means that the source image is PNG.
    <b>Box interpolation</b> (also known as nearest neighbour, but it's the honest implementation, not JDK fake):
    http://www.chainline.com/Box.jpg
    http://www.chainline.com/Box_from_png.jpg
    Well-known <b>Lanczos 3</b>:
    http://www.chainline.com/Lanczos_3.jpg
    http://www.chainline.com/Lanczos_3_from_png.jpg
    Not-well-known <b>Ideal 5S</b> but one of the most qualified:
    http://www.chainline.com/Ideal_5S.jpg
    http://www.chainline.com/Ideal_5S_from_png.jpg
    And 2 interesting s.c. "sharp" filters which make the result sharpen:
    <b>Sharp Light 5</b>:
    http://www.chainline.com/Sharp_Light_5.jpg
    http://www.chainline.com/Sharp_Light_5_from_png.jpg
    <b>Sharp 5</b>:
    http://www.chainline.com/Sharp_5.jpg
    http://www.chainline.com/Sharp_5_from_png.jpg

  • Question migrating system from Intel to PPC

    I have a quick question, and after doing some searching here I have not come across this. I have a 2GHz Core Duo iMac currently running Leopard, I recently acquired a 2.3GHz Dual Core PPC G5. Now most of my production apps are not native under Intel so run under Rosetta.
    Turns out the G5 is faster than the iMac and therefore I want to Migrate my system from the iMac to the G5. Both have Leopard running but can I use the Apple's Migration Assistant to transfer all the files and settings from the iMac to the G5?
    Thanks in advance for any help

    Hi
    Use this guide:
    http://discussions.apple.com/thread.jspa?threadID=435350
    It works both ways, basically eliminating the need to use Migration Assistance, which quite a number of posts here reported "poor results" when they use Migration Assistance to move their data from one platform to another.
    Use the guide and move all your data files across, some preferences and keychain etc. Best you fresh-install all your applications in the G5, instead of moving the apps across, because sometimes some installation put components in multiple locations in your mac
    Cheers

  • How do install Leopard from intel to ppc by Firewire?

    Can anyone tell me how to install Leopard from my intel macbook to my older ppc? When I try to install from firewire it says that the drive is going to GUID and non-bootable. My DVD drive on the PPC isn't good enough for the Leopard DVD. Any suggestions are appreciated.

    I'm not commenting on whether the type of Mac is compatible with the Leopard install.
    I'll offer suggestion for the firewire install. The objective is to take the Leopard DVD and transfer in some way to a firewire drive to be able to boot a PPC Mac and complete a Leopard install to the PPC Mac.
    How? Take a firewire external drive and partition it in two. One for your data and the other (7.2 gigs) max, for the ability to restore the Leopard DVD to that smaller partition. Once restored you'll be able to boot(using system startup control panel) and install Leopard to a PPC Mac.
    The rule to follow is to use APM ie Apple Partition Map to boot PPC Macs. GUID mapping is for intel Macs. You use options within Disk Utility ti select which way to go. You cannot have both on one firewire hard drive. I use two firewire hard drives: one APM and the other GUID.
    How to setup the small partition? Connect firewire drive to your PPC Mac. Open disk utility. Create your two partitions(remember when you do this the drive is formatted and all data is gone, so backup first). Remember to use option and select APM, although on a PPC Mac it should be by default and ditto if on an intel Mac for GUID. Once the partitioning is complete, select Restore and while using the left hand column(just read the instruction in the disk utility window) and assuming you now have the Leopard DVD on the desktop , drag the install OSX section from the left hand column to "source" and then drag the Leopard small partition from the left hand column to "destination." Wait 20 minutes and you are completed. Now you can boot from the firewire drive and install Leopard to a PPC Mac.

  • How do I copy iPhoto 7.1 Library from Intel to PPC Mac and back

    Hello all
    I apologize for the long first post; but I've been lurking for a while and haven't seen a similar problem. Any assistance would be greatly appreciated.
    I have two Macs - a PowerBook G4 and an Intel Mini. I copied the 6.x Library from the PB to the Mini. The copy was successful - no issues. I upgraded iLife on both machines successfully: both machines opened the 6.x Library and updated it the 7.0.1 Package Library. All was well.
    I updated both machines to iPhoto 7.1. All was well.
    I updated the PB to 7.1.1 + all the recent updates. All was not well! The Library seemed to be corrupted! When I clicked on a thumbnail I would see the photo "zoom" but then I'd see a black window. Clicking again would unzoom and I'd again see all the thumbnails. If I tried to export a photo Preview couldn't view it because it was "corrupt" or should be opened by another application.
    After numerous troubleshooting steps - repairing permissions, deleting preferences, trying to rebuild the thumbnail caches, rebuild the Library, recover lost photos etc I gave up.
    I've wiped the PB clean and installed Leopard and iPhoto 7.1 - not 7.1.1.
    Now I want to copy the iPhoto Library from the Mini (also iPhoto 7.1). I tried copying the package across the network by "Connect to server" in Finder but that produced the same "corrupted" symptoms. (Thumbnails would zoom to black window.)
    So here's the question(s):
    Are there any incompatibilities between Intel/G4 versions of the iPhoto apps or Library Packages?
    What is the best way to manually copy the Library from the Mini to the PB? And back?
    I use the PB on the road and on vacation to capture my 'photos; but I like to display them on my HDTV connected to my Mini - hence my need to periodically copy the Library from the PB to the Mini.

    **boojum**
    Welcome to the Apple Discussions.
    Are there any incompatibilities between Intel/G4 versions of the iPhoto apps or Library Packages?
    No.
    What is the best way to manually copy the Library from the Mini to the PB? And back?
    Try using Firewire target mode.
    Regards
    TD

  • Time Machine restore from Intel Macbook to G5 PPC 2.0ghz not working?

    Not sure if it has to do with the fact that I'm going from Intel to PPC or if my MacBook had all the latest Apple updates and the PPC does not (no network connect at the moment.) It can see all the backups in my Time Machine drive when running the Time Machine app, but when I go to Restore From Time Machine Backup in the Utilities menu on the Leopard boot, or when I tried to create my user account for the first time in Leopard, it would not see my Time Machine backups on the other drive.
    So am I thinking it's becuse I'm going from Intel to PPC or do I need the latest updates from Apple on my PPC or could it be something else?
    I could just manually copy all the files over, but I'd like to avoid that, as I liked all my settings &tc. Thoughts?
    Message was edited by: Feedmittens

    Welcome to Apple Discussions:
    AFAIK, you can only restore a TM backup onto an identical (or nearly so) computer. I don't think the Intel backup will work at all on a PPC. The drive partitions schemes are incompatible - GUID vs APM and none of the drivers or other hardware-related software components will work, not to mention many of the Intel-only apps.
    The best you can do in install Leopard on the PPC and see if you can migrate from the TM backup.

  • Newbie to LR3 - Local sharpen after image resize ?

    Maybe someone can point me to help. I just post to web on Flickr, no printing yet.
    I started photo editing with PSE5 & have moved to PSE8 since. A Mark Galer book about PSE started me on a path of .raw editing & i've been using his scheme since. I hoped i was moving to a smoother overall process with LR3, but now that i've gotten it i have a lot more doubts. I can see improves through the develop phase (sort of a curves, grad filter, noise removal, lens correction). After that, i feel only lacks (with my current low knowledge level).
    The things i want included past develop are these: image resize, local sharpening (and blurring - after image resize) smooth border capability (with choice of color). One way of course is to export to PSE8. I expected more from LR3, though - rather than just 2/3 of a job for 3 * the price.

    Pete Marshall pointed out one of the quickest resources for information on using Lightroom's tools, but that's not a tutorial! LR is best learned using one or more of the on-line tutorials or LR books available......and then using it! Lightroom's non-destructive workflow has been tailored to fit the specific needs of the "digital photographer" for processing Camera RAW image files. Photoshop has a vast arsenal of both destructive and non-destructive tools for general image processing, but with no specific focus on usage.
    Everything you stated in your last sentence can be done very easily in LR, but using an entirely different workflow organization than Photoshop.
    The things i want included past develop are these: image resize, local sharpening (and blurring - after image resize) smooth border capability (with choice of color). One way of course is to export to PSE8. I expected more from LR3, though - rather than just 2/3 of a job for 3 * the price.
    1) image resize, local sharpening (and blurring - after image resize) - This can be done using the LR Export function and adjusting 'Image Size,' and 'Output Sharpening.' NO, it is not the same methodology as Photoshop. NO, it is not as flexible. YES, it does a very nice job with the vast majority of "digital camera image files," once you get used to a different workflow.
    2) smooth border capability (with choice of color) - This can be done using LR's 'Slideshow', 'Print', and Web Modules, choosing the one most appropriate for your target usage. NO, it is not the same methodology as Photoshop, but it does a very nice job on the majority of "digital camera image files." LR also offers multi-media functions that are unavailable in PS.
    In the final analysis you need to learn LR's non-destructive workflow procedures, editing tools and module functions, as a compliment to what you already know about using Photoshop. The two applications are mutually independent, but play together well when needed.

  • Image capture from avi vfw device can't find video modes

    Hello
    Here my issu, i have implemented image capture from a video device using jmf 2.1.1e performancepack, using a webcam everything is fine but when i use the video capture source i want to use i can only work with format 720x480 pal and i require 720x576 pal.
    jmf seem not to reconize video format from this source, but the video is correcty displayed and image correctly captured. I'm surprised it is half working:decoding&render is ok to but not format choice.
    I have check it is not because i'm in ntsc mode (ntsc is 720x480) because my analogic source is pal and color are correct (if with device software i change to ntsc mode i have a black&with but using jmf i'm in color so i'm in pal mode)
    Difference bettween the webcam and my device is that my device is an avi encoder so in jmf webcam is javax.media.format.YUVFormat and my device com.sun.media.format.AviVideoFormat
    i have tried many thing:
    install codec pack (divx6, another codec pack)
    try to use Fobs4JMF
    register in JMStudio IBMdecoder, jffmpeg
    Tanks for any help
    the device support many configuration UYVY 235x288 352x576 .... 720x576 but JMF offer only 1 video mode for this device.
    here in jmf my capture device info:
    Name = vfw:Microsoft WDM Image Capture (Win32):0
    Locator = vfw://0
    Output Formats---->
    0. com.sun.media.format.AviVideoFormat
    UYVY, 720x480, Length=691200 0 extra bytes
    and with a web cam:
    Name = vfw:Microsoft WDM Image Capture (Win32):0
    Locator = vfw://0
    Output Formats---->
    0. javax.media.format.YUVFormat
    YUV Video Format: Size = java.awt.Dimension[width=640,height=480] MaxDataLength = 460800 DataType = class [B yuvType = 2 StrideY = 640 StrideUV = 320 OffsetY = 0 OffsetU = 307200 OffsetV = 384000
    1. javax.media.format.RGBFormat
      RGB, 160x120, Length=57600, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=480, Flipped
    2. javax.media.format.RGBFormat
      RGB, 176x144, Length=76032, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=528, Flipped
    3. javax.media.format.RGBFormat
      RGB, 320x240, Length=230400, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=960, Flipped
    4. javax.media.format.RGBFormat
      RGB, 352x288, Length=304128, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=1056, Flipped
    5. javax.media.format.RGBFormat
      RGB, 640x480, Length=921600, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=1920, Flipped
    6. javax.media.format.YUVFormat
      YUV Video Format: Size = java.awt.Dimension[width=160,height=120] MaxDataLength = 28800 DataType = class [B yuvType = 2 StrideY = 160 StrideUV = 80 OffsetY = 0 OffsetU = 19200 OffsetV = 24000
    7. javax.media.format.YUVFormat
      YUV Video Format: Size = java.awt.Dimension[width=176,height=144] MaxDataLength = 38016 DataType = class [B yuvType = 2 StrideY = 176 StrideUV = 88 OffsetY = 0 OffsetU = 25344 OffsetV = 31680
    8. javax.media.format.YUVFormat
      YUV Video Format: Size = java.awt.Dimension[width=320,height=240] MaxDataLength = 115200 DataType = class [B yuvType = 2 StrideY = 320 StrideUV = 160 OffsetY = 0 OffsetU = 76800 OffsetV = 96000
    9. javax.media.format.YUVFormat
      YUV Video Format: Size = java.awt.Dimension[width=352,height=288] MaxDataLength = 152064 DataType = class [B yuvType = 2 StrideY = 352 StrideUV = 176 OffsetY = 0 OffsetU = 101376 OffsetV = 126720[/i]

    I have find some information at l'article http://archives.java.sun.com/cgi-bin/wa?A2=ind0111&L=jmf-interest&P=22779
    but i didn't find "sample programs on the JMF Solutions page" which is about VFWDeviceQuery
    so i have trouble with point 2 so this article.
    I have try to rewrite VFWDeviceQuery:
    i just have add dimension 720x576 and "UYVY" in the variable declaration, then compile and replace VFWDeviceQuery .java in jmf.jar in but it is not working)
    I miss information on what to do on VFWDeviceQuery to try more
    About jmf soucre file, i have used the source file jmf-2_1_1e-scsl-src but i have some package missing such as com.ibm.media.codec.audio.BufferedEncoder ...
    so i can't use debugger on all jmf package and check how VFWDeviceQuery is working.
    if someone have information about please help me:
    - "sample programs on the JMF Solutions page" about VFWDeviceQuery
    - how to rewrite VFWDeviceQuery to support UYVY
    - how to compile entier jmf source files
    V.

  • Export image sequence from AS flash file

    Hello:
    I am new to flash I am using flash professional 8 and
    publishing at version 6 (although I can publish to any version for
    this issue). I am using ActionScript 2.0 and am animating objects
    using code instead of tweens. I need to export the animation out as
    separate frames. I need the image sequence from the flash to use in
    other applications and other uses. If anyone has any idea on how to
    do this I'd appreciate knowing. I'd prefer to not have to buy more
    software of course but if that is the case and it is the best way
    let me know.
    Thanks in advance.

    The latest Flash CC 2014 release has an export to SVG option, which exports the current frame as SVG. There is no direct way to export the entire animation as SVG sequence though.
    You can find more details @ Flash Professional Help | New features summary
    -Dharmendra

  • Problem making a intel Net Install Image on 10.4.10 PPC Server

    I am working on building a new netinstall image for my incoming intel power pros. I get and "error has occured" when I target boot my intel machine to my server or when I try an use a clone on an external drive.
    below is the error log from System Image Utility. Is my image to big (92 GB)? or is my intel/ppc server not compatible?
    TIA,
    -Dan
    2007-08-02 13:23:31 -0500 Initiating user authentication
    2007-08-02 13:23:36 -0500 Starting image creation
    2007-08-02 13:23:36 -0500 hdiutil: create: -size/-sectors/-megabytes cannot be bigger that -stretch.
    Usage: hdiutil create <sizespec> [options] <imagepath>
    hdiutil create -help
    hdiutil:
    2007-08-02 13:23:36 -0500 attach failed - No such file or directory
    2007-08-02 13:23:39 -0500 hdiutil: create: -size/-sectors/-megabytes cannot be bigger that -stretch.
    Usage: hdiutil create <sizespec> [options] <imagepath>
    hdiutil create -help
    2007-08-02 13:23:39 -0500 can't add repository (not a directory).
    2007-08-02 13:23:39 -0500 couldn't find any valid bundles to archive
    2007-08-02 13:23:39 -0500 can't add repository (not a directory).
    2007-08-02 13:23:39 -0500 couldn't find any valid bundles to archive
    2007-08-02 13:23:39 -0500 can't add repository (not a directory).
    2007-08-02 13:23:39 -0500 couldn't find any valid bundles to archive
    2007-08-02 13:24:07 -0500 /System/Library/Extensions/ACard62xxM.kext/Contents/MacOS/ACard62xxM doesn't contain code for the architecture specified; skipping the kext that contains it
    2007-08-02 13:24:07 -0500 /System/Library/Extensions/ACard67162.kext/Contents/MacOS/ACard67162 doesn't contain code for the architecture specified; skipping the kext that contains it
    ..... about a thousand lines like this.....
    /System/Library/Extensions/System.kext/PlugIns/Mach.kext/Mach doesn't contain code for the architecture specified; skipping the kext that contains it
    /System/Library/Extensions/System.kext/PlugIns/System6.0.kext/kernel.6.0 doesn't contain code for the arc
    2007-08-02 13:24:09 -0500 hitecture specified; skipping the kext that contains it
    /System/Library/Extensions/System.kext/PlugIns/Unsupported.kext/Unsupported doesn't contain code for the architecture specified; skipping the kext that contains it
    cp:
    2007-08-02 13:24:24 -0500 /Volumes/280GBImaging/Library/NetBoot/NetBootSP0/Image_50008021323.nbi/mnt/machkernel: No such file or directory
    cp:
    2007-08-02 13:24:24 -0500 /Volumes/280GBImaging/Library/NetBoot/NetBootSP0/Image_50008021323.nbi/mnt/machkernel: No such file or directory
    hdid:
    2007-08-02 13:24:24 -0500 attach failed - No such file or directory
    /usr/bin/lipo:
    2007-08-02 13:24:24 -0500 can't open input file: /Volumes/280GBImaging/Library/NetBoot/NetBootSP0/Image50008021323.nbi/mach.macosx (No such file or directory)
    2007-08-02 13:24:24 -0500 Unmounting image...
    2007-08-02 13:24:24 -0500 Error creating Image. This image is not usable
    Log saved in the user's home folder as /Users/administrator/Library/Logs/SystemImageUtility(2007-08-02 13:24).log
    2007-08-02 13:24:24 -0500
    Click New Install or New Boot button in the toolbar to create another image
    Message was edited by: dmccoy26

    Looks like I spoke too soon. After making the modification things went fine for a while but then I got
    --------- snip
    2007-08-22 09:55:03 -0400 mv: rename /Volumes/Storage/Library/NetBoot/NetBootSP2/Image_4708220938.nbi/NIUReservedSys tem.z.dmg to /Volumes/Storage/Library/NetBoot/NetBootSP2/Image_4708220938.nbi/mnt/System/Ins tallation/Packages/System.dmg: No such file or directory
    2007-08-22 09:55:03 -0400 Can't open perl script "/tmp/create_nidb": No such file or directory
    2007-08-22 09:55:03 -0400 cp: /Volumes/Storage/Library/NetBoot/NetBootSP2/Image4708220938.nbi/mnt/machkernel: No such file or directory
    cp: /Volumes/Storage/Library/NetBoot/NetBootSP2/Image4708220938.nbi/mnt/machkernel: No such file or directory
    hdid: attach failed - No such file or directory
    2007-08-22 10:24:14 -0400 Unmounting image...
    2007-08-22 10:24:14 -0400 Error creating Image. This image is not usable
    Not sure if it's a related issue, but I was able to make an image of an Intel machine a couple of days ago... haven't applied any updates since. The obvious difference for me is that what I'm trying here is a G5.
    /Volumes/Storage/Library/NetBoot/NetBootSP2/Image_4708220938.nbi/NIUReservedSyst em.z.dmg which the first error claimed did not exist, does. Anybody else have any luck using this modification?
    I can't believe they'd put an arbitrary limit of 50GB on creating an image. I can find no mention of any such limit in the System Image and SW Update pdf. Well, one for tech support I guess.
    Message was edited by: Sean Murphy3 -- didn't read the log properly first time.

  • Can I use same USB drive for Intel and PPC backup?

    Hi, I have a USB hdd that was used for TV recording but failed on that so I reformatted it as Mac OS extended journaled with 6 partitions (GUID), and using SuperDuper, cloned Lion from a Macbook Air and Tiger from my eMac into different partitions, with the idea of using it as an extra backup.
    Tested the USB drive on Disk Utility verify disk function and it said all 6 partitions appear OK. Can boot the MBA from the USB drive (although slow) but the eMac does not show the disk image on the USB drive as an optional restart item.  I have eMac backed up on a separate Firewire drive but would like to use the USB drive as a second line of defense.
    My question is, would I be able to restore from the Tiger dmg on the USB drive, given that it is GUID and not Apple partition scheme. Would I have to reformat it to Apple partition scheme. Also, how would you go about a restore  from the USB drive if the eMac's OS was kaput?

    You can't store a clone of an Intel-based Mac and a clone of a PowerPC-based Mac on the same drive.
    That's because an Intel-based Mac can start from a GUID partition table, but a PowerPC-based Mac can only start if your USB drive is using Apple Partition Map instead of GUID. In your case, you have to buy another external drive to make a clone of the PowerPC-based Mac or the Intel-based Mac.
    To change the partition map of your USB drive:
    1. Open Disk Utility (it's in Applications > Utilities folder), and select your USB drive in the sidebar.
    2. Go to Partition tab, and press "Options" button, where you can choose the partition map you want: GUID, MBR or Apple Partition Map. Note that you won't be able to start an Intel-based Mac from a drive that uses Apple Partition Map

  • Ways to implement image resizing using plug-ins?

    Hi Photoshop developers,
    I'm a developer with a few Photoshop filter and selection plug-ins under my belt, and I have a good understanding of the SDK and tools and suites it provides. My next project is an algorithm for enlarging/resampling images to different pixel dimensions. I'm wondering if anyone has any suggestions for or experience with the best combination of plug-in types to implement this.
    Clearly, I can't just write it as a filter plug-in, since there is no way to change the image dimensions from within a filter.
    I'd like the resized image to remain within Photoshop (as a new window or in the original one), so an export plug-in on its own is not sufficient.
    Import plug-ins seem promising, since they allow the creation of a new document of the required size. However, as best I can tell from the Photoshop 6.0 SDK documentation, import plug-ins cannot access the image data from other open documents (or even the clipboard), nor do they provide any support for channel ports and the Channel Port suite.
    My best idea at this stage is to create an export plug-in to provide the user interface and calculate the resized image, and then an import plug-in to import the resized image back into a new window. (I'm supposing a further automation plug-in would then be written to perform this export/import sequence.) The difficulty I see with this approach is how to communicate the resized image data between the two plug-ins. Since the resized image will potentially be very large, the ideal solution would be to store it in channels managed by the Channel Ports suite. However, I cannot see how the channel ports created in the export plug-in could be communicated to and used by an import plug-in. The alternative would be for the export plug-in to save the resized image to a temporary file on disk, however this seems unnecessary.
    So, my questions, specifically, are:
    a) Is it possible to create new channels using the Channel Ports suite (sPSChannelPorts->New()) in one plug-in, and have those channels persist to be used in another plug-in?
    b) If so, how would the channel ports be communicated between the plug-ins?
    c) Alternately, are there any alternative architectures available for implementing an image-resizing algorithm using the plug-in types that are available for Photoshop developers.
    Any responses would be greatly appreciated; I know this is a low-traffic forum...
    Thanks,
    Matthew.

    I would make an automation plug-in and a filter plug-in.<br /><br />1) Run the automation which runs your filter to gather current image <br />information<br />2) Create a temp file of the new document<br />3) Make a new document<br />4) Call the filter again to reload the temp data on disk<br /><br /><[email protected]> wrote in message <br />news:[email protected]...<br />> Hi Photoshop developers,<br />><br />> I'm a developer with a few Photoshop filter and selection plug-ins under <br />> my belt, and I have a good understanding of the SDK and tools and suites <br />> it provides. My next project is an algorithm for enlarging/resampling <br />> images to different pixel dimensions. I'm wondering if anyone has any <br />> suggestions for or experience with the best combination of plug-in types <br />> to implement this.<br />><br />> Clearly, I can't just write it as a filter plug-in, since there is no way <br />> to change the image dimensions from within a filter.<br />><br />> I'd like the resized image to remain within Photoshop (as a new window or <br />> in the original one), so an export plug-in on its own is not sufficient.<br />><br />> Import plug-ins seem promising, since they allow the creation of a new <br />> document of the required size. However, as best I can tell from the <br />> Photoshop 6.0 SDK documentation, import plug-ins cannot access the image <br />> data from other open documents (or even the clipboard), nor do they <br />> provide any support for channel ports and the Channel Port suite.<br />><br />> My best idea at this stage is to create an export plug-in to provide the <br />> user interface and calculate the resized image, and then an import plug-in <br />> to import the resized image back into a new window. (I'm supposing a <br />> further automation plug-in would then be written to perform this <br />> export/import sequence.) The difficulty I see with this approach is how to <br />> communicate the resized image data between the two plug-ins. Since the <br />> resized image will potentially be very large, the ideal solution would be <br />> to store it in channels managed by the Channel Ports suite. However, I <br />> cannot see how the channel ports created in the export plug-in could be <br />> communicated to and used by an import plug-in. The alternative would be <br />> for the export plug-in to save the resized image to a temporary file on <br />> disk, however this seems unnecessary.<br />><br />> So, my questions, specifically, are:<br />><br />> a) Is it possible to create new channels using the Channel Ports suite <br />> (sPSChannelPorts->New()) in one plug-in, and have those channels persist <br />> to be used in another plug-in?<br />><br />> b) If so, how would the channel ports be communicated between the <br />> plug-ins?<br />><br />> c) Alternately, are there any alternative architectures available for <br />> implementing an image-resizing algorithm using the plug-in types that are <br />> available for Photoshop developers.<br />><br />> Any responses would be greatly appreciated; I know this is a low-traffic <br />> forum...<br />><br />> Thanks,<br />> Matthew.

  • I get no image sent from my iMac to my second monitor using VGA adaptor

    I am not getting any image sent from my iMac to my second monitor. I am using a VGA adaptor. Any suggestions?

    Is it not detected in Displays?
    Which exact eMac is it?
    At the Apple Icon at top left>About this Mac, then click on More Info, then click on Hardware> and report this upto but not including the Serial#...
    Hardware Overview:
    Model Name: iMac
    Model Identifier: iMac7,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.4 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 4 MB
    Memory: 6 GB
    Bus Speed: 800 MHz
    Boot ROM Version: IM71.007A.B0

Maybe you are looking for