It is currently Sun May 19, 2013 11:03 pm


Latest GIMP Scripts & Plug-ins

All times are UTC - 5 hours [ DST ]




Post new topic Reply to topic  [ 268 posts ]  Go to page Previous  1 ... 11, 12, 13, 14, 15, 16, 17 ... 27  Next
Author Message
 Post subject: Re: XNViewShell - and other Programs you can call with Gimp
PostPosted: Wed Feb 16, 2011 7:53 pm  (#131) 
Offline
Global Moderator
User avatar

Joined: May 16, 2010
Posts: 8952
Location: "Looking for my eraser" =P
Okay i added these
["Java Image Editor", "\"C:\\JavaJars\\imageeditor.bat\""],
["Java PIM", "\"C:\\JavaJars\\PIM.bat\""],
["Java delineate", "\"C:\\JavaJars\\delineate.bat\""],
["Java mosaic", "\"C:\\JavaJars\\mosaic.bat\""],
["Java photomosaic", "\"C:\\JavaJars\\photomosaic.bat\""],

to the ShellOut.py file and also created batch files for each one in the JavaJar folder.

I went to open the layer in Image Editor , and the command window opened for a millisecond and copied the layer and placed it on top of all the other layers. I tried with all the other jar executes and the same thing happened. Something to do with that C:\Program" error still i guess.

_________________
Image
Gimp Rocks Blog
Simply Gimp Tutorials
"Once your in the cloud, you're in the net"
____________
OK, . . . . so what's the speed of dark?


Top
 Profile  
 

 Post subject: Re: XNViewShell - and other Programs you can call with Gimp
PostPosted: Wed Feb 16, 2011 7:55 pm  (#132) 
Offline
GimpChat Member

Joined: Oct 06, 2010
Posts: 2688
In Ubuntu, you have to assign the jar files and associate them to Java, maybe in Windows, the batch file needs to include that process somehow?

_________________
You cannot do a kindness too soon because you never know how soon it will be too late.

~Ralph Waldo Emerson


Top
 Profile  
 
 Post subject: Re: XNViewShell - and other Programs you can call with Gimp
PostPosted: Wed Feb 16, 2011 8:49 pm  (#133) 
Offline
Global Moderator
User avatar

Joined: May 16, 2010
Posts: 8952
Location: "Looking for my eraser" =P
I don't know, i cant get either potrace or autotrace to work either.I can throw a img file on potrace it will create a eps file but it won't open.
I need potrace and autotrace to get Delineate to work, but i do not understand why the others will not open.
I have the java path to bin and lib in my variables "PATH" and "JAVA_HOME"
Not getting it to find Java for some reason, and i just installed the newest version thinking that was it...nada. :\

_________________
Image
Gimp Rocks Blog
Simply Gimp Tutorials
"Once your in the cloud, you're in the net"
____________
OK, . . . . so what's the speed of dark?


Top
 Profile  
 
 Post subject: Re: XNViewShell - and other Programs you can call with Gimp
PostPosted: Thu Feb 17, 2011 12:45 pm  (#134) 
Offline
GimpChat Member

Joined: Jan 13, 2011
Posts: 520
Location: Poland
In the file. bat interferes space between Program and Files.

When you copied the javaw.exe to c: \JavaJars and changed to:

C:\JavaJars\javaw.exe -jar c:\JavaJars\ImageEditor.jar %1

it works (I checked only ImageEditor.jar).
Important (XP 32 bit): java.exe - not javaw.exe - yes!


Top
 Profile  
 
 Post subject: Re: XNViewShell - and other Programs you can call with Gimp
PostPosted: Thu Feb 17, 2011 1:16 pm  (#135) 
Offline
Global Moderator
User avatar

Joined: May 16, 2010
Posts: 8952
Location: "Looking for my eraser" =P
Thanks ill give it a try MareroQ! :)
Nope i tried that and it opens a command window then copies the layer and pastes it on top.
This is what i did -
I opened the bat file in Notepad ++, deleted everything in it, and pasted this-
@echo off
echo *** Do Not Close this Window ***
echo Temp File: %1
C:\JavaJars\java.exe -jar c:\JavaJars\ImageEditor.jar %1

But shouldn't the first part of the command be pointing to the location of Java.exe?
My Java.exe isn't in my JavaJar folder. - Should it be -??

_________________
Image
Gimp Rocks Blog
Simply Gimp Tutorials
"Once your in the cloud, you're in the net"
____________
OK, . . . . so what's the speed of dark?


Top
 Profile  
 
 Post subject: Re: XNViewShell - and other Programs you can call with Gimp
PostPosted: Thu Feb 17, 2011 1:38 pm  (#136) 
Offline
Global Moderator
User avatar

Joined: May 16, 2010
Posts: 8952
Location: "Looking for my eraser" =P
Changed it to this
@echo off
echo *** Do Not Close this Window ***
echo Temp File: %1
C:\jre1.5.0_05\bin\java.exe -jar c:\JavaJars\ImageEditor.jar %1

And placed the java folder in C directory
WORKS!!!!
Image

:wh :coolthup :yes :tyspin

_________________
Image
Gimp Rocks Blog
Simply Gimp Tutorials
"Once your in the cloud, you're in the net"
____________
OK, . . . . so what's the speed of dark?


Top
 Profile  
 
 Post subject: Re: XNViewShell - and other Programs you can call with Gimp
PostPosted: Thu Feb 17, 2011 1:58 pm  (#137) 
Offline
GimpChat Member

Joined: Apr 12, 2010
Posts: 4957
14 pages...i would need a summary
well i try now to add some java apps...

_________________
My 3D Gallery on Deviantart http://photocomix2.deviantart.com/
Main gallery http://www.flickriver.com/photos/photocomix-mandala/
Mandala and simmetry http://www.flickriver.com/photos/photocomix_mandala/

Image

Mrs Wilbress


Top
 Profile  
 

 Post subject: Re: XNViewShell - and other Programs you can call with Gimp
PostPosted: Thu Feb 17, 2011 2:04 pm  (#138) 
Offline
Global Moderator
User avatar

Joined: May 16, 2010
Posts: 8952
Location: "Looking for my eraser" =P
Well so far Image Editor is the only one i can get to work
PhotoMosaic
Mosaic
Delineate
Puzzle Maker (PIM)
All these will open except Delineate due to potrace and autotrace problems.
The rest open but will not import the image from GIMP.

_________________
Image
Gimp Rocks Blog
Simply Gimp Tutorials
"Once your in the cloud, you're in the net"
____________
OK, . . . . so what's the speed of dark?


Top
 Profile  
 
 Post subject: Re: XNViewShell - and other Programs you can call with Gimp
PostPosted: Thu Feb 17, 2011 2:31 pm  (#139) 
Offline
GimpChat Member

Joined: Jan 13, 2011
Posts: 520
Location: Poland
I copied jawaw.exe -> C:\ JawaJars and also works.
For "Warp Tools" and "Perspective Transform Tools" - it was worth !!!


Top
 Profile  
 
 Post subject: Re: XNViewShell - and other Programs you can call with Gimp
PostPosted: Thu Feb 17, 2011 2:51 pm  (#140) 
Offline
GimpChat Member

Joined: Jan 13, 2011
Posts: 520
Location: Poland
And what do you think about this?
["OpenOfficeDraw", "\"C:\\Program Files\\OpenOffice.org 3\\program\\sdraw.exe\""],
Unfortunately, without a simple return.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 268 posts ]  Go to page Previous  1 ... 11, 12, 13, 14, 15, 16, 17 ... 27  Next

All times are UTC - 5 hours [ DST ]


Who is online

Users browsing this forum: Google [Bot] and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron

* Login   * Subscribe to RSS Feed


Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group