Yeah, that could be the way, the man says: "-g, --gimprc <gimprc> Use an alternative gimprc instead of the default one. Useful in cases where plug-in paths or machine specs may be different" will try that tomorow.
hehe, it's called hang over and easter WE I tried making a custom rc, but there is something wrong for now. Gimp doesn't find the script fu interpreter if I don't provide a plug-ins directory
I may be stating the obvious here but this shouldn't\wouldn't work with Tiger because it doesn't have Quicklook. Auria are you trying to make this work in Tiger?
I was asking because it seemed like Auria was trying to compile it on Tiger. So I was thinking if so it's probably not worth the effort to fix it so it does compile under Tiger since it wont work there. In case anyone misunderstood I wasn't asking if there was going to be a Tiger version.
What ever happend to this? I'm still waiting for the final release Hopefully with some boost in performance
Well, I have also been very taken by my own work... : the thing is, I had tried to make it faster with a specific gimprc that would disconnect plugins etc. But that break the whole thing. It's nothing to code, just find how gimprc works, so if you want to try and find out what should be put in the gimprc to make it faster, go on
Maybe we could just ask on the gimp-devel mailing list I'd just need to find again the script i used to convert images... that was on the previous forum i think, or i just lost the post. i could play with it without quicklook
really, I have no time to do it, but please do if you can, this would be great. The conversion script is here on the SVN of sourceforge, with the quicklook plugin.
Here is for the script I am using for testing timing, it's the same as the one in the plugin: Code: #!/bin/sh gimp-console -d -f -s -i -b "(define (quicklook-xcf filename_in filename_out max_size) (let* ((image (car (gimp-file-load RUN-NONINTERACTIVE filename_in filename_in))) (drawable (car (gimp-image-flatten image))) (original-width (car (gimp-image-width image))) (original-height (car (gimp-image-height image))) (t-height (* original-height (/ max_size original-width))) (t-width (* original-width (/ max_size original-height)))) (gimp-image-set-resolution image 72 72) (if (< original-width original-height) (gimp-image-scale image t-width max_size) (gimp-image-scale image max_size t-height)) (gimp-file-save RUN-NONINTERACTIVE image drawable filename_out filename_out)(gimp-image-delete image))) (quicklook-xcf \"$1\" \"$2\" $3)" -b '(gimp-quit 0)'; you can try adding an extra --gimprc parameter, but I really can't get it to work. If I remove the plugin dir, then it says it can't find the interpreter... Parameter 1 is the file name, 2 is the file to write to, 3 is the maximum size you want. Code: ./test-xcf.sh test.xcf test.png 800 I tried changing the resolution setting, but it makes barelly no differences on the execution time.
You should get a small performance improvement if you disable undo on the image after load. Use the call 'gimp-image-undo-disable' for that. The script will then need significantly less memory.
hey so i tried installing the plugin per the included instructions. nothing happened, finder just gave me the same gimp logo preview so i tried what quicklookplugins.com says (putting it in library>quicklook and using qlmanage -r in terminal) at first it crashed something (i can't remember what) but it works fine now. just wondering whats the story on the plugin's progress gimp 2.4.6 os x 10.5.4 (|- -|)
Hi, I've just made some small modifications to the plugin's "link_launch.sh" script. First, there's no need to hardcode the path to Gimp.app as long as the plugin is put into Gimp.app under Contents/Library/QuickLook. Second, the "gimp-console" binary is not needed. You can just call "gimp-2.4" with the "-i" option. So there's no need to compile the gimp-console binary at all, which will slightly reduce the app bundle's size. Here's the link to the modified plugin. http://gimp.lisanet.de/Website/Download ... erator.zip HTH Simone
Thanks! Is this plugin stable enough to be included? And also, what are the install instructions? (I have not been involved in the development of this plug-in, and i don't have Leopard - yet - so i'm not sure how to modify the build instructions to add it. though i should have a new computer with leopard later this week so then i can take a closer look)