RSS/Atom feed Twitter
Site is read-only, email is disabled

Image Horizontal Flip

This discussion is connected to the gimp-developer-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

8 of 8 messages available
Toggle history

Please log in to manage your subscriptions.

Image Horizontal Flip Partha Bagchi 08 Feb 14:01
  Image Horizontal Flip Partha Bagchi 08 Feb 14:20
   Image Horizontal Flip Karl-Heinz Zimmer 08 Feb 14:27
    Image Horizontal Flip Partha Bagchi 08 Feb 14:54
  Image Horizontal Flip scl 08 Feb 15:00
   Image Horizontal Flip Nicolas Robidoux 08 Feb 15:01
   Image Horizontal Flip Partha Bagchi 08 Feb 15:05
  Image Horizontal Flip Michael Natterer 08 Feb 17:48
Partha Bagchi
2013-02-08 14:01:35 UTC (about 12 years ago)

Image Horizontal Flip

Something seems have to gone haywire with the horizontal flip.

I think the tile placements seems to be issue? In any case, vertical flip works fine but horizontal leaves a mess behind.

Thanks, Partha

Partha Bagchi
2013-02-08 14:20:01 UTC (about 12 years ago)

Image Horizontal Flip

I think the issue is here:
app/tools/gimpfliptool.c (Notice the orientation is reversed):

switch (options->flip_type) {
case GIMP_ORIENTATION_HORIZONTAL: g_object_set (options,
"flip-type", GIMP_ORIENTATION_VERTICAL, NULL);
break;

case GIMP_ORIENTATION_VERTICAL: g_object_set (options,
"flip-type", GIMP_ORIENTATION_HORIZONTAL, NULL);
break;

default: break;
}

On Fri, Feb 8, 2013 at 9:01 AM, Partha Bagchi wrote:

Something seems have to gone haywire with the horizontal flip.

I think the tile placements seems to be issue? In any case, vertical flip works fine but horizontal leaves a mess behind.

Thanks, Partha

Karl-Heinz Zimmer
2013-02-08 14:27:21 UTC (about 12 years ago)

Image Horizontal Flip

I don't think so.
That part of the code just toggles the flip direction, it looks perfectly right to me.

Cheers Karl-Heinz

On Fri, 8 Feb 2013 09:20:01 -0500 Partha Bagchi wrote:

I think the issue is here:
app/tools/gimpfliptool.c (Notice the orientation is reversed):

switch (options->flip_type) {
case GIMP_ORIENTATION_HORIZONTAL: g_object_set (options,
"flip-type", GIMP_ORIENTATION_VERTICAL, NULL);
break;

case GIMP_ORIENTATION_VERTICAL: g_object_set (options,
"flip-type", GIMP_ORIENTATION_HORIZONTAL, NULL);
break;

default: break;
}

On Fri, Feb 8, 2013 at 9:01 AM, Partha Bagchi wrote:

Something seems have to gone haywire with the horizontal flip.

I think the tile placements seems to be issue? In any case, vertical flip works fine but horizontal leaves a mess behind.

Thanks, Partha

Partha Bagchi
2013-02-08 14:54:08 UTC (about 12 years ago)

Image Horizontal Flip

Well, I will look further, but Gimp code is so vast I am not sure I will find it. In the meantime, have you been able to reproduce what I posted?

Thanks, Partha

On Fri, Feb 8, 2013 at 9:27 AM, Karl-Heinz Zimmer wrote:

I don't think so.
That part of the code just toggles the flip direction, it looks perfectly right to me.

Cheers
Karl-Heinz

On Fri, 8 Feb 2013 09:20:01 -0500 Partha Bagchi wrote:

I think the issue is here:
app/tools/gimpfliptool.c (Notice the orientation is reversed):

switch (options->flip_type) {
case GIMP_ORIENTATION_HORIZONTAL: g_object_set (options,
"flip-type", GIMP_ORIENTATION_VERTICAL, NULL);
break;

case GIMP_ORIENTATION_VERTICAL: g_object_set (options,
"flip-type", GIMP_ORIENTATION_HORIZONTAL, NULL);
break;

default: break;
}

On Fri, Feb 8, 2013 at 9:01 AM, Partha Bagchi

wrote:

Something seems have to gone haywire with the horizontal flip.

I think the tile placements seems to be issue? In any case, vertical

flip

works fine but horizontal leaves a mess behind.

Thanks, Partha

--

_______________________________________________ gimp-developer-list mailing list
gimp-developer-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-developer-list

scl
2013-02-08 15:00:06 UTC (about 12 years ago)

Image Horizontal Flip

On 08.02.13 at 3:01 PM Partha Bagchi wrote:

Something seems have to gone haywire with the horizontal flip.

I think the tile placements seems to be issue? In any case, vertical flip works fine but horizontal leaves a mess behind.

Which build do you use - master or 2.8.4 and on which platform?

Kind regards,

Sven

Nicolas Robidoux
2013-02-08 15:01:19 UTC (about 12 years ago)

Image Horizontal Flip

It could be something I did.

Will look before the weekend is over.

On Fri, Feb 8, 2013 at 10:00 AM, scl wrote:

On 08.02.13 at 3:01 PM Partha Bagchi wrote:

Something seems have to gone haywire with the horizontal flip.

I think the tile placements seems to be issue? In any case, vertical flip works fine but horizontal leaves a mess behind.

Which build do you use - master or 2.8.4 and on which platform?

Kind regards,

Sven

______________________________**_________________ gimp-developer-list mailing list
gimp-developer-list@gnome.org
https://mail.gnome.org/**mailman/listinfo/gimp-**developer-list

Nicolas Robidoux
Image processing and applied mathematics consultant
https://www.ohloh.net/accounts/NicolasRobidoux
http://river-valley.tv/better-and-faster-image-resizing-and-resampling
http://www.imagemagick.org/Usage/filter/nicolas
Partha Bagchi
2013-02-08 15:05:09 UTC (about 12 years ago)

Image Horizontal Flip

Sven,

I report issues with git. If it's not git I would state it.

Thanks, Partha

On Fri, Feb 8, 2013 at 10:00 AM, scl wrote:

On 08.02.13 at 3:01 PM Partha Bagchi wrote:

Something seems have to gone haywire with the horizontal flip.

I think the tile placements seems to be issue? In any case, vertical flip works fine but horizontal leaves a mess behind.

Which build do you use - master or 2.8.4 and on which platform?

Kind regards,

Sven

______________________________**_________________ gimp-developer-list mailing list
gimp-developer-list@gnome.org
https://mail.gnome.org/**mailman/listinfo/gimp-**developer-list

Michael Natterer
2013-02-08 17:48:07 UTC (about 12 years ago)

Image Horizontal Flip

On Fri, 2013-02-08 at 09:01 -0500, Partha Bagchi wrote:

Something seems have to gone haywire with the horizontal flip.

I think the tile placements seems to be issue? In any case, vertical flip works fine but horizontal leaves a mess behind.

I remember fixing this, some way :) I absolutely can't find a commit saying "flip" but this was reported on IRC, I hacked on it and now it works. Maybe the person who reported that on IRC remembers what it was.

It's btw totally unrelated to GEGL.

Regards, --Mitch