GIMP :: Can't Register Python Plug-in

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


ADVERTISEMENT

GIMP :: Duplicating A Layer (Python Plug-in)

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

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 View Related

AutoCAD Architecture :: How To Register Plug-ins

Nov 2, 2011

I'm using ACA 2012 (standalone) with Win 7 Professional  x64. When issuing the command to CheckStandards, I'm getting an error message stating that

"No plug-ins are registered on your system. CheckStandards cannot continue with a check until you have repaired the feature installation."

I repaired ACA 2012 and also determined that the file DwgCheckStandards.exe existed. Since I still get the same message. How do I register plug-ins in AutoCAD?

View 6 Replies View Related

GIMP :: Python Plugins Are Not Installing?

Sep 2, 2013

Python plugins are not installing. They don't show up. Script-Fu works fine though.

View 9 Replies View Related

GIMP :: Flip Through Python Console

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

Photoshop Elements :: Can't Get Both Images To Register In Layers When Try To Pin-register

Dec 29, 2013

I am usint Elements 12 and trying to utilize double processing but can't get the both images to register in layers when I try to pin-register?

View 4 Replies View Related

GIMP :: How To Remove One Out Of Three Layers Via Python - Fu Console

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

GIMP :: How To Manage Existing Images Layers With Python - Fu

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

GIMP :: Map-Object (python Script) - Error With Arguments

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

GIMP :: Plugin Doesn't Register Properly

Mar 3, 2013

I just wrote a very specific python plugin for someone who uses Gimp on OSX. The plugin doesn't appear in her menus so the installation may not be correct.

1) are there accurate instructions to install python plugins somewhere (preferably in the user's Gimp profile)? Is there a need to set some "executable" flag on the file (and if so how)?

2) in case the plugin doesn't register properly due to some syntax error, is there a way to check that out? On Linux one would start Gimp form a terminal, on Windows I believe gimp-console does it, but hat is the equivalent on OSX?

3) can some knowledgeable OSX user test that my plugin works correctly (PM me a mail address where I can send the plugin)

View 1 Replies View Related

GIMP :: How To Use Plug In Browser

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

GIMP :: Additional Add-ons Like Plug-ins

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

GIMP :: Genuine Fractals Type Of Plug-in?

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

GIMP :: High Resolution File - JPEG Image Plug-in Could Not Save Image

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

AutoCAD Inventor :: Listening To Events - Python To Write DXF Files Out

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

Maya Animation :: Software Hanging When Using Latest Python Script?

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

Paint Shop Pro :: Python Scripting - Input Dialog With Browse Button

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

Photoshop :: Why Does PS CS4 Register .psd-files...

Jun 4, 2009

ever since I a have PS CS4, it's driving me nuts that it registers .pdf-files for opening automatically.I want .psd-files to be opened (viewed) with ACDSee when doubleclicked, NOT Photoshop. I browsed through all the preferences, but did not find anything for that matter. Can anybody help me, so that Photoshop does NOT "capture" psd-files anymore ?

View 5 Replies View Related

Photoshop :: CS2: Register Dialog?

Nov 17, 2008

I already registered, but the register dialog comes up everytime I run photoshop.

Clicking do not register doesn't help. Next time I start photoshop the same dialog comes up again.

How do I get rid of this?

CS2 on vista

View 3 Replies View Related

Photoshop :: CS3 Register Now / Later Screen Not Loading?

Nov 19, 2013

Mac OSX 10.7.5
 
I have been using the CS3 products (Photoshop, Illustrator, InDesign) every day for many years at work. Working fine yesterday.
 
Try to use them today, the register now/later screen won't load properly (blank screen) so I can't select either option and can't use the apps. We usually "register later" without issue whenever it appears.

View 24 Replies View Related

Photoshop :: Register Album Starter Edition 3.2

Sep 17, 2013

I now need to register the photo shop album starter 3.2 that's on my computer?

View 3 Replies View Related

Photoshop :: Unable To Register PS (Proxy Prevents)

May 29, 2013

I assume that the inablity to register products when sitting behind a proxy is a common problem.

View 1 Replies View Related

AutoCAD 2013 :: Using Excel As Drawing Register?

Mar 5, 2013

update the title block attribute from the drawing register with capital letters and not lower case which has been entered into the drawing register.

That is everything that is updated from the drawing register is upper case when we want lower case.

View 7 Replies View Related

Photoshop Elements :: How To Register File Associations

Oct 21, 2012

1. How do you register file associations? In previous versions you could go into the File Menu and select which files you wanted Elements to open. I don't see that present in Elements 11.
 
2. After I crop a photo and save it the photo looks a little blurred and ragged on the edges, but it looks sharp in Windows Photo Viewer. How do you make it look sharp in the work area in Elements?

View 5 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Way To Re-register Classes

Jun 7, 2011

I have code that works on some computers but not on others, all running AutoCAD Civil3D 2010. The line of code that fails is: (set1 newldrstyle (vlax-invoke mldrdict 'addobject MLS_Name "AcDbMLeaderStyle"))

The error message is: Error: AutoCAD.Application: AcRxClassName entry is not in the system registry

I am assuming that the class name it cannot find is AcDbMLeaderStyle. On my computer (which runs the code successfully) I do have an entry for AcDbMLeaderStyle in the registry. I'll be at the site where the computers that cannot run the code are located tomorrow to check if they are perhaps missing this registry entry.

They have already tried both a repair install and an uninstall/reinstall, didn't fix the problem If it turns out that the AcDbMLeaderStyle entry is missing, is there a way to "re-register" the classes?

View 6 Replies View Related

Photoshop Elements :: How To Register Camera So 11 Will Recognize Raw Images

Jan 27, 2014

how to register camera so elements 11 will recognize camera raw images

View 4 Replies View Related

Photoshop Elements :: Can't Register Dragged Layers In PSE10

Nov 30, 2012

NB: I'm using the word 'register' in the printer's sense, i.e 'correctly aligned'.
 
I frequently edit multi-layered maps, in which each layer must be precisely registered (to the exact pixel) with the canvas. In older versions of PSE, when I've wanted to import layers from another file, I would turn off 'Maximise' mode in the Window menu, and drag the imported layers from one image onto the other.  By pressing the SHIFT key at the same time, the new layers would be precisely registered on the new canvas in the same relative position they were on the old canvas (if the images were different sizes, the old canvas would be centred on the new one). 
 
In PSE10 there is no 'Maximise'mode, so I use the 2-up option in the Arrange menu. However, pressing the SHIFT key doesn't seem to work any more, and the new layers don't come up in their original position.  Apart from manually lining up the layers, I can't find a way to register them.  The various 'Align' options aren't useful for this, as they re-calculate the centre of the layer based on its content. I need the layer to be aligned as it was on the old canvas, whatever the content of the layer. 

View 4 Replies View Related

Photoshop :: Blank Registration Screen On CS3 - Do Not Get Error Window Saying (Never Register)?

Nov 22, 2013

I cannot remedy the CS3 blank-screen problem on my Mac (Safari OS) with the suggested fix, as I don't get an error window saying "Never Register" after disconnecting internet and re-launching CS3. 

View 2 Replies View Related

Lightroom :: How To Get Additional Virtual Copies And PSD Files To Register In Collection

Mar 23, 2014

I accidentally resume my photo editing from the "folder" location instead of the "collection" location.  So now when I go back to my collection, none of the virtual copies and PSD files created are there.  The physical folder location has more files than the collection because of the extra PSD files.
 
I even tried to "Import" from the same folder location to see if LR would pickup the new virtual copies and PSD files.  But the crazy thing is LR does not register any "new photos". 
 
how to get the additional virtual copies and PSD files to register in my collection?

View 3 Replies View Related

Paint Shop Pro :: X4 Stuck On Register Screen AND Opacity Slider Slow

Sep 17, 2011

I just downloaded the trial version of paintshop pro x4. It worked for a while but the opacity sliders were extremely slow to respond. I thought this was my main problem but now every time I open the program it takes me to the register screen. When I register the screen goes white and nothing happens. If I close it the whole program closes. I have three emails confirm me for registering so I don't know why the screen pops up anymore... I was very happy to have more 16bit capabilities.

View 6 Replies View Related







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