Quantcast
Channel: Adobe Community : All Content - Illustrator
Viewing all 61891 articles
Browse latest View live

Exporting a logo to gif format and getting terrible results

$
0
0

Hello

 

I have a logo in Illustrator CS6, and I am saving it for web to a gif format and I am getting terrible results.

The gif size has to be 125 pixels wide by 45 pixels high, and file size 2K or less.

 

I have set up my Ai file at that pixel size, and then I save for web.

 

Any advise would be appreciated. I have wasted so much time on this.

 

thanks


Print Presets

$
0
0

I need to know how to import print presets in adobe illustrator cs6

Check In / Check Out Solutions

$
0
0

Does anybody know of any Check In / check Out solutions that integrate with Illustrator (and Photoshop if possible)?

 

Thanks

Sean

gpu desactivado innecesariamente en ultima actualización de illustrator

$
0
0

Esta tarde actualicé illustrator CC 2015, con la esperanza de que haya solución a algunos problemas de estabilidad en el uso de aceleración con GPU. Pero este "update" es enrealidad un "DOWNGRADE". Quitaron el soporte de GPU para illustrator en 32 bits.


Tengo un sistema MUY capaz de utilizar la aceleración 3D, pero con menos de 4 GB de ram, lo cual hace no aconsejable que use un SO de 64 bits. Y luego de "actualizar" illustrator, me QUITA el soporte a funciones GPU.


Ya me había habituado a un ritmo mucho más rápido de trabajo con el nuevo zoom/pan que utiliza la GPU, y más aún que eso: finalmente tras décadas, los efectos no sobrecargan el CPU en renderizar por software, sino que aprendieron a aprovechar el GPU para evitar todo retraso, y mostrar cambios inmediatamente sin "rendereos", y ahora lo quitan?


que mal Adobe. Pongan de regreso esta funcionalidad. Ahora estoy REinstalando a la anterior versión para recuperar esto, porque necesito TRABAJAR, no buscar soluciones en mil foros y archivos de ayuda!


A todos los usuarios de adobe cc 2015  en 32 bits aconsejo NO INSTALAR LA ULTIMA ACTUALIZACIÓN.


No es una actualización, es quitar beneficios.


Una vergüenza.

what tool to draw lines and connect them?

$
0
0

Hi Gurus,

 

I have an image that i am trying to recreate...  I have tried the live trace tool, but I am unable to accomplish what I need.  (separate request for help)

 

I've tried line drawing but I'm having a terrible time and I must be doing something wrong... using the wrong tool.
A lot of the lines will be straight, others curved. (hearts on the barn doors).  I don't want to trace every line... but definitely shape of the barn, the doors & braces, hearts  lights..

 

I will need to be able to resize the image after... all black lines, transparent background.

 

 

Images 1 & 2 are what i am trying to change to look similar to image 3...    Thank you in advance for any advance. 

BBB Barn2.png

BBB Barn2-C.png

Screen Shot 2015-12-21 at 1.00.50 PM.png

create a transparent vector image from photo

$
0
0

Hello Illustrator Gurus.

 

I'm struggling to accomplish something that I thought would be easy...  assuming it should be done with the live trace tool.

 

I have an image of the front of a barn which I want to trace to create a vector image... with a transparent background... the rest of the image (lines of the barn) to become black...   I managed to sort of create the look in P.S., but of course it's not vectored and it's black/grey on white (I need it clear).

 

I've been searching and searching Youtube and Google but cannot seem to find the answers... and now it's urgent.

 

Is there anyone who can PLEASE give me the directions in Illustrator?

 

Your help is very much appreciated!! 

 

Attached is the original image and the the drawn one.

 

Thank you!!
JenBBB Barn2.pngBBB Barn2-1.pngBBB Barn2-C.png

png image not showing up in CH

$
0
0

I have added a .png image to my AI file and for some reason when I open it up in CH it doesn't show up.  Any thoughts?

Create Color Transition Between Selected Objects - Illustrator Script

$
0
0

script_screenshot.png

Hello,

Again as a newbie scripting learner I'm trying to figure out creating color transition between selected objects in document.

Actually if object number is high it's resulting as image above. But I would like to make transitions sharper so if there is only 5 objects first color and second color should be on first and last object. Now it only starts transition.

 

I'd kindly like to ask your support to check or fix my script; (I guess it would be also handy script for designers...)

#target illustrator
// Color Transition between Selected Objects
// M.Sensoy
// Currently Not Working Properly...
// Bugs : Preview button not working
// Color transition step should be related with total selected object number.
// May be step factor would be added into dialogue.


var doc = app.activeDocument;
var i = 0;
var msgType = "";
var reversebutton = false;
// check if a document is open in Illustrator.
if( app.documents.length > 0) {
mySelection = app.activeDocument.selection;
var totalcount = mySelection.length;
var found = new Array (mySelection.length);
var defaultColor = 0xff0000; //var color = $.colorPicker(defaultColor);
var color = defaultColor;


// ____________________________________________________________________
// SCRIPT USER INTERFACE PART


var win = new Window("dialog", "Blend Colors");
var pnlScale = win.add("panel");
pnlScale.orientation = "column";
var stepvaluesgroup = win.add("group");
stepvaluesgroup.alignChildren = "top";
var buttongroup = stepvaluesgroup.add("group");
buttongroup.orientation = "row";
var choosecolor1 = buttongroup.add("button", undefined, "Choose First Color"); // CHOOSE COLOR BUTTON 1
var choosecolor2 = buttongroup.add("button", undefined, "Choose Second Color"); // CHOOSE COLOR BUTTON 2
var reversebutton = buttongroup.add("checkbox", undefined, "Reverse Layer Order?"); // REVERSE BUTTON
var previewbutton = buttongroup.add("checkbox", undefined, "Preview"); // PREVIEW BUTTON
previewbutton.addEventListener  ("click", function ()  {  previewbutton.value = true; colorchoose(); apply();} )
reversebutton.addEventListener  ("click", function ()  {  reversebutton.value = true; Main(doc, mySelection, totalcount);} )
var btnCancel = buttongroup.add("button", undefined, "Cancel"); // CANCEL BUTTON
var btnOk = buttongroup.add("button", undefined, "Ok"); // OK BUTTON
// ____________________________________________________________________
// Choose Color
choosecolor1.onClick = function () { colorchoose1(); }
choosecolor2.onClick = function () { colorchoose2(); }
previewbutton.onClick = function () { apply(); }
reversebutton.onClick = function () {  Main(doc, mySelection, totalcount); apply();     }


function colorchoose1() {
color_decimal = $.colorPicker(defaultColor); $.writeln(color_decimal);
hexToRGB = function(hex) {  r = hex >> 16;  g = hex >> 8 & 0xFF;  b = hex & 0xFF;  return [r, g, b];};
color_hexadecimal = color_decimal.toString(16); $.writeln(color_hexadecimal);
color1 = hexToRGB(parseInt(color_hexadecimal, 16));$.writeln(color1); return [color1];
}


function colorchoose2() {
color_decimal = $.colorPicker(defaultColor); $.writeln(color_decimal);
hexToRGB = function(hex) {  r = hex >> 16;  g = hex >> 8 & 0xFF;  b = hex & 0xFF;  return [r, g, b];};
color_hexadecimal = color_decimal.toString(16); $.writeln(color_hexadecimal);
color2 = hexToRGB(parseInt(color_hexadecimal, 16));$.writeln(color2); return [color2];
}


function apply() {
    for ( var i = 0 ; i < mySelection.length ; i++ ) {    // Find Difference
newcolor = new RGBColor();
//var red_dif =    ( ( color2 [0] - color1 [0]  ) / mySelection.length  )  / 255; // I tried like this...did not work...
//var green_dif = ( ( color2 [1] - color1 [1]  ) / mySelection.length )  /255;
//var blue_dif =  ( ( color2 [2] - color1 [2]  ) / mySelection.length  )  / 255;
//redstep = (red_dif / totalcount) /255;
//greenstep = (green_dif / totalcount) /255 ;
//bluestep = (blue_dif / totalcount) /255;

newcolor.red =  color1[0] + (( (i*0.5)*(color2[0]-color1[0])  )/255);
newcolor.green = color1[1]+ (((i*0.5)*(color2[1]-color1[1]) )/255);
newcolor.blue =   color1[2]+ (((i*0.5)*(color2[2]-color1[2]) )/255);
mySelection[i].filled = true;
mySelection[i].fillColor = newcolor;
mySelection[i].stroked = false;
 }
}
// Reverse Layer Order Function
function Main(curDoc, sel, amountofselectedobjects){    if (amountofselectedobjects){        if(curDoc.activeLayer.locked || !curDoc.activeLayer.visible){            alert("Please select objects on an unlocked and visible layer,\nthen run this script again.");        }else{            for (i = amountofselectedobjects-1 ; i >= 0; i--) {                sel[i].move(sel[amountofselectedobjects-1], ElementPlacement.PLACEBEFORE);            }                       return; //AND EXIT            }}}}
// APPLY  // OK BUTTON
previewbutton.onClick  = function() { previewbutton.value == true;} // Preview Button
btnOk.onClick  = function() { apply(); win.close();} // OK BUTTOn
btnCancel.onClick = function() { win.close(); } // CANCEL BUTTON
if (previewbutton.value == true) {
apply();}win.center(); win.show();

My "lock proportions button" in my Mac (OS X El Capitan), Adobe Illustrator CS5.1 no longer shows, and there's no way that I can "lock proportions" when changing the size of an item.

$
0
0

Does anyone know how to fix this problem?

Tab Spacing w/ Leader Dots - ISSUE

$
0
0

So, I've been using Illustrator and Adobe programs in general for YEARS and this is a new one for me....  I setup a list of ingredients and their "units" AKA the amount in the formula for a Product Tag that I'm working on.

  Screen Shot 2015-12-21 at 3.11.03 PM.png

As soon as I start to add the leader dots to the columns the 1st column is fine (See 1st Screen Shot Above) but as soon as I put the dots into the 2nd & 3rd Columns it doesn't line up anymore (See 2nd Screen Shot Below)!?!

Screen Shot 2015-12-21 at 3.11.34 PM.png

I've tried to adjust my tab widths (bigger & smaller), I've verified that my text has the appropriate Tabs in the spacing for Left and Right justification and everything else that I can think of.  When I bring it into InDesign it's fine....that's the most puzzling piece to this.  Anyone else encountered this?

 

Seriously Scratching my head....Any help appreciated!

 

j

Illustrator for Ipad Pro

$
0
0

Hey all, has anyone heard if adobe is making a full version of illustrator for ipad pro. I use that all the time on the desktop and use libraries as well. I draw scale drawings of floor plans and my library is full of assets that I can plop into my floor plans. Anyone have an alternative app for this is adobe isnt making one??

Illsutrator 10 Updates.

$
0
0

Hallo ich suche für Illustrator 10 updates - wo finde ich diese? danke.

nvidia shield tablet

$
0
0

Buona sera,

non riesco ad installare adobe illustrator draw ed altre app adobe su nvidia shield tablet con android 6 (le da come incompatibili) vorrei sapere il perchè, siccome è un tablet di nuova generazione, performate ed aggiornato...

Grazie

Я оплатил подписку на иллюстратор и всё равно не могу зайти в него. При нажатии на кнопку "лицензировать ПО", выводится сообщение "не удалось найти подписку, связанную с этим ID". Как мне всё таки начать работать?

$
0
0

Я оплатил подписку на иллюстратор и всё равно не могу зайти в него. При нажатии на кнопку "лицензировать ПО", выводится сообщение "не удалось найти подписку, связанную с этим ID". Как мне всё таки начать работать?

Unable to open files in Sure Cuts A Lot program with downloaded fonts

$
0
0

I have recently started having issues with my files not opening in Sure Cuts A Lot program from AI. I am using AI to create my designs and have used them in the past however recently in the last couple of days the files I have created will not open in the SCAL program. I have opened other AI files that were created at a different time with no issue. I thought originally it maybe because I am using a downloaded font but I tried a standard font and I am having the same issue. I am not sure if it is something I am doing wrong but I am using the same technique that I used on the other files. Hopefully someone can help me

 

Thanks


Arc Text (Bottom Only) in Ai CS6 and/or CC2015

$
0
0

How can I get my text to arc only on the bottom, leaving top horizontal and sides perpendicular to top?

See attached example please... Running CS6 @ home and CC2015 @ work.

arc text.jpg

Is CS6 compatible with OS X El Capitan? Specifically Illustrator and Photoshop., Is CS6 compatible with OS X El Capitan? Specifically Illustrator and Photoshop.

$
0
0

Before I update  my MacBook to OS X El Capitan, I want to make sure I'll be able to use Photoshop and Illustrator (CS6 - updating to CC is currently not an option for me). Thanks!

Greetings

$
0
0

GL.JOL2.png

Yuletide greetings to everyone out there.

For those who don’t recognize them, these are the 13 Icelandic Yule-Swains who come from the mountains one at a time on the days before Christmas, the last one arriving on Christmas Eve.

They are a disreputable bunch but do put small presents in good children’s shoes and potatoes into bad ones’.

And GLEÐILEG JÓL means Glad Yule in Icelandic; the standard season’s greeting, Yule being a much older festival than Christmas.

Illustrator Touch Workspace is missing on most Windows 8 Tablets

$
0
0

Hi there,

 

Adobe announced in the features of Illustrator CC 2014.1

 

"Access the full power of Illustrator on the go using a new workspace optimized for your Microsoft Surface Pro 3 or any Windows 8 tablet"

 

This is a false statement!!!

 

After contacting the Adobe support I got the information, the touch workspace was only tested on the Microsoft Surface Pro 3. So please, fix that! Only a small part of the Windows tablet users hat a Surface Pro 3. Myseld as example has a Acer Aspire Switch 10 HD.

 

So, please give this issue a high priority for the next 2015 release.

 

Many thanks!

Black lines appearing when moving around after I zoom?

$
0
0

So these black lines keep appearing every time I zoom in/out and move the file around to get a better view of an art board. I'm using Adobe CC on a MBP 15" with retina display. Any help would be appreciated.

 

Screen Shot 2015-12-22 at 10.38.34 AM.png

Viewing all 61891 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>