[Gimp-developer] something unclear at a new string

2010-05-19 Thread Cristian Secară
In this string

#: ../plug-ins/common/file-jp2-load.c:320
#, c-format
msgid Image component %d of image '%s' did not have the same size as
the image which is currently not supported.

who is not suported ?
The image is currently not supported ?
The fact that the component did not have something is not suppported ?

(if the later, should be a comma after the „which” word ?)

Cristi

-- 
Cristian Secară
http://www.secarica.ro/
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] something unclear at a new string

2010-05-19 Thread Cristian Secară
On Wed, 19 May 2010 14:33:05 +0300, Cristian Secară wrote:

 (if the later, should be a comma after the „which” word ?)

Sorry, comma *before*, not after.

Cristi

-- 
Cristian Secară
http://www.secarica.ro/
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


[Gimp-developer] Include resynthesizer plugin in Gimp distribution?

2010-05-19 Thread lloyd konneker
This is a request to put the Resynthesizer plugin in the Gimp project.

The author, Paul Harrison, has given me permission to maintain
Resynthesizer.

I am an unaffiliated computer scientist and have developed in C, Python,
and Scheme under Unix, Linux, and MS Windows.

I have studied the Resynthesizer code and created a short list of bug
fixes, performance enhancements, and refactorings (breaking one large
source file into many, and splitting the resynthesizer into an engine
and a GUI.)

If that's agreeable, I will learn Gimp development processes and create
the proper make files etc before uploading a new version to the Gimp
project.  Also, internationalize where necessary.  (But not recode to
Gimp style?)

The Resynthesizer package includes:
  the engine written in C++, with its own GUI of settings
  several plugins written in Scheme that call the engine:
Smart enlarge
Smart remove selection (now called Heal selection)

I would like to include plugins that call the resynthesizer, by other
authors:
  Uncrop - synthesizes a larger image, same perspective, wider view.
Written by me.
  Fill resynthesized pattern - fills with a pattern, but a random 
texture instead of a regular tiling.  Written by Rob A

Currently the resynthesizer package is distributed by Debian and other
organizations.  I have corresponded with the Debian builder of
resynthesizer, but he is not the maintainer and relies on the author's
downstream source.

I believe it is one of the most useful and popular plugin packages.
Putting it in Gimp and getting the bugs fixed would help many users.

I would be glad to provide more details.

Lloyd Konneker


  



___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Include resynthesizer plugin in Gimp distribution?

2010-05-19 Thread LightningIsMyName
Hello lloyd,

On Wed, May 19, 2010 at 5:03 PM, lloyd konneker boo...@nc.rr.com wrote:

 The Resynthesizer package includes:
  the engine written in C++, with its own GUI of settings
  several plugins written in Scheme that call the engine:
Smart enlarge
Smart remove selection (now called Heal selection)

I don'nt believe the developers will accept it since it's written in
C++. I would be happy to see this plugin as a part of GIMP, but
believe that it will have to be re-written in C (if you need objects,
use GObject instead which is the the object library for C that gimp
uses) in order for it to be included.

There is nothing against including new plugins. Hoever, the fact that
it's in C++ (and the fact that it's not in the gnu coding style -
although this is minor) will make it hard to maintain for people who
don't know C++.
I just gave a look at the source - it's not too big (only 980 lines
and less than half of them are the algorithm) and the usage of C++ is
very minor. It shouldn't be too hard to port the plugin to C (al
least, this is the impression I got).

I would really like to see resynthesizer included with GIMP - I do
hope it will be accepted, even if it will require a bit of rewriting
some small parts of the code.

~LightningIsMyName
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Include resynthesizer plugin in Gimp distribution?

2010-05-19 Thread Alexandre Prokoudine
On Wed, May 19, 2010 at 6:34 PM, LightningIsMyName wrote:

 Hoever, the fact that it's in C++ (and the fact that it's not in the gnu
 coding style - although this is minor) will make it hard to maintain
 for people who don't know C++.

Hasn't Lloyd offered his services to _maintain_?

Alexandre
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Include resynthesizer plugin in Gimp distribution?

2010-05-19 Thread Filipe Soares Dilly
Thats a great idea.

I regularly use this plug-in and also teach others how to use it. Its VERY
useful when creating textures for 3d graphics. Today is only easy to install
on Linux: on windows and MAC is a pain to get it working.

Please take this into consideration before refusing.

Thanks.

2010/5/19 LightningIsMyName lightningismyn...@gmail.com

 Hello,

 On Wed, May 19, 2010 at 5:54 PM, Alexandre Prokoudine
 alexandre.prokoud...@gmail.com wrote:
  On Wed, May 19, 2010 at 6:34 PM, LightningIsMyName wrote:
 
  Hoever, the fact that it's in C++ (and the fact that it's not in the gnu
  coding style - although this is minor) will make it hard to maintain
  for people who don't know C++.
 
  Hasn't Lloyd offered his services to _maintain_?

 He did, but he also expressed some hope that it won't need to be re-coded:

 On Wed, May 19, 2010 at 5:03 PM, lloyd konneker boo...@nc.rr.com wrote:
  But not recode to Gimp style?

 I should have made my point more clear - sorry about that...

 ~LightningIsMyName
 ___
 Gimp-developer mailing list
 Gimp-developer@lists.XCF.Berkeley.EDU
 https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer




-- 
Filipe Soares Dilly
dilly.carbonmade.com/
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Include resynthesizer plugin in Gimp distribution?

2010-05-19 Thread Rob Antonishen
Regardless of in or out, the binary and scripts need to work together.
On Windows there are two binaries floating around that have a
different number of parameters that may break scripts asuming the
other binary.

-Rob A

On 5/19/10, Filipe Soares Dilly fil...@gmail.com wrote:
 Thats a great idea.

 I regularly use this plug-in and also teach others how to use it. Its VERY
 useful when creating textures for 3d graphics. Today is only easy to install
 on Linux: on windows and MAC is a pain to get it working.

 Please take this into consideration before refusing.

 Thanks.

 2010/5/19 LightningIsMyName lightningismyn...@gmail.com

 Hello,

 On Wed, May 19, 2010 at 5:54 PM, Alexandre Prokoudine
 alexandre.prokoud...@gmail.com wrote:
  On Wed, May 19, 2010 at 6:34 PM, LightningIsMyName wrote:
 
  Hoever, the fact that it's in C++ (and the fact that it's not in the
  gnu
  coding style - although this is minor) will make it hard to maintain
  for people who don't know C++.
 
  Hasn't Lloyd offered his services to _maintain_?

 He did, but he also expressed some hope that it won't need to be re-coded:

 On Wed, May 19, 2010 at 5:03 PM, lloyd konneker boo...@nc.rr.com wrote:
  But not recode to Gimp style?

 I should have made my point more clear - sorry about that...

 ~LightningIsMyName
 ___
 Gimp-developer mailing list
 Gimp-developer@lists.XCF.Berkeley.EDU
 https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer




 --
 Filipe Soares Dilly
 dilly.carbonmade.com/


-- 
Sent from my mobile device
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Include resynthesizer plugin in Gimp distribution?

2010-05-19 Thread Simone Karin Lehmann
 
 I regularly use this plug-in and also teach others how to use it. Its VERY 
 useful when creating textures for 3d graphics. Today is only easy to install 
 on Linux: on windows and MAC is a pain to get it working.
 


The Mac OS X distribution is already shipping this plug-in by default.

-skl

___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] something unclear at a new string

2010-05-19 Thread Sven Neumann
On Wed, 2010-05-19 at 14:33 +0300, Cristian Secară wrote:
 In this string
 
 #: ../plug-ins/common/file-jp2-load.c:320
 #, c-format
 msgid Image component %d of image '%s' did not have the same size as
 the image which is currently not supported.

This should probably be split into two sentences:

Image component %d of image '%s' did not have the same size as
 the image. This is currently not supported.

Does that make more sense?


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Include resynthesizer plugin in Gimp distribution?

2010-05-19 Thread Sven Neumann
On Wed, 2010-05-19 at 10:03 -0400, lloyd konneker wrote:
 This is a request to put the Resynthesizer plugin in the Gimp project.
 
 The author, Paul Harrison, has given me permission to maintain
 Resynthesizer.

Well, if you maintain the plug-in, that is very good. We really don't
have enough resources to maintain more plug-ins in the GIMP tree. We
would love to see even more plug-ins maintained outside the GIMP source
tree.

What would be the benefit for you and the core GIMP developers (and the
users of course), if the plug-in was maintained in the GIMP source tree?


Sven


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Include resynthesizer plugin in Gimp distribution?

2010-05-19 Thread lloyd konneker
No benefit for me, doesn't matter to me which organization hosts it.
But it makes it easier for the other distributing organizations if it is
in Gimp: one less package.

I suppose I could also maintain other plugins once I learned the ropes.
I would prefer Python.  I've done much exploring of the PyGimp code.

Hate to say it but one benefit for the users is that if the
Resynthesizer comes with the Gimp, then it comes with the MS Windows
build of Gimp, which seems to be a frequent source of problems for
Resynthesizer users.

The main benefit argument is that the plugin is very useful and ought to
be one of the core plugins.



On Wed, 2010-05-19 at 23:49 +0200, Sven Neumann wrote:
 On Wed, 2010-05-19 at 10:03 -0400, lloyd konneker wrote:
  This is a request to put the Resynthesizer plugin in the Gimp project.
  
  The author, Paul Harrison, has given me permission to maintain
  Resynthesizer.
 
 Well, if you maintain the plug-in, that is very good. We really don't
 have enough resources to maintain more plug-ins in the GIMP tree. We
 would love to see even more plug-ins maintained outside the GIMP source
 tree.
 
 What would be the benefit for you and the core GIMP developers (and the
 users of course), if the plug-in was maintained in the GIMP source tree?
 
 
 Sven
 
 


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] something unclear at a new string

2010-05-19 Thread Cristian Secară
On Wed, 19 May 2010 23:46:16 +0200, Sven Neumann wrote:

  msgid Image component %d of image '%s' did not have the same size
  as the image which is currently not supported.
 
 This should probably be split into two sentences:
 
 Image component %d of image '%s' did not have the same size as
  the image. This is currently not supported.
 
 Does that make more sense?

Yes, that way it leaves no room for confusion.
Either way it also responded to my question.

Thank you,
Cristi

-- 
Cristian Secară
http://www.secarica.ro/
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


[Gimp-developer] Question on new (2.8) paint dynamics

2010-05-19 Thread Rob Antonishen
I have looked at some of the previews and devel paint dynamic
reports/reviews and still have a couple questions.

In amongst all those settings is there any trace a source layer as an option?

Like ID a greyscale source layer and have the brush dynamics follow
that (i.e. brush size or opacity based on the value of the source
layer at that point)?

And along with that is there a brush dynamic to control the gamma of a
brush while painting?  (This would be much like hardness for
parametric brushes but for colour (stamp) type brushes would have some
value).

Thanks in advance-

-Rob A
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


[Gimp-developer] [...@backstopmedia.com: writing opportunity for Backstop Media]

2010-05-19 Thread Tom Rathborne
I'm totally not qualified for this, but maybe some developer wants
$500 to regurgitate the developer documentation ...? 

- Forwarded message from Bob Herbstman b...@backstopmedia.com -

 Subject: writing opportunity for Backstop Media
 Date: Mon, 10 May 2010 09:01:19 -0700
 From: Bob Herbstman b...@backstopmedia.com
 To: t...@aceldama.com
 
 Hi Tom -

 I'm a partner at Backstop Media (http://www.backstopmedia.com) and I found
 your resume online. We're looking for someone with your background to write
 a work for hire article for IBM developerWorks on the following topic:

 Title: Modifying the Open Source GIMP image editor

 Summary of content:
 After having read the article, the reader will be familiar with how the
 millions of lines of the large GIMP code base is structured, where the key
 modules live, and consequently how to approach the code base when
 wanting to perform advanced additions or modifications to it.

 Articles run about 2,500-3,000 words and we typically pay $500. We would
 need to have this piece written by the end of May so please let me know
 if you'd be interested as soon as possible.

 Thanks, Bob

 Bob Herbstman
 Backstop Media


- End forwarded message -

-- 
-- Tom Rathborne - Ad-hoc Human Director --
A goal without a plan is just a wish.
-- Antoine de Saint Exup??ry
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer