GIMP :: Unable To Make Python Plug-ins Work
Oct 11, 2011
I have followed the instructions here [URL]......... installed GTK+, fiddled and cajoled and still I cannot get python scripts to run from within Gimp. The scripts show up in the menu within Gimp, but when clicked on, do nothing.
I am using Windows 7 32 bit, Gimp 2.6. I installed Python 2.6, pygtk all-in-one installer 2.2.
View 3 Replies
ADVERTISEMENT
Jun 29, 2012
I'm trying to write a python plug-in, but it refuses to register. I went and downloaded another python plug-in, which did successfully register.
View 1 Replies
View Related
Jun 30, 2012
I want to create a plug-in that will improve detail in under- and over-exposed areas of photos, but I can't get as far as duplicating a layer. I'm new to GIMP plug-ins. My plug-in below is intended to create a copy of the image's layer and add the layer to the image.
The plug-in will register in Windows 7 (GIMP 2.8) but won't register in Ubuntu 12.04 (GIMP 2.6.12). In Windows, the plug-in gives an error. I don't get an error if I comment out line 8: Code:
View 2 Replies
View Related
Sep 2, 2013
Python plugins are not installing. They don't show up. Script-Fu works fine though.
View 9 Replies
View Related
Sep 13, 2012
I'm having some problems with a python command. I'm working on an image that is 640x640. I'm trying to do a horizontal flip of a layer with this command:
pdb.gimp_item_transform_flip(layer, 320, 0, 320, 1)
the flip succeeds, but it generates a distortion on the flipped layer. When I try to flip that layer through gimp's interface, it is smooth.
I understood that the input values for the flip function were the layer, x and y of one point of the axis from wich the image will be flipped, and x and y of the end point of that axis. Here is the failure in the flip that I mentioned: URL....
this shouldn't happen or the flip will be useless for what I am trying to do. (the eye with problems is the first one, from left to right).
View 2 Replies
View Related
Dec 31, 2012
I have a gif animation that has 190 layers. It's a too much. I want to remove one out of three layers via the python-fu console. Here's what I did :
image = gimp.image_list()[0]
image.layers = [layer for (index,layer) in enumerate(image.layers) if index % 3]
Traceback (most recent call last): File "", line 1, in
AttributeError: attribute 'layers' of 'gimp.Image' objects is not writable
What is the correct way of removing layers ?
View 1 Replies
View Related
Jun 22, 2011
how can I manage existing images, layers, ecc. with Python-Fu? Its methods don't accept IDs (unlike Script-Fu) and it returns me an error if I try to do it. More simply, how I can reference to an existing "IMAGE", "DRAWABLE", ecc. object?
View 1 Replies
View Related
Aug 5, 2013
I'm doing an script in python and i need use the map-object plug-in. I tried to use but always i have an error with the arguments and i can´t find out whats wrong.
I used reference examples of scm but didn't work, so one in python will be enough.
View 4 Replies
View Related
Nov 15, 2012
Suse 12.2, gimp 2.8-git branch installed in ~/gimp, compiled resynth-git prefixed there, too.Can call "heal selection" and Resynthesize, but the do nothing.
Example: I have a white square with one corner missing, the corner shows alpha. Now I select all the alpha, then call filter-map-resynth, tell it to look 50pixel further, run it, it calculates for a minute, munches cpu and all, and then...Nothing.The layer is correct, it has an alpha channel, alpha is not locked.Tried both heal and resynth.
-----BEGIN GEEK CODE BLOCK-----Version: 3.12GCS d--(+)@ s-:+ a C++++ UL++ P+>++ L+++>++++ E-- W++ N o? K-w--(---) !O M+ V- PS+ PE Y++ PGP t++(---)@ 5 X+(++) R+(++) tv--(+)@ b++(+++) DI+++ D- G++ e* h>++ r* y?------END GEEK CODE BLOCK------
View 10 Replies
View Related
Sep 30, 2008
I'm using 7.0 on my Lap-Top and I'm about to install CS3 on my Desktop
I have tried everything to get a Plug-In called Topaz to work in my 7.0
I have installed it and says has been Installed
When I open my plug-ins in 7.0 Its not there
Did some looking and looks like it's for CS2-CS3 only AND SOME HAVE EVEN SAID IT ONLY WORKS IN CS3 EXTENDED.
Is there anyway to get this Program to work on my (OLD AND OUTDATED BUT WORKING 7.0)
View 3 Replies
View Related
Sep 13, 2013
I am trying to make animations for my presentation of my master thesis. I have seen a couple of video tutorials where they just import the images as layers. My problem is that when I do this, all the layers seem to stack up together, so when I create the gif, the animation consists of the first layer, then the second one "on top" of the first one, then the third with the previous two, and so and so forth.
View 1 Replies
View Related
Sep 15, 2012
I found this image of my great grandparents( I think that's who it is) in albums from the estate of my uncle. Imbedded in the pages of hundreds of photographs was this one negative.
I don’t have a negative scanner, but I scanned it into my computer with my regular flatbed scanner, hoping I could figure how to work some magic with Gimp and get a regular picture out of the deal.
The best I could come up with was colors>invert. But that produced less than satisfactory results. In fact, in made it look more like a negative.
View 1 Replies
View Related
Sep 25, 2008
Will my 32bit CS3 plug-ins (Neat Image, etc) work with CS4? Also, will CS3 actions and scripts work in CS4?
View 25 Replies
View Related
Jan 27, 2014
whenever I try to run Autodesk 3ds Max 2012 with Gamebryo, and I use 'attach to process' debugging with Visual Studio, I get the error message "unable to find any plug-ins at: C:Gamebryo..." in 3ds Max.
Then, when 3ds Max opens up and I click on an icon such as Gamebryo Export, Gamebryo Preview, etc, I get the error message " syntax error: at /, expected <factor> in line: "Gamebryo/NiMaxOptions.h"// " in Maxscript. For example, for the Gamebryo-AutoPreview.mcr file, that message shows up on the line
[code]
DoGamebryoView(-1)[/code]
If I then include NiMaxOptions.h in the Gamebryo-Export.mcr file, like below, I get the error message: "syntax error at /, expected <factor> In line: include "Gamebryo/NiMaxOptions.h"//
[code]
macroscript GamebryoExport category:"Gamebryo Tools"
buttonText:"Gamebryo Export" toolTip:"Gamebryo Export" Icon:#("Gamebryo", 2)
(
include "Gamebryo/NiMaxOptions.h"
strFilename = GetExportValue "NiFilename"
GamebryoExport strFilename
)
[/code]
What is causing these error messages to appear?
View 1 Replies
View Related
Feb 11, 2013
Writing a plug-in with visual basic? Is there a specific version of visual that works with Autocad LT 2011? Or will express 2012 work too?
View 4 Replies
View Related
Jan 11, 2014
How to use a photo behind cut out text and everything was going fine until I tried to add text and change the color. The text is invisible even though I changed the color to white and the box resized itself really small and I can't see anything even though I set it to 150 px.
Try to unchecking the 'dynamic text' button but I don't see this button anywhere in my text tab.
I have never been able to successfully use GIMP for anything because of this problem with adding text. I have had 2 versions, Windows and Linux. Right now I am using it with Pangolin.
View 1 Replies
View Related
Dec 10, 2013
I've just installed PSPx6, downloaded and installed updates. I'm using the 64 bit version and it will not load any plug-ins. I've set the file locations etc.
I've been using PSP since version 7, so I'm pretty capable. This is really making me angry though. It's a useless program to me if it won't utilize my Dreamsuite, KPT, Filters Unlimited, Plaid lite, and Muras copies.
View 6 Replies
View Related
Mar 3, 2012
I am wondering how to use the plug in browser as if I am correct a plug in that is properly installed should show here and the tree view show where to access it.
Under file -->create -->buttons we have round buttons and simple beveled buttons but in the plug in browser tree view they come under file -->create .
Some of the plugins that do show up (3D outline) are temporary procedures. many others I cant even find (speed text). Is the problem the plug in browser or me if me where am I wrong ?
View 3 Replies
View Related
Sep 19, 2013
I just downloaded Gimp 2.8 and was wondering if there was anything else I needed to download before I got started with the learning curve, and it looks like a long one.
Many times when you download a program like this, you notice there are a lot of additional add-ons, like plug-ins, etc., and when you start to read about them everything kind of runs together and becomes much more complicated than it should be. I'm afraid I might step into the trap of wanting everything right now instead of just working with what I need.
View 7 Replies
View Related
Aug 13, 2011
Is there a Genuine Fractals type of plug-in for GIMP.
I'm looking for something that interpolates an image to a larger size better than just normal interpolation within the application.
View 6 Replies
View Related
Aug 18, 2011
So I am making digital color prints at 24x30. the photography work is about color fields and gradients, so I need super high res files. I have set the size to 24000x30000 pix at 1000 dpi..now my problem, when i go to save the gimp file as a jpeg i get this error message "JPEG image plug-in could not save image"
View 3 Replies
View Related
Jun 21, 2012
I wrote a small script in python to write dxf files out. I want to add this to a button on the ribbon. I got that sorted out and can get my button to appear where I want it. I am having trouble calling the script from the button though.
The API tells me that the button has an OnExecute() event that I should listen for to call my script. I have been searching on how to do that from python but I haven't had any luck.
View 2 Replies
View Related
Apr 21, 2013
i have made same rigging as wagon car rigging from DT.i have added suspension also.
for scripting part other scripting's is working all right.but scripting for tyres take time.
for auto_rev and revolve option it takes time.wheel spin rotates without any problem.
View 2 Replies
View Related
Aug 1, 2012
I'm fumbling around with a Python script. Is it possible to make an input dialog with a "Browse" button so the user can find a folder (to be loaded into a variable in the script)?
View 5 Replies
View Related
Jun 10, 2012
Since upgrading to LR 4.1 the "edit in PS function" in LR does not work. The process starts but then appears to hang. I have to force quit PS in order to be able to move on.
View 2 Replies
View Related
Feb 21, 2012
I've been using Photoshop for awhile now, but have just recently run into this issue. When I try to use a bright color, it doesn't work - it just automatically adjusts itself to different shade. Now, I figure this is an issue with my color setting, but I can't figure it out.
I attached an image of what I''m talking about below. You can see that although I've chosen to a bright green - it shows up much differently.
View 1 Replies
View Related
Sep 10, 2008
I am unable to get the 3d grips to work.They are turned on in the part settings,but they do not show up in the the menu when i RMB.
View 5 Replies
View Related
Jul 12, 2012
I recall being able to set the work path in Inventor LT 2012. As you can see, I was able to set the work path previously, but not anymore.
View 1 Replies
View Related
Nov 7, 2012
I cannot get Dynamic Input to work correctly on my AutoCAD 2013 installation. Polar Format is always the default no matter what the variable DYNPIFORMAT is set to. Neither using 0 or 1 as the setting will enable Cartesian Format to be the default for the second or next point. Changing the settings in the Pointer Input Settings dialogue box to Cartesian Format also has no effect. 2nd point always is entered as Polar Format. The over-ride for cartesian (,) does work though. I simply want the default to always be cartesian .
View 6 Replies
View Related
Oct 13, 2012
I am unable to get my erase brush to work. I click on the "Erase" option, the "-" brush comes up, I run it over the masker area and nothing is erased. I try the other option of holding the ALT key while brushing to erase, the "-" comes up, but nothing is erased as I run over the masked area.
View 2 Replies
View Related
Apr 11, 2014
Last night I was working on a file when the power went out. My no break didn't work and I didn't have time to save and shut down my mac. When the power came back and I started my computer and InDesign, I tried to open the file I was working on and the above message displayed. I clicked 'back to finder' button on this message and the program crashes.
View 8 Replies
View Related