How do I solve 'Insufficient memory available...' to export .jpg?

I tried to upload my .ai file to this question but am having a hard time doing it,. anyways,. I tried exporting a jpg from my illustrator file and have been getting the 'Insufficient memory available to complete this task',. any help with this? or maybe help with directing me how to upload the .ai file? thanks!!!

Which New Document Profile did you use to start your file? If it was the Web one from AICS3 or 4, You might be trying to export the entire working area. You might try making a new Artboard that just covers the area you want to export and when exporting make sure that Use Artboards is checked and make sure the range is set to the newly created artboard which has a number in the upper left corner.

Similar Messages

  • How do I solve "Insufficient memory" to import a .jpg file to export as .ai file?

    I can import a size 1.38mb .jpg file but cannot import a size 7.7mb .jpg.
    Can anyone help?
    I'm using laterst trial version from Adobe.

    Umm, no. Never ever. Sorry, this will not work and there's no way around it. Simple computational math: 14174*7084*8bit*3channels makes about 2 GB alone for this single image. you do not even have half of it because your operating system and AI itself already take up memory. Unless you can work with a considerably smaller version of your image, this is simply unrealistic.
    Mylenium

  • How do I solve the memory problem ( 5 beeps ) upon startup?

    hp compaq d530SFF,  how do I solve the memory problem (5 beeps ) upon start up?

    Hi:
    You already know the answer to that! 
    http://h30434.www3.hp.com/t5/Desktop-Lockups-Freezes-Hangs/when-I-try-to-boot-up-lighs-flash-red-and...
    Paul

  • Insufficient memory available

    Hi,
    in PS 8.48.09 (and webserver Web logic) on UNIX AIX 5.3, when navigating on some pages we receive :
    insufficient available memory (2,-1) FUNCLIB_PTPP_SC.HOMEPAGE.FieldFormula Name:NavCollHTML PCPC:30815 Statement:522 Called from:PTPP_SC_UTILITIES.Utilities.OnExecute Name:GetNavHTML Statement:101 Called from:WEBLIB_PTPP_SC.HOMEPAGE.FieldFormula Name:RenderAppNav Statement:36 Called from:WEBLIB_PTPP_SC.HOMEPAGE.FieldFormula Name:IScript_AppHP Statement:49
    May you have some ideas ?
    Thanks and regards.

    Hi, I have the same problem.
    Have you fixed it?
    How?
    Best regards

  • How do I solve ?memory issues with RTFObj.u32

    I am currently developing an interactive data analysis & reporting package to handle the results from an AW assessment program.
    Using RTFObj.u32, I can save an assessment report for each candidate that contains a runtime-generated score distribution graphic + a certificate graphic together with some text, amounting to one A4 page of output. The graphics are displayed on screen then captured into temporary files which are embedded into the rtf script template file (myCandFile in the script below)
    I use the sequence of code, each line in a separate calc, summarised as follows:
    myRTFID[QBatchNumber] := rtfCreate(56, 80, 560, 627, myCandReportFolder^myCandFile,0, 0, 1, 2, 1)
    result := rtfShow(myRTFID[myBatchNumber])
    result := rtfSave(myRTFID[myBatchNumber], 0, mycandReportFolder^myCandFile)
    result := rtfErase(myRTFID[myBatchNumber])
    When I place this in a loop, it works fine and produces individual files with embedded graphics for up to around 190 candidates but will not produce any further files for larger cohorts and rtfShow() fails at this number. This maximum number does not seem to change even if I group the candidate pages into batches of 10 which produces only 19 rtf files, each with 10 candidate reports, rtfShow then fails at cycle 19.
    Reducing the number of calls to rtfCreate() has no effect
    Reducing the dimensions of rtfCreate() has no effect.
    Reducing the content of each rtf file has no effect.
    Removing the page breaks in the rtf files has no effect
    The AW nested code loop continues to more than 400 records without apparent limit and graph plots continue to appear on screen to the end of the candidate listing.   Once the limit of 190 candidates has been reached, no more rtf files can be generated from anywhere else in the program and rtfOBJ.u32 appears to have failed without any warning messages.
    From these observations, I'm not sure what controls the limit.
    So what stops rtfObj.u32 from functioning? It would appear that rtfObj.u32 does not release the memory used to create the rtf file when rtfErase() is called. One might think that the limit may be related to the total number of characters handled by rtfObj.u32 in any one AW session, however reducing the rtf file size for each candidate by taking out one of the graphics has no effect on the number produced.
    In another area of the program I can successfully save 5 rtf files of 28Mb each with rtfOBJ.U32 failing on the 6th.
    Any ideas?
    If it is a memory limitation of rtfOBJ.U32, is there any method for getting around it by allocating memory for rtfCreate() and releasing the memory when rtfErase() is called. Is there any way of unloading rtfObj.u32 then reloading it from code within an AW piece?
    Regards
    Don

    This sounds very similar to a problem we had a few years with our Rtf files in Authorware 6.5
    If your getting the error on loop 190, do you have numerous Rtf calls in a single loop? Check the value of the variable RtfCreate contains when the problem occurs: is it positive or negative?
    The highest number you can record in 16 bits is 32767. When creating a new Rtf, Authorware increments the pointer by one each time. However, when it reaches 32767, the pointer then changes to negative 32768, then -32767, -32766 etc. Running in batches won't help, the pointer is reset to zero only when you quit Authorware.
    We solved the problem as follows:-
    -- Set when Initialising variables:-
    lastID:=1 -- bugfix flag re losing RTF identity past 32767
    B16:=0 -- Bit 16 Increment Value
    -- Here's a typical Rtf call
    rtfIDE:=rtfCreate(30,38,460,57,FnameTxtEng,0,0,1,1)
    -- After each rtfCreate, we tested to see if the value had gone negative & if so, called a sub-routine
    if (rtfIDE < 0 & lastID >0)   then
        CallScriptIcon(@"AdjB16")
    end if
    if rtfIDE >0 then lastID:=1
    rtfIDE:=rtfIDE + B16
    The calculation icon AdjB16 (With Properties set to Contains Script Function) is as follows:-
    --increment variable to adjust address of RTF pointer
    B16:=B16 + 65536
    --flag re move past 32768 multiples negative or positive (may come through here again on next time it passes 32767)
    if lastID =1 then lastID:=-1 else lastID:=1   -- there's a minus sign in there!
    The show rtf call now carries on incrementing after 32767, so next Rtf show is positive 32768  ... & surprisingly Authorware shows correct Rtf
    After -32768, the Create routine will eventually get the pointer down to minus one, zwero and then turn positive ... but happens again next time it passes 32767.
    I don't recall how high we tested Show Rtf up to but we took it past 131,072

  • How do I solve low memory ?

    My ipad screen keeps bouncing back to homescreen . Low memory ? How do I restore it ? 

    I'm having same problem. Thought it may be cos battery needed replacing. Got a post up about it too but no replies yet. Let me know if anyone replies to you with an answer and I'll do same. Driving me mad!

  • How do I solve a memory problem in regard to downloading Firefox?

    Firefox almost completly downloaded but stopped. It said I have 0 space left, yet the computer still has about 35MG left. The computer met the requirements for the download I believe. I tried to free up space by archiving stuff and deleting, but nothing adds to the space Firefox was allotted. Is there someway I can transfer memory to Firefox from somewhere else on the computer? If not, what can I do?

    It seems to me that you have plenty of space on your hard drive, not very much RAM (so your computer might do some things quite slowly), and that you have downloaded Firefox, but not installed it.
    I suggest that you try picking up Firefox from your desktop and moving it to your Applications folder. You should see a little graph that indicates it is installing itself, then its icon should appear in your Applications folder. Then right click (command-click) on the desktop and eject it.
    If that doesn't work, put your current Firefox in the trash, download the program again, and when it arrives on your desktop, don't open it, but drag it to your Applications folder as described above.
    Once you have installed Firefox in your Applications folder, you can click on it to open it from there.

  • Insufficient memory error while installing JRE 1.2.2

    At the moment I am having some problems installing JRE 1.2.2 on a HP proliant DL380 G3 machine (with two XEON 2.8Gb processors) with windows 2000 SP 3 installed. The error is �Insufficient memory available to run setup. Close any programs�.. bla bla. Error 111�. While the machine has 4Gb of memory installed and only 200mb is in use.
    I have tried 1.2.2.011 (Pentium 4 bug solved) and 1.2.2.014, both with the same result. Unfortunaly I need the 1.2.2 and can�t �switch� to version 1.3 or 1.4.
    PS I also experienced almost the same problem while installing Oracle 8.1.7 on the same machine. And solved this by renaming symcjit.dll to symcjit.old and use the next installation options : JRE_MEMORY_OPTIONS=-nojit -ms64m -mx128m
    Has anyone seen this problem and solved it or is there any way to give some additional options to the JRE installer?
    Thanks in advance,
    Frank Zomerdijk

    I found a bug report at: http://developer.java.sun.com/developer/bugParade/bugs/4643265.html
    And there by the "work a round";
    In order to install j2ee onto your server (with 4Gb or more) you might use one of those:
    1) Pull some DIMMs out of your server till the memory is less
    than 4g. Install j2ee and than put the DIMMs back.
    2) Install j2ee on the other machine and than just copy
    installed directories over to your server.
    I will test the second option tomorrow.
    Frank

  • My hard drive has 70.93 GB available, yet when i have more than one internet tab open, i have to force quit google chrome because 'there is no more available application memory'. How can I solve this? I have a 2009 macbook pro running on 10.6.8.

    My hard drive has 70.93 GB available, yet when i have more than one internet tab open, i have to force quit google chrome because 'there is no more available application memory'. How can I solve this? I have a 2009 macbook pro running on 10.6.8. I have tried updating to mavericks through the mac app store but after it downloading for a day i got an error message saying there was a problem with the download. The same thing happens if i try to update itunes or the mac app store. After research, i have also tried repairing disk permissions, but every time they do get repaired the 'repair' button still appears, i'm not sure if it's because it was unable to repair the initial problems or if it just keeps detecting new ones.

    2 GBs is a minimum in which you can do many things, but not concurrently. Be very careful to not install third-party add-ons, limit the number of applications you choose to enter in Login Items, run as few applications concurrently as you demand.
    I would consider adding more RAM to your computer. Your model supports 8 GBs, so I would install that.

  • How do I solve this "Insufficient memory...." problem?

    Help please......I'm using Illustrator 8.0, have a file that is only 456KB (two type blocks turned objects, one logo) and must Export as a JPEG. Each time I try I get "Insufficent memory was available to complete the operation." I went to File/Preferences and changed the default Scratch Disk Primary from Standard to C: and Secondary from none to C:
    However, nothing has solved this problem. What do I need to change to be able to Export as a JPEG?

    Once you have deleted the lines making this file so huge you should be able
    to export a jpg with the settings required for the end use.
    Here is a screen shot of what the selected items looked like when export jpg options window is shown.
    I will also attach the jpg resulting from this export. You also have legacy text in the box which is above and off of the page. You might consider getting rid of the legacy text or putting it on a non printing layer and hiding that layer.
    I don't respond to off board messages unless it's Adobe with a tracking number for a large delivery of Popcorn.

  • I updated to OS X Mavericks and now trying to run Logic Pro X on a MacBook Pro mid-2009, using an M-Audio Axiom 49 and an M-Audio Fast Track Pro... Logic keeps telling me that Mac OS X MIDI Services are not available... How do I solve this problem?

    I updated to OS X Mavericks and now trying to run Logic Pro X on a MacBook Pro mid-2009, using an M-Audio Axiom 49 and an M-Audio Fast Track Pro... Logic keeps telling me that Mac OS X MIDI Services are not available... How do I solve this problem?

    I just checked to see if the update to OS X Yosemite 10.10.1 solved any of the issues outlined in my previous post, and to my dismay, nothing has changed -- all of the previous problems persist.
    My iMac (8) -- it's renamed itself eight times since the recent troubleshoot with the Apple tech rep -- shows up as a shared device in Finder on my MacBook Pro, but when I click on it, I cannot establish a connection using "Connect As".  So I've attempted to connect using the menu "Go/Connect to Server...", using both (alternately) the iMac's name and IP address, to no avail.  I get a message which reads: "There was a problem connecting to the server 'Peter's iMac (8)'. This server may not exist or it is unavailable at this time.  Check the server name or IP address, check your network connection, and then try again."
    Here's what I know:
    The server -- Peter's iMac (8) does exist;
    The server -- Peter's iMac (8) is available at this time;
    The server name -- Peter's iMac (8) -- is correct, as specified in the system sharing preferences;
    The server IP address is correct, as specified in the system sharing preferences;
    The network connection is active when I attempt to connect.
    I'm convinced the problems stem directly from the OS X Yosemite update.  None of this was ever remotely an issue in the previous OS X's -- any of them.  This is maddening!  What can be done?  Apple?? Anyone???

  • How can I solve memory lick, which occurs when operate Oracle 10g DB ?

    I'm using Dell power Edge2850 server(dual CPU, 4GB Ram), RedHat AS 3 and Oracle 10g SE ONE. When I started the server, transaction speed was very fast. But after several day, the system has been getting slower seriously.
    So I monitored my system using 'top'. And I've found that almost 30MB swap memory has been used and CPU usage has been only 23%. But there has been 2GB idle Ram memory. Besides when Oracle don't execute any operation, swap memory is not freed. After I started my server, swap memory allocated has been getting larger and larger. And the speed of my system has been getting slower and slower.
    I think that it is very strange thing not to free swap memory when there is no operation on the server.
    Of course, swapping which rise with large transaction is not problem. But it is a serious problem not to free swap memory when there is no transaction.
    How can I solve this ploblem? Thanks.

    This means the the URL for database control will use the http protocol. To convert to the https protocol (using the included SSL certificate), use the steps documented above. Before doing so, pl review MOS Doc 1222603.1
    HTH
    Srini

  • HT4381 I bought an Apple TV and when I rent a movie, I get a display saying that no HDCP is available. How can I solve this problem?

    I bought an Apple TV and when I rent a movie, I get a display saying that no HDCP is available. How can I solve this problem?

    Have you verified that your TV is HDCP compliant? Consult manual and/or post model so someone can check.

  • I have been coping my cds.  Now I get this message:  The iTunes Library file cannot be saved.  There is not enough memory available.  How can I proceed?

    I have been copying my cds into my iTunes library.  I lost all my folders 2 years ago when I replaced my laptop and just now have the time to do this.  Right in the middle of copying my christmas cds I get a message that the iTunes Library cannot be saved. There is not enough memory available.  Help  How can I proceed?

    trash stuff form your computers hard drive to free up space.

  • Insufficient Shared Objects Memory Available

    Hi Friends ,
    You must be knowing sample application <b>wdr_test_chat</b> .I have used , executed application many time ....now when I run it and click in Log on ...log on pop up come and I am able to enter name ...but on click ok following dump coming....it is not case that there is problem with code as I have run it so many time already....IS that has to do something to my server ?
    Dump
    The following error text was processed in the system SD8  : Insufficient Shared Objects Memory Available
    The error occurred on the application server q4inpusy007_SD8 _01 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: ATTACHUPDATE70 of program CL_SHM_AREA===================CP
    Method: ATTACH_FOR_UPDATE of program CL_WDR_TEST_CHAT_SHM_AREA=====CP
    Method: ATTACH_FOR_UPDATE of program CL_WDR_TEST_CHAT_SHM==========CP
    Method: LOGIN of program CL_WDR_TEST_CHAT_SHM==========CP
    Method: LOGIN of program CL_WDR_TEST_CHAT==============CP
    Method: ONACTIONLOGIN of program /1BCWDY/CUHRRK26ZJ7PFHMON3IO==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER of program /1BCWDY/CUHRRK26ZJ7PFHMON3IO==CP
    Method: INVOKE_EVENTHANDLER of program CL_WDR_DELEGATING_VIEW========CP
    Method: IF_WDR_ACTION~FIRE of program CL_WDR_ACTION=================CP
    Method: DO_HANDLE_ACTION_EVENT of program CL_WDR_WINDOW_PHASE_MODEL=====CP

    Hi,
    I think in case of shared memeory area the system will allocate each area a maximum of 3MB space. so once you use the full memory the system will show you the error message 'Insufficient Shared Objects Memory Available'.
    I think this can be avoided by freeing the shared memory area after a certian amount of time.
    Regards,
    Ajith V

Maybe you are looking for

  • Text/SMS to mobiles sending but not being received

    Hi, I've upgraded to Skype 7.1 and Mac X Yosemite and can effectively no longer send SMS i.e. I usually send texts/SMS to a distribution list of about 25 mobile numbers and while the history says "sent" and the credit is taken from our account, no-on

  • Simple help: on a mac

    Ok guys, I have a very simple question...but can't seem to find an answer. I there anyway I can download flash for my mac? I've found downloads for flash PLAYER on mac...but I don't really understand the difference. All I'm looking for is the version

  • Aperture adjustments don't sync to iphone or ipad

    Any adjustments - color, crop, etc - made to previously synced albums or projects don't update on the iPhone or iPad. Why would iTunes intentionally sync just the master and never versions, especially while not making it an option? When streamed, lik

  • How to put songs on that i already bought?

    im trying to put music on a ipod that i recently got and put songs on it that i already bought how do i do it?

  • How can I work around 1316 error that won't let me uninstall and then reinstall Elements 12

    Elements 12 stopped working and the shortcut no longer finds the executable file. There does not appear to be a repair function on the installation CD. As a result, I have tried unsuccessfully to uninstall the program using Windows 7 64 bit uninstall