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

Similar Messages

  • 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.

  • 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

  • Import from dsv files and export to csv files

    hi every body..
    how can I create a project in NetBeans which does:
    1- import a .dsv (Delimiter-Separated Values) file content and save it to array
    - the values in this format separated by fixed commas
    example
    "AIG" "Insurance" "64.91" "25/11/06"
    2- export into .csv file (Comma Separated Value)
    -the values in this format separated by commas
    example:
    AIG,Insurance,64.91,25/11/06

    Well, you need to learn Java so you can read files, divide the data by the delimiters, and then write it out as a csv file.
    Can't really give better instructions than that...maybe start by reading the basic tutorials?
    We don't give out full program code here so you'll need to ask more precise questions. Such as what is it that you're having problems with.

  • How to avoid double extension *jpg.tif when exporting layers to files?

    Please help, I checked all the topics related and it seems nobody bothers about this issue.
    When I do a Photomerge of a series of jpg files, Photoshop builds a multilayered file - but preserves in the name of each layer *.jpg 
    When I want now to export layers to files, the Scripting function will do the dumb thing and export each file with the original name - ending in JPG - , plus the extension required by me - for ex tif.
    It does the same if I chose to export as jpg files and puts double extension again < *.JPG.jpg> at the end of each file exported from a layer.
    I looked everywhere and couldn't find a way to solve this behavior, which forces me to do batch renames in Bridge.
    The next program where I need the files (After Effects) doesn't want to import these files with double extensions.
    Has anyone encountered this issue and what can be done to avoid these double extensions at Scripts/Export layers to files?
    Thanks for the answer

    I have just altered my script so that it will remove the extentions if found.
    http://www.scriptsrus.talktalk.net/Layer%20Saver.htm
    Also it would be better to use :-
    var layerName = activeDocument.activeLayer.name.replace(/\....$/,'');
    As this way it doesn't arbitory remove the last four characters, only if it finds a fullstop.

  • 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 message

    I got “Insufficient Memory” error messages in working on the job needed large files ( > 100MB) with AI 5.5 in office with below #1 PC spec. Error message starts to happen after working 15min to 1 hour depends on the file. I need to restart computer in each “Insufficient Memory” error message pop-up (otherwise the messages will continue to pop-up). Sometimes the file can’t be saved after the error message occurred.
    I have never encountered this memory issue at my home with below #2 Mac spec.
    #1 PC spec looks better than #2 Mac spec. Why PC can’t perform like Mac does? 
    Do you have any solution to fix the “insufficient Memory” issue in  #1 PC spec?
    I had already reset the AI preference as the following link but it doesn’t work.
    http://help.adobe.com/en_US/illustrator/cs/using/WS714a382cdf7d304e7e07d0100196cbc5f-630ca .html
    Our IT told me “He won't check whether there is any system or hardware problem (in PC #1 spec) because it will spend his much time in doing so.” 
    #1 PC spec (at work)
    Brand: PC desktop
    Processor: Intel [email protected]
    Memory: 16GB
    OS: Window 7
    #2 Mac spec (at home)
    Brand: iMac 27”
    Processor: Intel i7 Quad core @2.93GHz 1333MHZ
    Memory : 12GB
    OS: Mac 10.6 Snow Leopard

    Illustrator versions before CS6 use 32 bit processing
    http://stackoverflow.com/questions/639540/how-much-memory-can-a-32-bit-process-access-on-a -64-bit-operating-system

  • How do I solve 'error compiling movie. unknown error'?

    how do I solve 'error compiling movie. unknown error' when trying to export? I think a file is damaged or conflicting but how do I know which one?
    Also, how did this happen in the first place and how can I avoid it in the future?
    Thank you very much!!

    BSHF
    The answers are in the details which are lacking in your report.
    What version of Premiere Elements are you using and on what computer operating system is it running?
    Please check out the Adobe troubleshooting documents for this issue
    Error "Error compiling movie" during render or export
    Troubleshoot damaged projects | Adobe Premiere Elements
    After you review those documents and determine if either suggested troubleshooting scheme will work for you,
    then we can discuss the immediate and future actions.
    Looking forward to your follow up. Depending on your reply, next posts may require of you details
    a. project settings
    b. properties of your source media
    c. edits and inspection of Timeline content with the Timeline expanded with the -+ slider above the Timeline.
    More later.
    ATR

  • How do i solve the following problem. By starting up the message appears: could not found CoreFoundation.dll. Windows error 7

    By starting up the following message appaers: could not found CoreFoundation.dll.
    Windows Error 7
    How can I solve this problem?

    With Windows Explorer, navigate to your C:\Program Files\Common Files\Apple\Apple Application Support folder.
    Copy the SQLite3.dll that you should find there, navigate to the nearby Mobile Device Support folder, and Paste it in there also.
    Restart the programme all should be well
    In case that your OS is (64 bit)
    1. Open windows explorer, go to location C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    2. Copy file "SQLite3.dll"
    3. Now paste it in the folder  C:\Program Files (x86)\Common Files\Apple\Mobile Device Support
    4. Restart the programme, it should not display that message, it should be clear.
    Good Luck

  • Insufficient memory to perform operation

    When trying to open large Tab demited text files (70Mb - 370Mb) using the "Read from Spreadsheet file" vi I recieve a message stating that there is "Memory is full" followed by "insufficient memory to perform operation" . It is strange because these files open normally with excel. I get the same fault irrespective of the  VI used to read from the text file .  Please note that the code simply reads and displays with no other operations taking place.   Any ideas please.

    Hi caperng,
    have you read through the KB articles provided by muks?
    Let's do some calculations with your 370MB text file:
    - loading the file into a string: takes 370MB
    - converting the string to an array: takes (at minimum) another 370MB chunk of memory (yes, "Spreadsheet string to array" takes a lot of memory!!!)
    - displaying the array in an indicator: takes (at minimum) another 370MB chunk of memory (each indicator has it's own copy of the data!)
    So:
    "code simply reads and displays" a 370MB textfile takes (at minimum) 1110MB of memory...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • 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.

  • I tried to import a PDF of a line drawing into Photoshop Elements. The thumbnail looks fine, but when imported the file is empty. This used to work in the past. What is wrong and how do I solve this?

    I tried to import a PDF of a line drawing into Photoshop Elements. The thumbnail looks fine, but when imported the file is empty. This used to work in the past. What is wrong and how do I solve this?

    Hi
    The value of the Channel Strip volume etc is not stored within the C Strip setting, as you have discovered.
    If you really wanted, you could add a Gain plug to the strip, with it set to give the correct output level with the Fader set to 0
    (Or just set the fader manually in MS)
    CCT

  • Hi, I have problem with importing MOV files from SJCAM 4000. MOV files are in supported formats for Adobe Premiere Elements 11. But if I'm importing MOV file, only audio part is imported, video part is not imported. How can I solve this problem?

    Hi, I have problem with importing MOV files from SJCAM 4000. MOV files are in supported formats for Adobe Premiere Elements 11. But if I'm importing MOV file, only audio part is imported, video part is not imported. How can I solve this problem?

    haben
    From looking at the specifications of your camera (SJCam 4000), we know already what video compression your camera is using. It is H.264.
    A H.264.mov file should be supported by Premiere Elements 11. On what computer operating system is your Premiere Elements 11 running?
    Do you have the latest version of QuickTime installed on your computer? And, are you running QuickTime and Premiere Elements 11 from a
    User Account with administrative privileges? Please go to Premiere Elements 11 Publish+Share/Computer/QuickTime to confirm that you find
    presets there for the QuickTime choice there.
    What are the properties of these H.264.mov files - is it 1080p30 (1920 x 1080p30)  or something else? Do you know if this camera is recording with a variable or
    a constant frame rate?
    Please review and consider and then we will decide what next.
    Thank you.
    ATR

Maybe you are looking for