adobe-illustrator

SVG fine in browsers but broken (just shows a black box) in Illustrator or InkScape [closed]

 ̄綄美尐妖づ 提交于 2019-12-23 13:09:16
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I've got an issue with SVG files generated by a program. They validate fine, display fine in browsers and in OS X Preview, but display as a big black box in Illustrator or InkScape or various other programs. I suspect there's something to do with transparency or a tag not being supported or something, but I don

Color consistency between Photoshop, iPhone Simulator, and iPhone

只谈情不闲聊 提交于 2019-12-21 06:26:35
问题 I've been working a lot with Photoshop .psd files recently and have been bouncing back and forth a lot to ensure colors look just right on the iPhone. Can anyone offer some tips on calibrating macbook/apple cinema displays in regards to keeping color consistency between Photoshop, the iPhone simulator, and physical iPhones? 回答1: Have a look on LiveView created by Nicholas Zambetti. You need to install it on your iPad/iPhone/iPod Touch and on your Mac. when synced (Mac and device) you can have

Minimizing SVG file size [closed]

狂风中的少年 提交于 2019-12-20 09:49:34
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 8 years ago . I am saving map images created in Adobe Illustrator as .svg documents. What are some tips and tricks for making the file size as small as possible? 回答1: Turn off "Preserve Illustrator Editing Capabilities", which includes an enormous proprietary pseudo-binary blob in your file. GZIP your content (either

How to get the path coordinates of a shape for use with image-maps?

三世轮回 提交于 2019-12-17 15:27:01
问题 I am creating an image map using ImageMapster from here. I have created a photoshop image with several images that I have cut out from the original photographs. Each image is on a separate layer. Now, I need to get the path coordinates of each object, and I don't want to hover over every corner and manually write down each coordinate. Is there an automated way to get this path? Maybe there is some application or web service whence I can send my image and get the path in return? I have tried

Change resolution of EMF image files to prevent quality loss in PowerPoint

感情迁移 提交于 2019-12-13 14:24:33
问题 Exporting .emf (Enhanced Metafile) vector from Illustrator CS5 [and other versions tested] for use in MS office documents such as PowerPoint, can be a right pain. If you export them at a sensible size, the vectors don't have enough points and you end up losing accuracy on your shapes and strokes - so they look very low quality. If you make them bigger in Illustrator before exporting, the filesize remains approximately the same, but the vector accuracy is far better. But when you import into

How to get an SVG(+XML) image to interact with the page it is in

时光毁灭记忆、已成空白 提交于 2019-12-13 01:12:59
问题 In my aspx page I have a map of different countries as an SVG object, and a checkbox for each country: <object id="map" data="_images/map.svg" type="image/svg+xml"></object> <asp:CheckBox ID="chkScotland" runat="server" /> <asp:Checkbox ID="chkEngland" runat="server"/> The SVG was created in Adobe Illustrator. The polylines for each country are grouped (the shapes for each country were collected in a layer for that country in Illustrator) and the groups have the name of the country as their

Can I turn SVG and external CSS into EPS?

僤鯓⒐⒋嵵緔 提交于 2019-12-11 13:31:04
问题 I have several thousand d3 charts and my client wants to print them for a report. The client needs them in EPS. I have bought Illustrator to convert them but when I open the SVG file the formatting has disappeared. This holds even when I put the CSS into the html page itself and not externally. Is there any way I can turn CSS + SVG into an EPS? 回答1: I just tried this approach in my illustrator and it does honor the CSS declarations inside the <svg /> element. <svg xmlns="http://www.w3.org

How to select and delete every clipping masks in an Illustrator document using javascript?

浪子不回头ぞ 提交于 2019-12-11 12:36:08
问题 I'm making extend scripts for Adobe Illustrator CS6 (javascript) and I need to delete every clipping masks of a document. I already have a solution but it's not fast enough in big documents. Here is my code: var releaseClippingMasks = function(document) { var pathItems = document.pathItems; log('Looking for clipping masks among ' + pathItems.length + ' elements'); var n = 0; for(var p = pathItems.length - 1; p >= 0; p--) { if(p / 1000 == Math.round(p / 1000)) { log(p + ' remaining'); } if

How to embed .ai files in HTML5?

拥有回忆 提交于 2019-12-11 05:27:44
问题 Is it possible to directly embed .ai files in HTML5, so that the image is rendered automatically as per the size of the screen and resolution or do we need to convert the whole .ai files into .png of different sizes and then include them within. 回答1: You could export it as a SVG file, and embed that in your website. SVG is a vector format that all modern browsers understand. Adobe Illustrator should be able to export drawings to SVG, since it is a very widely used format. Since SVG is a

Export script for illustrator to save for web jpg

让人想犯罪 __ 提交于 2019-12-11 04:54:04
问题 Can anyone help me write a script for illustrator CC2017 that Export files to web (legacy) as JPG then save the file and close after. I have 700 files each with 2 art boards and it would be painful to click file>Export>Save For Web(legacy) then right the file name and save the file then close. 回答1: Here is the script as per your requirement. I have just updated Script 1 to match your requirement. By default it assumes ruler is in Points and convert it into inches and use in the file name. You