GIMP :: Can't Add To Current Selection

Jul 24, 2011

When I hold Shift with the lasso tool, it doesn't add to current selection.

View 4 Replies


ADVERTISEMENT

AutoCAD .NET :: Get Current Selection

Feb 24, 2010

How can I get the current selection set? Editor.Get Selection() will prompt for a new selection, but I would like to check if the user has selected objects before running the command.

View 5 Replies View Related

Photoshop :: New File Based On Size Of Current Selection?

Mar 29, 2012

Is there a way to make a New file based on the current selection?

View 2 Replies View Related

Illustrator Scripting :: How To Center Current Selection To Artboard

Feb 17, 2014

how do I center my current selection to the artboard? just like hitting the "horizontal align-center" and "vertical align-center" buttons. I've been searching for the last two hours and before my head hits the keyboard.
 
What I'm struggling with: in my init function i create a new document and then copy all layers from the previous document step by step to the new document and then save it as SVG.
 
// Init
(function(){
          destination = Folder.selectDialog('Select folder for SVG files.', docPath);
          if (!destination){return;}
          holderDoc = app.documents.add();
          stepThroughAndExportLayers(docRef.layers);
}());
 
my problem is that holderDoc = app.documents.add(); always creates a document that is not the same size as my initial document where the layers get copied from.
 
so I want the exact same artboard size as in my initial document.I'm fine with either doing it as fixed values or taking directly the values of the inital doc. i tried this in the segment where I create the new document:
 
// Init
(function(){
  destination = Folder.selectDialog('Select folder for SVG files.', docPath);
  if (!destination){return;}
  holderDoc = app.documents.add();
  holderDoc.artboards[0].artboardRect = [0,0,128,128];
  stepThroughAndExportLayers(docRef.layers);
}());
 
and get this error message: "Error 1200: an Illustrator error occured: 1346458189 ('PARM')

Line: 83
-> holderDoc.artboards[0].artboardRect = [0,0,128,128];"
 
which from what I've read on the web means that illustrator doesnt know what document to pick. but i have called it directly. I do not want to fit the artboard to the images/layer. the artboard should always have a certain size. (for me 128px by 128px)
 
// edit: workaround
(function(){
          destination = Folder.selectDialog('Select folder for SVG files.', docPath);
          if (!destination){return;}
          var activeArtboard = app.activeDocument.artboards[app.activeDocument.artboards.getActiveAr tboardIndex()];
          var ABRect = activeArtboard.artboardRect;
          holderDoc = app.documents.add();
          holderDoc.artboards.add(ABRect);
          holderDoc.artboards.remove(0);
          holderDoc.artboards.setActiveArtboardIndex(0);
          //stepThroughAndExportLayers(docRef.layers);
}());
 
i now added a new artboard to the new document with the same size as the artboard on the initial document.i remove the predefined artboard on the new doc and set the new artboard as active the artboard is now not centered into the window. which lets illustrator place my image with ctrl+c -> ctrl+v somewhere outside the artboard.
 
i now need to align my selection to the center of the artboard. but i cant find any reference on how to center a selection to the artboard.

View 7 Replies View Related

GIMP :: Selection Handles On Non-freshly Created Selection

Mar 1, 2013

Right after one makes a selection, say by using the Rectangle SelectTool, is presented with handles that allow altering the selection.

If one then selects another tool without deselecting is being deprivedof these handles while the selection remains active thus rendering himunable to alter the selection in that fashion.

Thus forming my question: is there a way to make these handles to(re-)appear on a non-freshly created selection?

View 3 Replies View Related

GIMP :: How To Blend Selection Edges Of A Selection

Jan 13, 2013

I know how to blend selection edges of a selection in Gimp 2.8.2, but if I have only one side of a selection that needs blending, what should I do?

Lets say that I have a grey box on a black background and only want to blend the left vertical edge into the background.

View 3 Replies View Related

GIMP :: First Selection Disappear While Making Second Selection

Nov 21, 2013

Every time I make the second selection in a picture with the lazo the first selection disappear. what can I do to fix it?

View 8 Replies View Related

GIMP :: Convert Image From Current Resolution?

Apr 15, 2013

I want to convert an image from it's current resolution of about 72 pixels per inch to 600 dpi. How is that done? This project is for a corporation seal which measures 1.5 inches per side. The stamp maker needs a .jpg at 600 dpi.

View 14 Replies View Related

Photoshop :: PS CS3 - How To "exit" Current Selection?

May 20, 2007

Finding some "usability" issues with PS...If i want to edit a textbox I know I have to specifically select the text tool but after making a change to one text box im finding the only way i can exit the current textbox and select another is to click another tool on the toolbar, then click the other textbox! Surely I should just be able to click the next textbox straight away to select it(?) Or there be some short cut to exit current selection (?)

View 2 Replies View Related

GIMP :: Drag And Drop Photo Into Current Project?

Mar 4, 2012

I am trying to drag and drop a photo into my current project and it is coming in far too large - i try to re-size and it disappears

View 2 Replies View Related

GIMP :: Current Color Profile When Opening As Layers

Oct 6, 2011

I'm importing several hundred .png files to be played back as a gif and get this window popup several hundred times:

How do i go about disabling the message? it gets tedious "okaying" after just a few.

View 2 Replies View Related

GIMP :: Get Current Image Filename And Directory Name In Script-fu?

Jan 30, 2011

I need to process multiple photos every day in the same way and am trying to minimize the effort needed by automating Gimp with Scrip-fu, which seems to be kind of limited. My plan was to save the files in specified folders and using incron (an inotify service) to open them in Gimp; do a manual perspective backward transformation by hand and start a script would, resize them and based on their filename and what directory they came from, save them to the correct folders for display on web pages.

I'm having difficulty figuring out how to get the filename and directory which the images came from.

View 1 Replies View Related

GIMP :: Showing Masks As Overlay And Command To See Layer Underneath Current One?

May 20, 2012

1. Is there a "show quick mask" feature for showing masks?

I know Gimp has a "*Show quick mask*" feature which shows what you have(and haven't) selected by displaying a red overlay over your image,allowing you to add to or subtract from a selection by using the paintbrush, but I haven't found a similar feature for showing masks.

Photoshop has this feature (it's called 'reveal mask' I think) and it basically just shows a red overlay of your mask on your image so that,similar to the quick mask feature in Gimp, you can see where you have and haven't masked through.

(I don't own Photoshop so I'm not sure if the red overlay shows the opacity with which you've masked through or whether or not you can edit the mask when it's being shown as a red overlay.)

2. Is there a command for showing the layer underneath the current layer I'm working on?

This is another feature that I've seen Photoshop has that is useful for blending multiple exposures (and lots of things, really).

Basically it's just a keyboard shortcut for showing the layer underneath your current when you hold down a certain keyboard command (it's not something you toggle since it's meant for quickly viewing what's on the layer underneath your current one).

I know I can press space bar to show or hide the layer I'm currently working on, but I can't do that unless I focus into the layers dialogue first. It'd be nice if I could activate that functionality from anywhere,regardless of whether I'm focused on the layers dialogue.

Do either of these features exist in Gimp?

View 3 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Current View Align With Current Ucs?

Jul 20, 2013

how can i know if the current view/display is align with the current ucs?

let's say i have rotate the ucs about z axis 45 degrees and make it plan now i draw some things and then i change back to world

worlducs = 1

viewdir = 0,0,1

ucsxdir = 1,0,0

ucsydir = 0,1,0

but the display is still in the ucs z 45 (ucsfollow = 0) set the view to PLAN current (now the view is aligned) but the system vars does not change.

For a plan UCS, you would need to compare the VIEWDIR system variable and the cross product of the UCSXDIR and UCSYDIR system varaibles.

[URL]

View 7 Replies View Related

AutoCad :: Print PDF To Current Plot Settings In Current Drawing Directory

Sep 29, 2011

Is there a macro/script/deisel that will automatically print a pdf (cute pdf autocad lt 2007) to current plot settings in current drawing directory and give it the current drawing view name and number? Disk space not a problem these days and would save time to have a pdf copy of all drawing tabs readily stored in the directory ready for issue.

View 3 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Check Current Plotter Name For Current Tab

Sep 3, 2013

Technique that can check the current plotter name for the current tab and assign it to a variable?  i.e. can it be assigned to a variable to check if if equals "myplotter1".  The next step  - is there a technique to change the plotter name to "myplotter2.pc3".

I have partially done the latter part of this in the past using the -plot command line to ASSIGN a  new plotter but I would really like to only run the routine if it really needs to.  

View 9 Replies View Related

Edge Animate CC :: Get Current Label In Timeline From Current Location

Jun 5, 2013

I have 1 Next button that is used on the timeline.  Each position has a pause then a play so there is only 1 button.  I need to get the label info so I know where I am so I can save the location of the timeline that the user was at if they exited before they finished the process.

View 6 Replies View Related

GIMP :: Make Current Image Pattern Step And Repeated At Exact Distance From Parent

Jan 16, 2013

Make a current, parent image, pattern step and repeat at an exact distance from the parent.

I have a parent image 4.75"long X 2.00" high image I want the pattern repeated in the Y direction every 2.10" or with a .10" space between the images, to create a 1XN array or tiles or pattern?

I then want to print the new tiled, array image to the exact size.

View 2 Replies View Related

GIMP :: Get Rid Of The Selection Now?

Jan 4, 2014

I made a selection, I did what i needed to do with it but... how do I get rid of the selection now?

View 2 Replies View Related

GIMP :: Can't Use Selection To Path

Mar 9, 2013

I'm using GIMP 2.8.2 and I have problem with the Selection to Path tool. I've been using this tutorial [URL] to create a pie chart, but once I use the ellipse selection tool and create a circle I can't select to path (the option is greyed out).

View 4 Replies View Related

GIMP :: Remove Cut Out Selection?

Jan 21, 2013

I have a drawing that is 720X596 px and I have used the rectangular tool and select - invert, cut out a 222X444 px part that I need to save as a jpeg. However, I can not figure out how to either : delete the 720X596 drawing to leave the 222X444 drawing: or, select the 222X444 drawing to save it.

View 2 Replies View Related

GIMP :: How To Do New Layer Via Selection

Nov 10, 2013

I am used to making a selection of part of the image - then you see the marching ants around your selection. Now in Photoshop at this stage I just press Ctrl-j and the selection gets put into its own layer above the current one. How do i do this in Gimp? and can you set up a keyboard shortcut for it?

View 12 Replies View Related

GIMP :: Getting Rid Of Selection Tool

Apr 8, 2013

I've read that to "drop" a selection tool, you choose "Select" "None". But very often "None" is not available to select, so how do you get rid of the tool when it goes wherever you go, like a piece of chewing gum stuck to your shoe?

I've tried clicking it, double-clicking, clicking outside the image, pressing escape, it won't go away, so I have to close the image and start again.

View 1 Replies View Related

GIMP :: Can't Get Selection To Go Transparent

Oct 29, 2012

That's the gif. In the upper right is the white corner I need to get rid of. It shows in every frame of the gif

I don't know where to begin. I've tried selecting it, and making it transparent, but that doesn't seem to have any affect, so I think it might be deep-set into the image in some way. It's not just white paint on top of the layer.

View 6 Replies View Related

GIMP :: Get Offset From A Selection

Jul 6, 2011

Is it possible to get a offset from a selection? Something like the very useful offset tool in Google sketch up?

View 2 Replies View Related

GIMP :: Why Is Selection Merging Itself Down

May 9, 2013

I've created an image and saved it. It's a photograph, with text over.

Now I want to tear the top right-hand corner.

I've done many "tears" successfully, but this one is defeating me.

I use the lassoo to select the part I want to tear, then click Edit Cut, Edit Paste, and it creates a new floating layer. When I anchor that layer, it merges itself back into the original image.

In previous attempts, when I have anchored the layer, it has remained separate from the original.

What am I doing wrong that it is merging itself into the original?

View 14 Replies View Related

GIMP :: Transparency From Selection

Jun 25, 2012

I've to select an area ant turn the background transparent. Previously this was simple: select foreground, invert so background selected, toggle the transparency to 0% and hey presto, transparent background. Now when I do that it goes white.

I have tried using transparency - add alpha channel, and nothing happens: the menu stays there. Is that a glitch in y version of Gimp? and how can I now isolate the background and turn int transparent?

View 6 Replies View Related

GIMP :: Selection Not Copying?

Mar 27, 2012

When I use the rectangle select tool, hit copy, then paste into new image, I get nothing but an empty, transparent image the size of my selection.

I've successfully done this many times, but now, nothing.

my new image contains no image?

View 1 Replies View Related

GIMP :: Why Can't Cut (delete) A Selection

Mar 13, 2013

I 'open as layers' an image (a .bmp if that matters), use the rectangle-select tool to outline a portion of the image, then press Delete (or click Edit/Clear), expecting that my selection will be erased, but instead it deletes the entire picture.

I've been at this for an hour. "They" say that doing the same thing again and again and expecting a different result is evidence of insanity...

View 4 Replies View Related

GIMP :: Moving Selection Contents

Dec 27, 2013

I am using GIMP 2.8 on a MacBookPro with OSX 10.8.

I want to cut and move a selection (and, if at all possible, preserve and then enlarge the selection rectangle to perform a subsequent cut and move operation.)

I've got a graphic, let's say it's a 10x10 pixel square in black. What I want to do is to add a vertical column of white pixels in between every existing column of the image.

What I thought to do is the following: first, enlarge the canvas to twice the width of the image, so 20Wx10T (original image on left, blank extension on right). Now select the rightmost column of pixels and move the contents of the selection one pixel to the right. Extend the left edge of the selection rectangle 2 pixels to the left, to include the newly "blank" column and the next column of the image. Move new selection and contents one pixel to the right, and so on, until the expanded canvas is filled and there are 'blank' columns between every column of pixels in the original image.

However, I am unable to find a way to move the selection and its contents. I've tried every combination of secret handshake I can think of, but none work. I'm able to move the selection and essentially duplicate it in another location, but not by cutting it and moving it somewhere else, leaving the initially selected area blank.

View 5 Replies View Related

GIMP :: Promote A Selection To A Layer

Oct 29, 2011

I have a selection that I would like to promote to a layer. I feel that I have done this before but I cannot remember how.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved