GIMP :: Menu Filter Unbound Variable?
Feb 23, 2013
My problem is it's in its own menu under Filters and I would prefer to have it under Light and Shadow. So I open the script using Wordpad like I've done many times before with similar scripts and go to edit the menu path. I make the change, save it, and refreshed the scripts and I get the error "eval: unbound variable:" I tried changing it back and I got it again.
Here is the code, again the only line I've changed is
"<Image>/Filters/RSS/Ray S_tudio" to "<Image>/Filters/Light and Shadow/Ray S_tudio"
;Ray Studio v0.2;;Ray Studio - ray effect creation script;;;Version history:;==================================================================;ver. 0.2 (November 27th 2011); - official release;;==================================================================;script-fu-ray-studio;Main function;LIST OF ARGUMENTS:;IMAGE - processed image;;LAYER - processed layerй;;FLOAT - lightning edge;;COLOR - ray's tone color;;FLOAT - ray toning
[code]....
View 2 Replies
ADVERTISEMENT
Nov 5, 2013
I'm attempting to write a batch script to add some layers to a pre-existing image and save a copy. I've gone through the tutorial, and have run the demo code from Basic_Batch with no errors, but my (what I think of as simple) script throws an "Error: eval: unbound variable: ?" It also seems to cascade the error to other scripts, as I then get "unmatched parentheses: 2" errors from what I assume to be the script immediately following my own during Script-Fu load. This occurs whether running from batch or clicking "Refresh Scripts" from the Script-Fu menu.
What I could find on this forum and Google suggests that I may be required to 'define' one or more of my variables before using it, but for the life of me, I can't figure out which one that would be, and the error (reporting that '?' is undefined!?) I've quintuply (probably more ~_^) checked my parenthesis matching, but they look fine to me.
In case this was an encoding issue, I've tried saving my .scm file as both UTF-8 and ANSI. I should also note that I'm running Windows 7 x64 in English-US.
Script:
(define (script-fu-build-imagebasefilemytext)(let*((image (car (gimp-file-load RUN-NONINTERACTIVE basefile basefile)))(drawable (car (gimp-image-get-active-layer image)))(title (car (gimp-text-layer-new image mytext "Courier" 18 UNIT-POINT))))(gimp-image-add-layer image title -1)(gimp-image-clean-all image)(gimp-file-save RUN-NONINTERACTIVE image drawable "K:\\Images\\Temp.gif" "Temp.gif")));
Since I intend for this script to only be run from batch, I haven't bothered including the typical register stuff.
View 6 Replies
View Related
May 16, 2013
My decor filter has disappeared from the filters menu. Was using it yesterday, no problem. Today, it's just gone. I have uninstalled Gimp and reinstalled it several times and that does not work.
The version I am using is 2.8.4 and I have a PC with Windows 7. I have been using the program for the last two months with no problems and the more I use the more I like it.
Just to add the issue, I installed Gimp 2.8.4 on my wife's computer, and the filter is there.
View 1 Replies
View Related
Nov 27, 2012
Photoshop CS5 already in 32-bit mode; Lighting Effects filter not showing in the FIlter Menu.
View 38 Replies
View Related
Jul 19, 2013
A co-worker scanned a photo and emailed it to me to edit it and try to improve it, but everything I want to do is grayed out so I can't select it and I can't figure out why. Maybe it has to do with how she scanned it?
It's CMYK, 300 dpi, and 8 bit.
I'd like to sharpen it and adjust the hue/saturation, but they're grayed out.
why this is happening and how I can work around this so I can make the changes I need to make?
View 3 Replies
View Related
Aug 14, 2013
why not appear filter gallery (fade out) in filter menu
View 2 Replies
View Related
Oct 8, 2013
I do not have the Camera Raw filter in my filters menu, and I've just updated Photoshop this AM.
View 1 Replies
View Related
Oct 13, 2005
I was doing a project at school on a PC and I came home and went to continue on my Mac and most of the options on the filter menu aren't there, specifically the artistic submenu, I searched through all the other menus and can't find it anywhere, am I just blind or is there something wrong with my copy of PS?
View 4 Replies
View Related
Jun 21, 2013
Camera raw as a filter is not showing in the filter menu. Im on Photoshop version 13.1.2 .
View 2 Replies
View Related
Jul 2, 2013
In windows I always use ALT+T shortcut to open Filter menu in Photoshop. That make my work faster.
How can I do the same thing on MAC? I can not understand.
View 17 Replies
View Related
Oct 16, 2012
I'm testing a Photoshop plugin that's been dead since 2002, and runs in Mac OS 8.1 or higher, as well as Mac OS X up to Adobe Photoshop CS2. It's installed correctly in Photoshop 5.0.2 on Mac OS 9, but it only appears in the Filter menu on Photoshop CS2 in OS X.
View 23 Replies
View Related
Apr 24, 2008
I would like to Smart Sharpen the white type in a green 8-bit .GIF image.
I have Saved it AS a .PSD file but all the Filter menu options stay grayed out.
Photoshop CS2. Windows XP Pro SP2
View 2 Replies
View Related
Sep 4, 2013
I'm sure 'variable transparency' is not the right way of putting this.
I have an image which has some text in white. However because of the aliasing the text is not 100% white against the background (black). Rather; the edges are shades of white.
I want to convert the image so that the text is transparent. If the text was 100% white it would be simple. Colors.. Colors To Alpha. However that doesn't work as it doesn't deal with the shades of white around the edges of the text.
I want the shades of white to be transparent with the same degree of opacity as they white. So the white in the image is 100% transparent and a pixel which is say light grey to be 90% transparent. (The end image is going to be used as a webkit mask; showing the background behind the masked element).
I don't know where to start with this. I know PNGs support 8 bit transparency so it should in theory be possible.
View 4 Replies
View Related
Jul 2, 2013
I am not able to find upright control under lens correction in camera raw 8.1 also how to add camera raw as filter under filter menu in adobe photoshop cs6
View 4 Replies
View Related
Feb 1, 2013
Can I have the "Brush Stokes > Spatter" filter appear in the Filter menu instead of selecting from a filter gallery in CS6?
View 1 Replies
View Related
May 9, 2012
I've been trying to make gimp-curves-spline get variable (which is number)instead of number and I get error.
For example -when I do:
*(gimp-curves-spline drawable 0 6 #(0 0 0 15 255 255))*
everything works well as it should be.
but if I do:*(define spoint 15)*
*(gimp-curves-spline drawable 0 6 #(0 0 0 spoint 255 255))*
I get an error: *Error: Item 4 in vector is not a number (argument 4 forfunction gimp-curves-spline) #( 0 0 0 spoint 255 255 )*As you can see, all I did was replacing the number 15 with a variable(which is a number) I also check it is a number by the *number?* type predicate
View 2 Replies
View Related
Sep 2, 2011
Where is it? On page 332 of Gimp Bible (2010) it illustrates it in the dialog box, but it is not present in mine. I think that I am running the latest version.
View 12 Replies
View Related
May 20, 2012
Got a problem here with the map to object filter, or maybe it's just a case of it can't do what I want it to. I thought it best to ask here to find out for sure.
s.xcf (Size: 146.5 KB / Downloads: 30)
The circle at the top and in the foreground is the one that I want to map to a cylinder, but no matter what I do I can't seem to get ride of the other two circles, the one at the bottom and the one in the background. I can erase them after the mapping's finished but I was hoping to find a way to prevent them appear in the first place.
View 6 Replies
View Related
May 8, 2006
I have PS 7.0 intalled on my IMAC, G5, OS10.4.6. The program works fine except for the Filters. The dialog boxes opens OK, but the image does not display in them, even with Preview checked. I tried it also, in Classic, and again, everything but the Filter menu worked.
These are plug ins (I think from a 3rd party.) If I knew who the 3rd parties are I thought I might get a patch. How can I find out about those 3rd parties?
I downloaded a trial version of PS CS2. The filters work fine on a file I CREATE in CS2, but if I click on an image created in PS7 it switches out of CS2 and into PS7 (where the filters don't work.)
Bottom line:can I copy my PS7 images into CS2 and get the filters to work there?
Adobe said I should buy CS2 for $169 and purchase a phone support contract for $159 for a year so that I could discuss it on the phone!!!
View 2 Replies
View Related
Mar 4, 2004
I'm using Photoshop CS.
When I click on the "Filter" menu,
the following sub-menus are disabled:
Artistic
Brush Strokes
Distort
Pixelate
Render
Sketch
Texture
Video
All I have are Blur, Noise, Sharpen, and stylize!
View 9 Replies
View Related
Nov 3, 2012
I am using Mac 10.7.5 and Gimp 2.8
Earlier today Gimp crashed every time I tried to open a .xfc image.
I eventually resorted to uninstalling Gimp and downloading it again.
It worked fine until I stared using the Filters - specifically the Alpha to Logo > Glossy.
The first time is just, but worked after I Force Quit Gimp and tried again.
However, since then Gimp just hangs every time I try to use the Glossy filter.
I've removed the x Quartz X11 I downloaded for earlier versions of Gimp from my utilities folder. Still no good.
There is another X11 application in the same Utilities folder, but I don't know if I put it there or it belongs with Lion.
I don't know how there was two X11 apps, but they do have different logos.
View 2 Replies
View Related
May 28, 2012
I want to make a normal map with Gimp.
All the tutorials say go to Filters>Map>Normal Map This option doe not show in my Gimp.
Is this an error? Do I need a plugin?
View 1 Replies
View Related
Apr 6, 2012
Having a problem in Gimp 2.6.11 on Windows 7 x64 system. You can watch the video, linked below, but the basics are: I do a selection, scale the selection, make a new layer out of the floating selection result. I try to run a RGB Noise filter on the new layer and no preview shows in the filter dialog or it doesn't show correctly. If I anchor the floating selection into the original layer, instead of making a new layer out of it, the preview shows correctly. Is this a bug... or?
Here is the video link: [URL]
View 3 Replies
View Related
Feb 16, 2012
I want to write a Java program that mimics the plasma filter. However, my first few (as in 30-40) attempts have not been very successful. If GIMP provides algorithms or source code for the filters anywhere?
View 1 Replies
View Related
Aug 22, 2012
I'm learning how to write script-fu scripts. I've managed to resize an image, but I would like to use a filter from within the script-fu script, applying it to the image after it's been resized. More specifically, I'd like to run the Filters->Generic->Dilate filter on the image, before saving it. I've searched on Google for how to do this, but I can't find any references to using filters from within a script.
View 5 Replies
View Related
Aug 12, 2011
Searched three fora: this, General, and <I forget>. I looked for a Developer thread thinking this might already be a requested feature, but did not find one.
When I have a filter window open, most often there is a "preview" window--of fixed size--which I can pan, but not so far not figure out how to zoom to see detail.
I wish I may I wish I might:
- be able to resize the "preview" window
- be able to zoom in to see the effects of the filter better
View 1 Replies
View Related
Apr 1, 2013
I am running Mac OS X 10.8.3, Gimp 2.8.4 and Python 2.6.5
I remember using Slice in the past, but I can't remember if it was before upgrading to Gimp 2.8. Now, there are only 2 items (Image Map and Semi-Flatten) under the Filters/Web menu. Slice isn't there.
View 5 Replies
View Related
Jan 9, 2012
So, yesterday I was trying to halftone an image. Everything was working fine, but I couldn't figure out how to use it the way I wanted to. So I found a tutorial. I read it, figured out what I was doing wrong, went on my way. Everything seemed fine.
Then I went to use my newfound knowledge, and lo and behold, the Newsprint filter stopped working. No matter what I tried, the preview image looked just like the original. And when I tried applying the filter anyway, figuring maybe something was just up with the preview panel, nothing happened. The filter pauses to load when I change something, acting like it's working, but nothing happens. The closest thing I've been able to get was the image completely disappearing when I change a certain setting (switch to luminosity, in case you were wondering). I tried googling my problem, but all that gets me is tutorials and the how-to-use guide.
View 4 Replies
View Related
Nov 1, 2011
I want to make a basic color filter over my image that, for instance, filters out every color that isn't red. so everything that was red would show up as normal and everything that was blue or green would show up as black.
How do I do that in gimp?
View 1 Replies
View Related
Dec 17, 2012
I'd like to know how to apply a "filter" to a bunch of images. By "filter" i mean a grid for sharing image in equals parts. How to be able to locate elements in a image. And to "apply" this grid to all the images of a directory even by script-fu if necessary.
View 2 Replies
View Related
Aug 4, 2012
Is there a stock filter or one that can be added to GIMP that sort of rounds the edges of sharp parts of an image?
I'm looking for a filter or effect that can round the sharp edges of a bitmap image of a font, to give it that 'Xerox Machine' effect where a sharp font looses it's sharp corners and gets a rounded effect from being copied over and over.
I already tried the 'Gaussian Blur' filter, but that just creates soft edges and not the rounded corners that I'm looking for. The effect that I'm looking for is not fuzzy or blurred, but is more of a 'rounded corners' effect... it can be seen in the attached image that is below.
Attached File(s) Universal_Picture.jpg (34.92K)
Number of downloads: 4
View 4 Replies
View Related