[script] resize image in pourcent

View: New views
3 Messages — Rating Filter:   Alert me  

[script] resize image in pourcent

by Didier BRETIN :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

I'm improving my script, and I would like to use the function
gimp-image-scale and specify widht and height in pourcent, not in pixel.

Do you know how I can specify pourcent ?

Regards.
--
Didier Bretin
http://bretin.net/
http://twitter.com/didier69
_______________________________________________
Gimp-user mailing list
Gimp-user@...
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user

Re: [script] resize image in pourcent

by saulgoode :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Quoting Didier Bretin <didier@...>:

> I'm improving my script, and I would like to use the function
> gimp-image-scale and specify widht and height in pourcent, not in pixel.
>
> Do you know how I can specify pourcent ?

You need to calculate the pixel values manually.

(gimp-image-scale image
                   (* (car (gimp-image-width image)) x-pct 0.01)
                   (* (car (gimp-image-height image)) y-pct 0.01)
                   )



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

Re: [script] resize image in pourcent

by Didier BRETIN :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

saulgoode@... wrote:

> Quoting Didier Bretin <didier@...>:
>
>> I'm improving my script, and I would like to use the function
>> gimp-image-scale and specify widht and height in pourcent, not in pixel.
>>
>> Do you know how I can specify pourcent ?
>
> You need to calculate the pixel values manually.
>
> (gimp-image-scale image
>                    (* (car (gimp-image-width image)) x-pct 0.01)
>                    (* (car (gimp-image-height image)) y-pct 0.01)
>                    )

Yes ! Great, it works.

Thank you for your help.
--
Didier Bretin
http://bretin.net/
http://twitter.com/didier69
_______________________________________________
Gimp-user mailing list
Gimp-user@...
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user