Illustrator Scripting :: Batch EPS To High Res JPG
Jan 27, 2013
I am trying to write a script that can batch EPS to high res JPG (20 MP and over). I can set this up basically, but I have run in to a few problems.
The maximum scaling in jpeg export options is 776%, but some of my EPS files are very small in size - so 776% does not create 20MP rasters.
So, I need to find a way to enlarge both the vector and the artboard to a larger size before exporting for jpeg.
View 6 Replies
ADVERTISEMENT
Jul 9, 2013
When I save the file as EPS , I want to enable all the options in EPS Options Pallet. I have enabled all options except setting high resolution in Transparency option.
View 2 Replies
View Related
Sep 26, 2013
i can´t get any Batch script to run.For example a PDF making Batch with a folder selection.I always get the alert, no matching files found.I use cs 5 on a g 5 with osx 10.8.2..why does no file fit in the "mask" ?
Adobe permits you to use, modify, and distribute this file in accordance with the terms of the Adobe license agreement accompanying it. If you have received this file from a source other than Adobe, then your use, modification,or distribution of it requires the prior written permission of Adobe.
Export to PDFs.jsx
DESCRIPTION
This sample gets files specified by the user from the selected folder and batch processes them and saves them as PDFs.Edits by Patrick Mineault:
- only .ai files processed
- files saved in same folder as the input files
- export files have name (oldname)_export.pdf
- PDF settings: non-editable / acrobatLayers=false
for maximum compatibility with Preview
// Main Code [Execution of script begins here]
// uncomment to suppress Illustrator warning dialogs
// app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
var destFolder, sourceFolder, files, fileType, sourceDoc, targetFile, pdfSaveOpts;
// Select the source folder.
sourceFolder = Folder.selectDialog( 'Select the folder with Illustrator .ai files you want to convert to PDF');
[code...
View 9 Replies
View Related
Jul 24, 2013
i'm totally new to scripting. i have a bunch of illustrator cs5 files (actually some of them might be older cs versions). they all have an artboard size of 200 x 200. i need to resize them to 700 x 700 and save them as png24 preserving transparency and keeping the same file name. is this possible? if so, any examples?
View 1 Replies
View Related
Oct 16, 2013
I'm looking for a script that can convert .ai/.eps to PNG from subfolders or multiple level of subfolders. i found this awesome script posted a year ago here by Larry G. Schneider [URL] however it doesn't get the files from subfolders, just the one folder you specify.
View 2 Replies
View Related
Nov 25, 2012
I found a script that does the job, export tones of ai files to pdf, but I have some files which are in sub folders, and I was trying to find a way to modify this script to include subfolder, but no luck.
Adobe permits you to use, modify, and distribute this file in accordance with the termsof the Adobe license agreement accompanying it. if you have received this file from a source other than Adobe, then your use, modification,or distribution of it requires the prior written permission of Adobe.
This sample gets files specified by the user from the selected folder and batch processes them and saves them as PDFs.
Edits by Patrick Mineault:
- only .ai files processed
- files saved in same folder as the input files
- export files have name (oldname).pdf
- PDF settings: editable / acrobatLayers=true for maximum compatibility with Preview
// Main Code [Execution of script begins here]
// uncomment to suppress Illustrator warning dialogs
// app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
var destFolder, sourceFolder, files, fileType, sourceDoc, targetFile, pdfSaveOpts;
// Select the source folder.
sourceFolder = Folder.selectDialog( 'Select the folder with Illustrator .ai files you want to convert to PDF');
[code]...
View 11 Replies
View Related
Nov 20, 2012
I need to find a way to convert a LOT of ai files, individually, to low res pdf's. Preferably with the presets I want, not some defaults. I'm not interested in an action. I was hoping for a droplet, script, or something similar.
I did find this and it looked promising... [URL] ....
That almost worked. Ultimately, for some reason, it couldn't see the ai files sitting in the specified folder.
Running CS5 with MacOS 10.8.2
View 2 Replies
View Related
Nov 29, 2011
I'm looking for a script/program that if you run it, all the .eps files in a folder will batch convert to a png-24 with 250% scale.
View 20 Replies
View Related
Mar 20, 2012
I have a couple thousand AI authored EPS files with a specific swatch name (SpotBlack) that I would like to rename (black) -- is there any method to do this en masse, preferrably outside of Illy using a text editor?
View 7 Replies
View Related
Feb 15, 2010
is there a quick way how to renumber or batch rename all layers in a file so they would be named in consequent numbers? Doesn't have to start from exact number, I was wondering if maybe there is some sort of script that would work?
View 24 Replies
View Related
Nov 1, 2013
I have a couple of thousand old cliparts in .wmf format that I have to convert to .ai. What I need to do is simply open the .wmf, store it as .ai in exactly the same location.
Actions didn´t work because the files are in mutliple folders and subfolders. "Actions" keeped saving all the ai-files in the same folder. Which is kinda weird since this doesn´t happen when using the same action in PS.
Sure, there are some quality issues with converting wmf to ai - but for what we´re plannning the quality is sufficient.
CarlosCantos script at [URL]..... looked like the thing to do. Loaded it in apple script, patched the lines to open .wmf and saved it in the Illustrator script folder, but all I got was a bunch of error messages.
View 10 Replies
View Related
Oct 3, 2011
I created an Action to batch export a folder of .ai files to create 300dpi .png's of the .ai file's artboard. I did this by simply recording "Export...as png" with my desired settings then Batch running the Action on desired folder of .ai files. The files were successfully exported, the trouble is that the exported files lack a .png file extension. My intent is to take these PNG files and merge them into a single PDF using Acrobat Pro. Unfortunatly, without the .PNG extension, Acrobat Pro does not recognize the file types and does not let me use the Combine Files feature on them. Going back and manually adding a .png at the end of the exported files defeats the time-saving purpose of Batch Processing all together. Is there something I am missing or doing incorrectly? I have included screenshots of 1) My Batch Action settings 2) folders showing files without .png extension and 3) visual of what I see when I am trying to combine PNGs into a PDF.
View 4 Replies
View Related
Dec 18, 2012
I'm try to automate the importing of the Varaible and datasets into my graphs via Scripting, but the ImportVaraibles() function doesn't seem to work. Here is my Script, mostly copied from the example script provided with Illustrator (CS5). And, this works manually, using the file names in the script, via Load Variable Library
Set appRef = CreateObject(strIllistratorVersion)
'Open the file and import the datasets
Set docRef = appRef.Open(strTemplate & "200-500.ai")
'docRef.Datasets.RemoveAll
docRef.Variables("Yearbook").Delete
Here is the problem, after I delete the previous library, then this next line, right from the example, does nothing
The script then exits with 'No Datasets in this document'
docRef.ImportVariables (strXMLFolder & "Lumber_200-500.xml")
'appRef.DoJavaScript "alert('Template:" & strTemplate & strRange & ".ai | XML file:" & strXMLFolder & "" & objFile.Name & "^')"
If (appRef.Documents.Count > 0) Then
Set docRef = appRef.Documents(1)
[Code]....
If I remove that delete line, the script runs, but just uses whatever Variables I had last loaded, not the XML file.
It's simply not loading. What do I need to do to get it to load?
View 8 Replies
View Related
May 6, 2012
Can you access graph data through the scripting DOM?
View 3 Replies
View Related
Mar 16, 2013
the Script of creating mirror text and stroke text in Adobe illustrator scripting.
View 4 Replies
View Related
Nov 15, 2012
How do I show high level walkways and balconies (in dashed outline) on the ground floor plan in a high volume space?
Obviously I can turn the first floor RCP on in the view and manually draw the information, but I assume these lines won't move if the walkways above move (or am I wrong?). Also this seems slightly wrong given the amount of automation available.
View 4 Replies
View Related
Apr 12, 2013
The files i'm saving for web so i can get them in jpg (or gif) format are coming out very pixelated. this is when i print the image.
what is the best way to save for web an image and keep the resolution good.
using for a business card template. Every template will let me attach images i want to the project. to do this.. i "get file from computer" and it drops the image in but real small... then you are supposed to enlarge it onto your work however you want. well when i enlarge this image file, it gets pixelated badly. I'm thinking it's the way i'm saving it. i do not adjust anything when i save. maybe i should.
this is what avery template notes about the images i am allowed to use - When uploading the image, the maximum size allowed is 4 MB. You can only upload JPG and PNG images either as RGB or CMYK.
View 2 Replies
View Related
Jul 8, 2013
I have created a flier in Illistrator (CS6). I want to output a high res PDF, and went through the print window so I could customize it, rather than just 'save as PDF'. Now I can't find a way of converting the ps. file into the finished PDF product. Does distiller still exist? I don't have the acrobat suite and need this output swiftly.
View 6 Replies
View Related
Jan 23, 2013
I was designing a Business Card using Illustrator and after finish when I was trying to save the project like an .eps with High Resolution the program didn't work and gave me an error "Stopped working" , I tried again and the same happened..
View 1 Replies
View Related
Jun 21, 2012
I have a tif with following dimensions: 38.74 cm x 28.85 cm at res 300ppi.
Now this going to be printed on canvas that is 6.43meters x 5.77meters, I will adjust the dimensions with a frame so I do not need to stretch the image in any direction.
I have placed this image in indesign and illustrator and generated a high quality print (PDF) with dimensions 643 mm x 577 mm (as printing company works at 10%).
This is a close up of the image:
There is pixelation.
My questions are
Is the original tiff resolution not enough, it is quite a high res! If this is the case what size and res image do I ask my photographer to produce.Or do I accept the fact that there will be pixelation?Can I do anything in photoshop, Illustrator to combat this problem?
As I will be doing more of these prints (sumner, NZ container ART project), I need to create a document with minimum specs, what do you think these specs should be.
View 4 Replies
View Related
Jun 2, 2012
I'd like to convert my file.ai to file.pdf in high quality. It is for a professional printer.(I have the CS5.5 complet with Adobe Acrobat Xpro and Illustrator.) I choose the parameter "high quality" and I save my file to pdf.
So I obtain my pdf with a beautiful image but a bad quality for one part of my text.
View 1 Replies
View Related
Oct 20, 2012
I am having trouble exporting a graphic in high-res format. The artwork I created is 2 inches by 2 inches in Illustrator, which is the size it will be when printed. When I export the file, I choose png and select '300 ppi,' leave anti-aliasing as 'none,' and use a transparent background. However, when I import the graphic into other applications (word, etc) the graphic is blurry and, in no way, high-res. I've tried exporting it as a PDF and get (from what I can tell with the naked eye) the same output. It might also be worth noting that I get a blurry output even inporting the .ai file, too. I've checked the Illustrator document resolution and it is set to maximum (300).
View 2 Replies
View Related
Nov 23, 2012
I'm looking for a way to print at around 200 lpi with a laser printer, but I don't know which one. I've bought a Laserjet Pro 200 n251mw but it doesn't seem to be able to print in halftone even with the PS emulation.
I'd like to be able to reproduce the distinctive rosette pattern on one of my collectible playing card. I've looked everywhere on google, but most of the doc about halftone is referring to low lpi work like T-Shirts.
The fact is that I can produce the desired halftone pattern I want in Illustrator, I just can't seem to find a way to print it. I've read about Xerox printers on this forum that are maybe able to do it, but I don't know. Is a 600 dpi laser printer enough or do I need more ?
Here's a sample of the halftone I want to reproduce, the canvas is approximately ¾ of an inch.
View 15 Replies
View Related
Nov 15, 2012
I will make an application for windows 8. So in the application, i will use traffic signs. However i need to seperate the icons one by one and save all of the icons one by one as "png" so how can i do this? you can download "AI" file by this link:[URL]
View 2 Replies
View Related
Oct 28, 2013
I am new to illustrator and am trying to export a high res image and its saying not enough memory?
View 4 Replies
View Related
Dec 19, 2013
Just noticed that when I save a job as a pdf in Illustrator CS6 the images become pixelated. The image is currently 300dpi in photoshop. I have tried several methods. I have to scale it down small, but I can't figure I've tried different settings with the pdf.I have also scaled it in photoshop and still doesn't matter.
View 2 Replies
View Related
Sep 28, 2013
I fully understand how to change a picture into a vector in Ai and to be clear, I don't want a silhouette or a black and white image, I want to use the picture. I have had good success with using the high fidelity option to change the pic and it looks great. The problem is, I am using a cutout and when I use the high fidelity option it fills the background in as white instead of a transparency. I've even tried to hit the ignore white button but it does not work. I've resorted to then opening it in PS and removing the white and saving as a PNG24 but, when you then open in Ai to work with again it's then again pixelated.
View 10 Replies
View Related
Feb 23, 2012
URL....I am editing thousands of images that need to be exported as High Res .eps's. Is there a way to make [High Resolution] the default rather than [Medium Resolution] ?
View 5 Replies
View Related
Oct 11, 2013
I am making a large back drop with a collage of photos of people. each image ranges from 8x12 to 16x 20....the photos I got from the professional photographers are showing up fine. My photos, taken with a 5D in Raw and exported at high res are showing up grainy...not sharp! I tried the raster settings like a friend suggested and set it to 150ppi or even 300ppi and no change..
View 5 Replies
View Related
Jan 24, 2013
I have copy AI objec to coreldraw using paste. The resolution is very low. How do I copy it in high resolution?
View 2 Replies
View Related
Nov 13, 2012
I'm having extreme trouble creating a high-res 3d wrapped image. Here [URL] .... is the image.
You can see that the 3d rendering is only a few points, all smooth curves. My raster effects settings are high (CMYK 300PPI). The symbol image that I've wrapped is a 300PPI JPG file created from Photoshop, saved as a JPG, then placed and embedded in AI. Yet that text is atrocious. You can even clearly see the poor anti-aliasing colors that are going on. Several letters are not able to be read at all.
I've tried rasterizing the object using high res settings, anti-alias on and off. I've tried copy/pasting as a smart object into Photoshop. I've tried almost everything I can think of and I can't get this text to appear crisp on the bottle. It's a simple bottle, only 4 or so points and there are only 3 possible surfaces to map. I deliberately drew it that way to reduce any drag on the system. I'm on a 2009 iMac running Mountain Lion and 16GB RAM, i5.
This issue has plagued me honestly for months and I always end up doing a significant amount of retouching in Photoshop because of it. I'd like to create a crisp 3d wrap in AI if possible to hasten my workflow.
Maybe the answer is that AI isn't really suited and I need to look into a more dedicated 3d program.
View 2 Replies
View Related