NullPointerException when exporting for iOS

I have an AIR for iOS project that runs fine in the simulator, but when I try to export a release build and click on 'finish', then it starts compiling and after a minute or two, i get a
Exception in thread "main" java.lang.NullPointerException
at adobe.abc.GlobalOptimizer.sccp_eval(GlobalOptimizer.java:6944)
at adobe.abc.GlobalOptimizer.sccp_analyze(GlobalOptimizer.java5909)
at adobe.abc.GlobalOptimizer.sccp(GlobalOptimizer.java:4628)
at adobe.abc.GlobalOptimizer.optimize(GlobalOptimizer.java:3514)
at adobe.abc.GlobalOptimizer.optimize(GlobalOptimizer.java:2215)
at adobe.abc.LLVMEmitter.optimizeABCs(LLVMEmitter.java:526)
the logfile doesn't capture anything.
Anyone an idea what could cause this error?
I compiled other projects successfully for iOS.

I used to get NullPointerExceptions all the time when packaging for iOS. The only approach that worked for me was packaging from command line (adt) with Flash Builder closed.

Similar Messages

  • Invalid memory access of location error when exporting for iOS

    I have been recently been asked to convert a flash application for us on the iPad. When I try to publish the .ipa file I end up with the following error:
    Invalid memory access of location 0xceip=0x55492db4
    I have no idea what might cause this and my google search of the error message has come up pretty empty. If I remove the document class and republish it works fine so I know it has something to do with my code but I haven't the slightest idea where to start looking so I was hoping someone else had run into a similar error and could point me in the right direction.
    thanks so much
    -Ryan             

    I managed to figure this out through laborious guess and check. Just thought I would share the bug in case anyone else ever runs into it.
    A third party library I was using wrote try catch statements wrong:
    try{
    catch(Error:*){
    No idea why the original author did it like this, probably meant to write "error:*" and didn't release shift fast enough after the "(" but as you might suspect "Error" is a reserved object name to cannot be declared as a paramenter variable
    when replaced with:
    try{
    catch(error:Error){
    the memory access bug went away. What is strange is that the incorrect try/catch statement works just fine when published to swf, air, or android and is only an issue with the iOS converter, and obviously produces a very cryptic error.
    I was using CS5.5 so maybe this has been fixed (if not I would suggest making this a compile time error) but just thought I would post my findings.

  • Error when compiling for IOS

    When compiling for IOS in Standard mode an error ocurred:
    Error occurred while packaging the application:
    Exception in thread "main" com.adobe.air.ipa.ProcessError: Assembler failed
              at com.adobe.air.ipa.AOTCompiler.launchProcess(AOTCompiler.java:263)
              at com.adobe.air.ipa.AOTCompiler.compileBitcode(AOTCompiler.java:935)
              at com.adobe.air.ipa.AOTCompiler.trimAndCompileBitcode(AOTCompiler.java: 763)
              at com.adobe.air.ipa.ASMGenerator.main(ASMGenerator.java:72)
    Compilation failed while executing : ADT
    Flex 4.6
    Windows 7
    Any idea?

    Sinious thanks for your answer.
    I tried compiling from adt and it worked using this command line script.
    @set java_cmd="C:\Program Files\Common Files\Adobe\Adobe Flash CC\jre\bin\java.exe"
    @set java_param=-Xmx8192m -jar
    @set adt_cmd="C:\Program Files\Adobe\Adobe Flash CC\AIR4.0\lib\adt.jar"
    @set target=ipa-test
    @set cert=samples.p12
    @set cert_pass=12345
    @set provisioning=samples.mobileprovision
    @set build_file=Testing.ipa
    @set desc_files=Testing-app.xml
    @set files=Testing.swf assets externalSWF
    %java_cmd% %java_param% %adt_cmd% -package -target %target% -storetype pkcs12 -keystore %cert% -storepass %cert_pass%  -provisioning-profile %provisioning% %build_file% %desc_files% %files%
    pause
    Still there is now a different problem.
    When trying to compile more than a certain number of external swfs (eg. 350) then the process never ends. The java.exe  process consumes all of my memory and it is just stuck there for hours( I've waited for it to compile for nearly 10 hours before I killed the java.exe process). When I randomly remove some swfs then everything goes fine and the process finishes after nearly half an hour or so.
    The pc i'm using has an i7 processor with 16gb of ram and the java process consumes it all even though i've set a limit using the -Xmx8192m command.
    Is there a problem with the xmx command?
    Do i need even more ram to compile a larger number of swfs.
    Is there a way to monitor the java process in order to catch any errors that occur or maybe use any different java params to control ram usage limits?
    Thank you for your help.

  • Cannot find lib when packaging for iOS

    You can see the same question on StackOverflow here:
    http://stackoverflow.com/questions/11547515/cannot-find-lib-when-packaging-for-ios
    Hi,
    I am developping an Air Native Extension (ANE) in order to be able to use the burstly(1) ads on mobile devices.
    As for my setup, I am using the FlashDevelop 4.0.4(2) and Adobe Air 3.3 (3). I'm using Flex 4.6.0 SDK. The project is setup on Windows7.
    In order to work on iOS devices, Burstly requires a number of frameworks and librares (4)
    I managed to write and compile the .a library for iOS. I also have the interface (actionscript code) that will be shared for Android and iOS compiled into a swc and a librairy.swf. All of this is successfully packaged into a .ane which is included in my project.
    When compiling a .a library on MacOS, all the framework and library used don't seems to be packaged in the ".a". This is why I had to use Air 3.3, for the -platformsdk option(5).
    Since I work on Windows, I followed the instruction in this post to get the iOS SDK (6).
    Following (4) and (5), I made a platformConfig.xml file like this, which is packaged in the .ane
        <platform xmlns="http://ns.adobe.com/air/extension/3.1">
            <sdkVersion>4.2</sdkVersion>
            <linkerOptions>
                <!-- to use the AssetsLibrary framework -->
                <option>-framework AssetsLibrary</option>
                <option>-framework AudioToolbox</option>
                <option>-framework AddressBook</option>
                <option>-framework AVFoundation</option>
                <option>-framework CFNetwork</option>
                <option>-framework CoreLocation</option>
                <option>-framework MapKit</option>
                <option>-framework MediaPlayer</option>
                <option>-framework MessageUI</option>
                <option>-framework OpenAL</option>
                <option>-framework OpenGLES</option>
                <option>-framework QuartzCore</option>
                <option>-framework StoreKit</option>
                <option>-framework SystemConfiguration</option>
                <option>-framework Foundation</option>
                <option>-framework CoreGraphics</option>
                <option>-libsqlite3</option>
                <option>-libxml2</option>
                <option>-libz</option>
            </linkerOptions>
        </platform>
    and this is the line to compile the actuale .ane
        call "%FLEX_SDK%\bin\adt" -package -target ane ../release/burstlyadsextension.ane extension.xml -swc burstlyAds.swc -platform iPhone-ARM library.swf libBurstlyAds.a -platformoptions platformConfig.xml
    Problem arises when I try to package the iOS app with ADT:
        call adt -package -target %TYPE%%TARGET% %OPTIONS% %SIGNING_OPTIONS% "%OUTPUT%" "%APP_XML%" %FILE_OR_DIR% -extdir lib/external/ -platformsdk ../Libraries/iPhoneOS5.0.sdk/
    this happens:
    "ld: library not found for -libsqlite3
    Compilation failed while executing : ld64"
    frameworks seems to be added fine, but the dylib are not. I tried to add the line:
        <option>-L usr/lib/</option>
    before including the lib, but I got this error instead:
    "ld: warning: directory not found for option '-Lusr/lib/'
    ld: library not found for -libsqlite3
    Compilation failed while executing : ld64"
    I tried to use the full path, other relative path, but no matter what path I put in the option, I always get a "warning: directory not found for option". Even "<option>-L ../</option>" give me this warning. The only thing that seems to work is "<option>-L /../</option>", but my .dylib obviousle are not there.
    So my questions are: What did I do wrong? Any idead what else I could try? Even an explanation as to why it is not working would be helpful!
    Links:
    #1: http://support.burstly.com/
    #2: http://www.flashdevelop.org/
    #3: http://get.adobe.com/fr/air/        //Sorry, my OS is in french
    #4: http://support.burstly.com/kb/ios/required-compiler-flags-frameworks
    #5: http://blogs.adobe.com/rajorshi/2011/11/16/ios5-support-for-airusing-external-sdks-to-pack age-apps/
    #6: http://blogs.adobe.com/airodynamics/2012/05/18/using-platformsdk-for-ios-on-windows/

    Thanks a lot, that took care of the
    "ld: library not found for -libsqlite3
    Compilation failed while executing : ld64"
    But now, I'm stuck with this error instead:
    ld: warning: -ios_version_min not specificed, assuming 4.0
    Undefined symbols for architecture armv7:
      "_ADBannerContentSizeIdentifier480x32", referenced from:
          +[Burstly_iad_Adaptor initializeContentSizeIdentifiers] in libcom.bhvr.burstlyads.a(Burstly_iad_Adaptor.o)
          -[Burstly_iad_Adaptor supportedSizes] in libcom.bhvr.burstlyads.a(Burstly_iad_Adaptor.o)
      "_OBJC_CLASS_$_ADBannerView", referenced from:
          objc-class-ref in libcom.bhvr.burstlyads.a(Burstly_iad_Adaptor.o)
      "_OBJC_CLASS_$_EKEventStore", referenced from:
          objc-class-ref in libcom.bhvr.burstlyads.a(BurstlyORMMAView.o)
      "_OBJC_CLASS_$_FlurryAnalytics", referenced from:
          objc-class-ref in libcom.bhvr.burstlyads.a(Burstly_flurry_Adaptor.o)
      "_OBJC_CLASS_$_CMMotionManager", referenced from:
          objc-class-ref in libcom.bhvr.burstlyads.a(BurstlyORMMAJavascriptBridge.o)
      "_ADBannerContentSizeIdentifier320x50", referenced from:
          +[Burstly_iad_Adaptor initializeContentSizeIdentifiers] in libcom.bhvr.burstlyads.a(Burstly_iad_Adaptor.o)
          -[Burstly_iad_Adaptor supportedSizes] in libcom.bhvr.burstlyads.a(Burstly_iad_Adaptor.o)
          -[Burstly_iad_Adaptor makeSizesSetWithArray:] in libcom.bhvr.burstlyads.a(Burstly_iad_Adaptor.o)
      "_MedialetsShouldLogDebug", referenced from:
          -[MedialetsAdServer sendAppPixelWithURL:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer adFitsSlot:adID:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer nextAdFromList:forTargetKey:keywords:andBlockKeywords:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer isAdValidForSlot:forTargetKey:keywords:andBlockKeywords:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer nextAdForAdView:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer startCacheLoad] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer processReceivedData:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
      "_OBJC_CLASS_$_EKEvent", referenced from:
          objc-class-ref in libcom.bhvr.burstlyads.a(BurstlyORMMAView.o)
      "_ADBannerContentSizeIdentifierPortrait", referenced from:
          +[Burstly_iad_Adaptor initializeContentSizeIdentifiers] in libcom.bhvr.burstlyads.a(Burstly_iad_Adaptor.o)
      "_OBJC_CLASS_$_CTTelephonyNetworkInfo", referenced from:
          objc-class-ref in libcom.bhvr.burstlyads.a(BurstlyUtils.o)
      "_ADBannerContentSizeIdentifierLandscape", referenced from:
          +[Burstly_iad_Adaptor initializeContentSizeIdentifiers] in libcom.bhvr.burstlyads.a(Burstly_iad_Adaptor.o)
      "_MedialetsShouldLogInternal", referenced from:
          -[MedialetsAdServer init] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer qualifiedAdsFromList:forAdView:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer qualifiedAd:foradSlotKey:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer nextAdFromList:forTargetKey:keywords:andBlockKeywords:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer nextAdForAdView:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer attemptCacheLoad] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer startCacheLoad] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
      "_OBJC_CLASS_$_FlurryAppCircle", referenced from:
          objc-class-ref in libcom.bhvr.burstlyads.a(Burstly_flurry_Adaptor.o)
      "_OBJC_CLASS_$_ADInterstitialAd", referenced from:
          objc-class-ref in libcom.bhvr.burstlyads.a(Burstly_iad_Adaptor.o)
    ld: symbol(s) not found for architecture armv7
    Compilation failed while executing : ld64
    Which is the same error as when I did not include any library at all.
    Any other insight?

  • Float4() causes "error saving Pixel Bender Byte Code file" error when exporting for flash player

    Simple test
    <languageVersion : 1.0;>
    kernel untitled
    <   namespace : "Your Namespace";
        vendor : "Your Vendor";
        version : 1;
    >
        input image4 src;
        output pixel4 dst;
        void
        evaluatePixel()
            dst = float4(sampleNearest(src, outCoord()));
    The above code will produce a "error saving Pixel Bender Byte Code file" error when exporting for flash player in Pixel Bender Toolkit 2.5.449694.
    "dst = (sampleNearest(src, outCoord()));" works fine. And anything like "float4 a= float4(b);" will give same error.

    Thank you for the error report.  I'll put it into our bug database.  We're bottling things up for the current version.  Gven the workaround, it is unlikely we'll be addressing this bug soon.  Please accept my apologies for the annoyance this will cause.
    In your second example, float4 a = float4(b), does it return an error if b is only a float4 or regardless of what b is?  If b is a scalar float, for example, is the conversion performed correctly? If so, this could be an error that only crops up when using constructor/conversion syntax when the thing being converted is already the correct type.
    Thanks,
    Chuck.

  • Export for ios on PC

    Hi
    I've got a file I developed for a Windows environment using as3 in Flash CS6 on a win7 based machine.
    I've now been asked to convert to an ipad app. One approach I'm looking at is doing it through Indesign, but I'm also wondering if there is a way to export it from Flash for ios even though I'm on a PC.......or do I have to shell out for a mac.......something I'd rather avoid if I possibly can. I've looked briefly into the publish settings and it would seem that requires owning a mac (from what I can tell)

    you can use the ad hoc distribution when you publish your iOS app.  that way you do not need to use iTunes or anything else from apple (other than your ad hoc distribution certificate and provisioning profile).
    However, according to Apple, you are limited to 100 iDevices onto which your app can be installed. I am not sure how they can ethically check that limit but it is Apple.  They like to make and enforce rules and they may install some kind of call-home code into your app.
    p.s. please mark helpful/correct responses.

  • Lag When Programming For iOS Device With Adobe Flash Professional.

    Hi, I'm trying to make an Application for iOS device, Everything is find, but when i installed it on my iphone 4 and my iPhone 4S my game start lagging, i don't what to do, i tried to simplifed the code but nothing is working i dont know if it's in the rendering or when i'm trying to export, but on my iPhone it's lagging.
    Any Help Please, Solution ?
    Thanks
    Francis

    Target gpu on the device you're testing .. you'll get much better results.
    You can do it on the xml configuration file on <renderMode> or if you're publishing in flash on the settings of renderMode select GPU.
    Also get rid as much as you can from vector graphics and use bitmaps instead.
    You can use Adobe's method of converting a vector in bitmap like this : myMC.cacheAsBitmap = true;
    And also if you're moving an object, scaling or changing it's transparency use myMC.cacheAsBitmapMatrix = new Matrix();
    These are some basic optimization tips.

  • Strokes on appearance is getting cut off when exporting for web & Devices

    I'm a screen print artist using Adobe Illustrator CS5 in windows 7(blah!) to export images of our customers' artwork into a huge folder of images on a server. The images are then loaded into a program so that they can be viewed company-wide and by the customer.
    Occasionally, when there is an appearance applied to text it seems to cut off the tops and/or bottoms of the outermost stroke.This seems to be only happening to text, and happens randomly and is very annoying. See the image attached.
    it does this with both JPEG and PNG images, and whats more, changes when you adjust the image size. it either gets better or worse. I have to change the image size on every export so that they are all within our size requirements.
    I have found that if you put the art into an envelope with all the settings at 0 and then export for web it prevents this from happening. However, that isn't very efficient as i need to be moving a ton of artwork a day, and I am not the only person who may be working on the Illustrator file.
    Is there any setting either in illustrator or windows that may be causing this anomaly?

    Try adding:
    Effect >> Path >> Outline Object
    So  your type will still be editable
    If that does not work you may want to:
    Type: Create Outline
    I only had this problem once before, on some snickerdoodle cookies package, and that was a script font. Might be related to the font you use.

  • HELP! QT file deteriorates around halfway when exporting for web

    I have an iMovie project that I have regularly exported to DVDs or other quicktime files: only when I export "for the web" this file (a 1G file that gets compressed to about 18MB for the web) deteriorates, starts to blur as if losing sync with the codec. When I work in iMovie the file is perfect, when I tried to export it into one (or two) small .mov it deteriorates. I tried everything, including re-exporting to a new original and re-importing, splitting the file in shorter segments etc. At a specific point in the movie, it just falls apart.
    I was wondering if any of you had some suggestion.

    You could try duplicating the iMovie project, replacing the video clip which plays at the point that the movie deteriorates with -anything else- and then export again to see if the problem is related specifically to that one video clip.
    If not, then perhaps trying the export from another user account or on another computer would help determine if settings or software versions are an issue.
    If it is the one particular clip, try converting that clip to some other format prior to importing to iMovie and then exporting again ?

  • Flash CS 5.5 Professional requires 32-bit JVM when publishing for iOS

    When trying to publish my file to AIR for iOS I get the following error:
    Error: This Java instance does not support a 32-bit JVM.Please install the desired version.
    I'm on Mac OS (Mavericks) and have both java 6 (which supports 32-bit) and 7 (which does not) installed. I've verified I can launch a 32-bit jvm from the terminal with "java -d32".
    Interestingly, it publishes to AIR with no problems when it's not to iOS.
    How can I get Flash to use the correct version of Java? I've tried setting JAVA_HOME to point to version 6 in /etc/profile with still no luck.
    Thanks for reading, I will really appreciate the help!!

    Ok, found the answer thanks to Christopher Caleb. Needed to upgraded CS5.5's bundled AIR from 2.6 to the current one, and it compiled with no errors. Directions are here for anyone that winds up having the same issue:
    http://www.yeahbutisitflash.com/?p=2949

  • Problem when compiling for IOS

    Hello to all guys, before today i compiled my little app for ios easely but from this morning i'm having this error using AIR 3.8:
    however i can install my app on my iphone5 with no problems but i'm scared for this message
    p.s. before using AIR 3.8(version 3.7) i had this problem and another like PIE error but with AIR 3.8 the PIE error disappeared

    up

  • Image Quality of Slideshow When Exported for YouTube

    I have attempted several slideshows using A3 and the export quality I find is rather poor. The resulting file is an M4V. Is this a common problem or should I be looking at another form of creating/exporting the slideshow? Play back in A3 has excellent quality but when exported it gets badly degraded.

    Yes I'm aware of it, I have tried it with the ipod setting as well as the hd setting and in hd all I got was audio. I'm trying one in 720 now and will see if this setting is any better

  • Unwanted margins when publishing for ios

    I'm using flash CC to create an app for iOS. In flash CC I start a new "air for iOS" file.
    I get a stage of 640x960. The stage is empty and there's no code. I publish, check it out on the iPhone (5) and I get margins on the top and bottom. 1 cm each. It simply won't cover the whole screen.
    I tick the full screen box in the settings -> still get the margins.
    I add: stage.displayState = StageDisplayState.FULL_SCREEN; -> still get the margings.
    I change the stage's size to various sizes -> all the same.
    What am I missing? how do I make these margins disappear?
    (I just want to see my empty stage covering the whole iPhone5's screen)

    it's  in the first and only frame :
    import flash.display.StageScaleMode;
    stage.scaleMode = StageScaleMode.NO_BORDER;
    thanks

  • Question about exporting for iOS/App Store

    I tried to follow all the instructions (http://developer.apple.com/ios/manage/distribution/index.action) properly but they were written for XCode and not Adobe. I have looked on Adobe's site but I can't find any information or documentation telling me what I'm doing wrong.
    I am using Flash CS 5.5 and AIR 2.7.
    In iTunes Connect under Provisioning -> Distribution I created a new Distribution Provisioning Profile. This I opened in AIR for iOS Settings -> Deployment -> Provisioning profile. Bundle IDs match.
    In iTunes Connect under Certificates -> Distribution I created a new Distribution Certificate. This I installed using Keychain Access.
    In Flash I continued using the same Developer Certificate (.p12 file) I had been using to test my app on my device.
    I downloaded and used Keychain to install the WWDR intermediate certificate.
    In Flash -> AIR for iOS Settings -> Deployment -> iOS deployment type I chose "Deployment - Apple App Store"
    I compiled the app and tried to upload using Application Loader. It gave me the following error:
    "Application failed codesign verification. The signature was invalid, or it was not signed with an Apple submission certificate."
    All my certificates are current and valid, and have been installed without duplicates.
    Any ideas? I'm not sure what else I'm supposed to do or where else to turn for answers.
    Thanks!

    Is that the developer_identity.cer file created in iTunes Connect -> Provisioning -> Distribution?
    I created one and installed it in Keychain by double clicking on it in Finder.
    It shows up in Keychain -> Login under "iPhone Distribution: My  Name" and I can expand it to reveal a private key with my name  underneath it.
    Is that right?

  • What PPI should I use when exporting for a video project?

    I shoot RAW photos.  I like and use Premier Elements 11 to make video.  Frequently I insert photos in the videos and enjoy using the Pan and Zoom technique (frequently credited to Ken Burns).
    Resizing photos helps Premier Elements to run smoothly.  The LR Export command makes it easy.  Using PSD files works well in Premier Elements.  However, I am confused about settings.
    My understanding is that if no Pan&Zoom or cropping is to be done in the video the export should be 1920x1080.  If Pan&Zoom is planned, the setting should be higher by about 50%.  LR makes it simple by letting you specify the "Long Edge" so the setting would be 2880.   The short edge will match the original. 
    What about "Pixels Per Inch" for a HD 1920x1080 video project that may be played on a big HD TV or smaller YouTube?  There is plenty of information about PPI for printing and computer monitors, but not HD Video. 
    Here is screen capture for reference:
    What should the pixels per inch be set at to match 1920x1080 video?  The 140 setting is a complete guess!
    Thanks in advance!
    Bill

    whsprague wrote:
    My understanding is that if no Pan&Zoom or cropping is to be done in the video the export should be 1920x1080.  If Pan&Zoom is planned, the setting should be higher by about 50%.  LR makes it simple by letting you specify the "Long Edge" so the setting would be 2880.   The short edge will match the original. 
    The above sentence from your first post is the correct answer with a few changes as to what settings you need to use in LR's Export module.
    Anytime you "resize" an image it will lose sharpness unless you apply Output Sharpening. I have no idea if Premier Elements applies sharpening, how much it applies, or how much using large raw images slows it down. The best suggestion is for YOU to resize the raw images and apply Output Sharpening that meets YOUR taste as to "crispness." That way Premier Elements will use the properly sized TIFF or JPEG images (no PNG Export in LR) with no further modifications.
    For 1080p (1920 x 1080) Videos:
    Don't use the 'Long Edge' option in LR's Export module since you want both portrait and Landscape images to have the same height. Instead simply enter W: 1920, H: 1080, and Resolution as mentioned doesn't matter. For the Output Sharpening LR's Screen Standard setting should work fine, but review the resized images at 1:1 and adjust to your taste. LR's Develop module Sharpening settings should NOT be used for this purpose. This is for the initial "capture" sharpening only.
    As you mentioned when using Zoom & Pan you will want to increase the file size proportional to the actual Zoom setting you are using inside Premier Elements:
    150% = 2880 x 1620
    200% = 3840 x 2160
    300% = 5760 x 3240
    For best results I'd limit your Zoom to 150%, especially if you’re having performance issues. You also don't want to make your image larger than its native camera raw resolution, which will reduce the sharpness. For higher Zoom settings simply Export the images full-size without using ‘Image Sizing’ or ‘Output Sharpening.’ Use 'File Settings' JPEG, sRGB, with 80 Quality setting, which will provide good results.

Maybe you are looking for

  • Networking issues with Windows SBS Server 2003

    I have 3 G5 running on a recently installed 10.4.8, they were all previously running 10.3.9. They all connect to a network drive with folders that have color labels on them (only 2 blue and green). In 10.3.9 the labels were fine, now when the machine

  • I cannot get into iTunes Store: Error -54. Hp

    Hello, since a few days I cannot connect the Itunes store. When I start Itunes there appears: unknown error -54, look, if network is on function and try ist again.. I tried to get help from the Itunes support, but they told me to try, what you can fi

  • A small conglomerate of E450/Solaris 10 Questions!

    To whom it shall concern or can just help out: Solaris 10 Questions If I wish to run an iSCSI target under Solaris 10, will GA do it or do I need the Express verison of Solaris 10 (for an E450, SPARC)? If the GA version of Solaris 10 supports iSCSI t

  • Force new windows to open in tabs?

    Is there a plug-in or AppleScript that will force links that are set to open in new windows to instead open in a new tab?

  • Mapviewer application hangs on WebLogic

    The MapViewer 11g application hangs after some time and does not respond to any request. MapViewer is running on a separate domain. The MapViewer is very lacklustre in performance. Please suggest what could be done. It takes the CPU of the server to