adobe-illustrator

How can I make colors in Adobe Illustrator line up more closely with colors on the iPhone 4?

不打扰是莪最后的温柔 提交于 2019-12-11 04:28:07
问题 Images with vibrant purple colors in them look washed out and faded on the iPhone 4's screen. This effect happens with other colors too. Also, purples in Illustrator look almost blue on the phone. I should add that I don't really have this problem when viewing the images on an iPhone 3g. EDIT: Has anyone else had a marked color difference between Illustrator/Photoshop and the iPhone 4? 回答1: Take care that 3G/3GS/4 doesnt have same display components and consequently not the same colors. Got 4

Why do my svg look so bad?

こ雲淡風輕ζ 提交于 2019-12-11 03:25:44
问题 My svg looks very bad in Google Chrome and Firefox too, the Svg borders have poor quality: Meanwhile, in Illustrator the svg looks awesome: I have saved the .svg file with this configuration: What is happened? 回答1: If your SVG has a lot of horizontal and/or vertical lines, you can improve its appearance by aligning the coordinates to the pixel grid. I'll give you an example: Here are three SVG images made of rounded rectangles. (The source code for these images is pasted below.) In (A), the

VB: Assigning to a Boolean property in Adobe Illustrator, Photoshop

放肆的年华 提交于 2019-12-10 20:04:01
问题 While automating Adobe Illustrator CS3 using VBA I discovered that assigning a Boolean variable to a Boolean property results in assigning False always: Dim New_Path As Illustrator.PathItem Dim v As Boolean ' ... v = True New_Path.Filled = v ' ERROR: New_Path.Filled is False v = False New_Path.Filled = v ' New_Path.Filled remains False Assigning to a constant works fine: Dim New_Path As Illustrator.PathItem ' ... New_Path.Filled = True ' New_Path.Filled is True New_Path.Filled = False ' New

Illustrator/SVG to JavaScript workflow? (A templating library?)

拥有回忆 提交于 2019-12-10 16:29:13
问题 When "Saving as SVG" in Illustrator, this is the typical result: <?xml version="1.0" encoding="iso-8859-1"?> <!-- Generator: Adobe Illustrator 15.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="841.89px" height="595.28px" viewBox="0 0 841.89 595.28" style=

I need Illustrator script to find a combination of numbers in a range

旧城冷巷雨未停 提交于 2019-12-10 12:02:18
问题 I need to be able to find colors based on the RGB number brake down. I am not 100% how to make this work. Here is kind of what i am looking for. \var aDoc = app.activeDocument; var rgbCol = new RGBColor(); rgbCol.red = x >= 200 && x <= 220; rgbCol.green = y >= 200 && y <= 220; rgbCol.blue = z >= 200 && z <= 220; aDoc.defaultFillColor = rgbCol; app.executeMenuCommand("Find Fill Color menu item"); Each one of the RGB numbers can be different from each other. Any ideas? 来源: https://stackoverflow

How to use .svg files in a webpage?

浪子不回头ぞ 提交于 2019-12-09 04:11:43
问题 I want to know how can one actually use a .svg file In a web page? 回答1: See svgweb quickstart and the svgweb project homepage for something that works in all browsers including IE (requires flash plugin). There are many ways to include an existing svg file: <img src="your.svg"/> <object data="your.svg"/> <iframe src="your.svg"/> <embed src="your.svg"/> <div style="background:url(your.svg)">...</div> 回答2: If all you want to do is to place an SVG image such as a logo or static diagram, you just

Adobe Illustrator Error loading plugins

☆樱花仙子☆ 提交于 2019-12-08 10:28:38
问题 I was following a simple Hello World tutorial given in adobe illustrator CS4 sdk package. I followed all the steps and wrote C++ code in Visual studio 2013 and it built successfully without any errors and 2 files were generated *.aip and *.ilk. Now the tutorial said to place the plug-in binary file in the illustrator's plugin folder. It didn't specify which file is the binary file (I assumed the *.aip file) and the plugin path for illustrator (I think this is the path "C:\Program Files (x86)

Extendscript Toolkit 2 can't target Illustrator CS3

不羁的心 提交于 2019-12-08 08:19:27
I usually write scripts for Illustrator and save them in the scripts folder. Then during development I run them using alerts for debugging but this is getting tedious so I thought I would give the Extendscript Toolkit 2 IDE a go so I could use the console for logging. I've used it in the past a little bit however I can't use it now. In the top left corner of the main window there is a dropdown menu which should have all the apps which are Extendscript enabled but Illustrator (and photoshop) aren't in the list so I can't run scripts from Extendscript and have them target my open documents in

How can I run an Illustrator javascript on all files in a directory?

久未见 提交于 2019-12-08 07:37:24
问题 I'm trying to use javascript to update an Illustrator file. I have a script that will modify an open file in the desired way (really just a text find/replace, but the text is encoded in the Illustrator data). The problem is I have hundreds of these files that I want modified in the same way in a directory. Is there a way for me to do this without having to open every single one of these files? I figure either: 1. there's a way to modify the existing javascript to read from the directory and

Extendscript Toolkit 2 can't target Illustrator CS3

断了今生、忘了曾经 提交于 2019-12-08 05:09:46
问题 I usually write scripts for Illustrator and save them in the scripts folder. Then during development I run them using alerts for debugging but this is getting tedious so I thought I would give the Extendscript Toolkit 2 IDE a go so I could use the console for logging. I've used it in the past a little bit however I can't use it now. In the top left corner of the main window there is a dropdown menu which should have all the apps which are Extendscript enabled but Illustrator (and photoshop)