It is currently Mon Apr 29, 2024 11:40 am


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 65 posts ]  Go to page 1, 2, 3, 4  Next
Author Message
 Post subject: indexprint
PostPosted: Thu Mar 02, 2017 9:23 am  (#1) 
Offline
GimpChat Member
User avatar

Joined: Jan 20, 2013
Posts: 14816
Location: roma, italy
GIMP Version: 2.8.20
Operating System: Windows
GIMP Experience: Basic Level

List any relevant plug-ins or scripts:
IndexprintDevelopment
(or even the previous one)




Hi,
"once upon a time" I was using under Gimp the "contactsheet" plugin and later on the enhanced and renamed filter "indexprint".
I tried to reinstall/use the last one but no luck.
Has somebody running gimp 2.8.20 on windows (64) this filter installed anr running?
Thanks

_________________
"Where am I ?"


Share on Facebook Share on Twitter Share on Orkut Share on Digg Share on MySpace Share on Delicious Share on Technorati
Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 9:43 am  (#2) 
Offline
GimpChat Member
User avatar

Joined: Jan 20, 2013
Posts: 14816
Location: roma, italy
Obviously it would be interesting also if someone tries to install and run....

_________________
"Where am I ?"


Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 9:47 am  (#3) 
Offline
GimpChat Member
User avatar

Joined: Jan 20, 2013
Posts: 14816
Location: roma, italy
For info, this is the page on the Plugin Registry

Attachment:

_________________
"Where am I ?"


Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 10:06 am  (#4) 
Offline
Script Coder
User avatar

Joined: Jun 22, 2010
Posts: 1171
Location: Here and there
To judge from the PDF you've linked to, it requires a pile of other things installing, which I'm not going to do, but I'll try to give you help debuging the problem anyway.

Have you installed all the other things?
What error message, if any, do you get?

Kevin


Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 10:09 am  (#5) 
Offline
GimpChat Member
User avatar

Joined: Jan 13, 2011
Posts: 2249
Location: Poland
Hi Diego.

It works well for Gimp Win 32bit - 2.8.20 and 2.9.5.
It requires additional libraries:
libglade-2.0-0.dll
libxml2.dll
and iconv.dll (only my requests).


Attachments:
Indexprint dev.png
Indexprint dev.png [ 597.01 KiB | Viewed 4957 times ]

_________________
Image

Slava
Ukraini!
Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 10:13 am  (#6) 
Offline
GimpChat Member
User avatar

Joined: Jan 20, 2013
Posts: 14816
Location: roma, italy
Thanks.
All those libraries are installed.
No error, simply does nothing (no parameters input windows shown).

_________________
"Where am I ?"


Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 10:19 am  (#7) 
Offline
GimpChat Member
User avatar

Joined: Jan 13, 2011
Posts: 2249
Location: Poland
And if you have a library: intl.dll ?

_________________
Image

Slava
Ukraini!


Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 10:21 am  (#8) 
Offline
GimpChat Member
User avatar

Joined: Jan 20, 2013
Posts: 14816
Location: roma, italy
Yes, is there.

_________________
"Where am I ?"


Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 10:33 am  (#9) 
Offline
Script Coder
User avatar

Joined: Jun 22, 2010
Posts: 1171
Location: Here and there
Try a bit of hacking!

Edit the IndexprintDevelopment.py file to add a couple of lines at the top:
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
import sys
sys.stderr = open("C:\\tmp\\gimp_python_errs.txt",'a')

Obviously setting the "open" path to somewhere that exists on you system

Then start GIMP and try and run Indexprint

Then look in the error file. When I try this without and of the other libraries installed:
Traceback (most recent call last):
  File "C:\Program Files\GIMP-2.8.14\32\lib\gimp\2.0\python\gimpfu.py", line 851, in _run
    res = apply(func, params[1:])
  File "C:\Users\brmp68\Downloads\audit\python\IndexprintDevelopment.py", line 153, in plugin_main
    import IndexprintDevelopment.gui    # import package that is meat of plugin
  File "C:\Users\username\Downloads\audit\python\IndexprintDevelopment\gui.py", line 36, in <module>
    import gtk, gtk.glade
ImportError: DLL load failed: The specified module could not be found.


Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 10:35 am  (#10) 
Offline
GimpChat Member
User avatar

Joined: Jan 20, 2013
Posts: 14816
Location: roma, italy
OK, I'll do.

_________________
"Where am I ?"


Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 10:50 am  (#11) 
Offline
GimpChat Member
User avatar

Joined: Jan 20, 2013
Posts: 14816
Location: roma, italy
Here the result
Traceback (most recent call last):
File "C:\Program Files\GIMP 2\32\lib\gimp\2.0\python\gimpfu.py", line 851, in _run
res = apply(func, params[1:])
File "C:\Users\Diego\.gimp-2.8\plug-ins\IndexprintDevelopment.py", line 155, in plugin_main
import IndexprintDevelopment.gui # import package that is meat of plugin
File "C:\Users\Diego\.gimp-2.8\plug-ins\IndexprintDevelopment\gui.py", line 66, in <module>
from IndexprintDevelopment import GenerateIndexprint
ImportError: cannot import name GenerateIndexprint

_________________
"Where am I ?"


Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 10:52 am  (#12) 
Offline
GimpChat Member
User avatar

Joined: Jan 20, 2013
Posts: 14816
Location: roma, italy
BTW, it is there...

_________________
"Where am I ?"


Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 10:58 am  (#13) 
Offline
GimpChat Member
User avatar

Joined: Jan 20, 2013
Posts: 14816
Location: roma, italy
screenshot

Attachment:
Cattura.PNG
Cattura.PNG [ 73.3 KiB | Viewed 1424 times ]

_________________
"Where am I ?"


Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 11:12 am  (#14) 
Offline
Script Coder
User avatar

Joined: Jun 22, 2010
Posts: 1171
Location: Here and there
How about a screenshot of where you've put it: C:\Users\Diego\.gimp-2.8\plug-ins\IndexprintDevelopment\ not where you downloaded it to before copying it!


Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 11:15 am  (#15) 
Offline
GimpChat Member
User avatar

Joined: Jan 20, 2013
Posts: 14816
Location: roma, italy
Here it is

Attachment:
Cattura2.PNG
Cattura2.PNG [ 60.59 KiB | Viewed 1420 times ]

_________________
"Where am I ?"


Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 11:21 am  (#16) 
Offline
GimpChat Member
User avatar

Joined: Jan 13, 2011
Posts: 2249
Location: Poland
last idea to check:

\Python\Lib\site-packages\pyexiv2\ ...14 files;
\Python\Lib\site-packages\gtk-2.0\gtk\glade.pyd ?

_________________
Image

Slava
Ukraini!


Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 11:29 am  (#17) 
Offline
GimpChat Member
User avatar

Joined: Jan 20, 2013
Posts: 14816
Location: roma, italy
First one I have but with 12 files.
Second one is there.

_________________
"Where am I ?"


Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 11:41 am  (#18) 
Offline
GimpChat Member

Joined: Dec 29, 2015
Posts: 223
I also miss this plugin in gimp in Ubuntu 16.04. I tried to install it but I could not do it. So I gave up. There was an exe file for large number of gimp plugins and scripts which contained Normal Map plugin. While installing Normal Map on Windows I had it along with Normal Map.


Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 1:01 pm  (#19) 
Offline
GimpChat Member

Joined: Mar 04, 2011
Posts: 2425
@Rashid

Just for info:

The old contactsheet v.2.16 is in the debian package gimp-plugin-registry.deb which you can install via the ubuntu package manager.

Strangely, by mistake, it installs in the scripts folder so I suppose no-one even knows it is there.

Since the package contains a host of scripts and plugins you will never use and even worse they are all in your /usr/lib../share folders, I recommend not installing that but download the deb, unpack and use what is required.

If you want to try this old plugin, it is attached: unzip, pop contactsheet.py into ~/.gimp-2.8/plug-ins check that it is executable. Find it in Filters -> Batch

looks like this in Kubuntu 16.04 64bit, Gimp 2.8.20

Attachment:
old216.jpg
old216.jpg [ 151.73 KiB | Viewed 1403 times ]


Attachments:
contactsheet.py.zip [7.98 KiB]
Downloaded 68 times

_________________
Image
Top
 Post subject: Re: indexprint
PostPosted: Thu Mar 02, 2017 2:26 pm  (#20) 
Offline
GimpChat Member

Joined: Mar 04, 2011
Posts: 2425
@Rashid

Version 4 works (at least a quick try & seems to) All the installation info is there on the developers web page
http://www.sullockenzlin.demon.nl/Gimp.html

Use your package manager to install

python-gtk2 python-glade2 and python-pyexiv2 plus whatever dependencies they pull in.

One folder from the zip file IndexprintDevelopment and one file IndexprintDevelopment.py go in ~/.gimp-2.8/plug-ins

The plugin registers in File -> Indexprint development. Looks like this in Kubuntu 16.04 64 bit Gimp 2.8.20


Attachments:
version4.jpg
version4.jpg [ 191.21 KiB | Viewed 1399 times ]

_________________
Image
Top
Post new topic Reply to topic  [ 65 posts ]  Go to page 1, 2, 3, 4  Next

All times are UTC - 5 hours [ DST ]



* Login  



Powered by phpBB3 © phpBB Group