[Gimp-user] numbers

2019-12-11 Thread MareroQ
Gimp can do a lot - even number tickets.

1.open a single ticket as a layer
2.create layer number (Text add-number-layers.py)
3.combine layers "Join tiles"(ofn-layer-tiles.py)
https://sourceforge.net/projects/gimp-tools/files/scripts/
If there are problems - start a thread on:
https://gimpchat.com/

Attachments:
* 
https://www.gimpusers.com/system/attachments/1314/original/Three_simple_steps.png
* 
https://www.gimpusers.com/system/attachments/1315/original/Text_add-number-layers_py.zip

-- 
MareroQ (via www.gimpusers.com/forums)
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] numbers

2019-12-11 Thread Rick Strong

Or make 36 2x10 grids in Excel and populate them with numbers in sequence.
Then overlay each grid on the top layer of a new page with your master 
ticket design underneath.

No scripting required.

Rick S.

-Original Message- 
From: Ofnuts

Sent: Wednesday, December 11, 2019 6:49 PM
To: gimp-user-list@gnome.org
Subject: Re: [Gimp-user] numbers

On 12/11/19 5:53 PM, Epick wrote:
Hello guys, I have made tickets for our party, but I'm having troubles 
with one
thing. I need to print 360 of those tickets and each should have its 
number

starting from 1 to 360. How can I efficiently number those tickets?
Epick

Attachments:
* https://www.gimpusers.com/system/attachments/1313/original/ticBlank.png


You can use the ImageMagick toolbox to overlay any text over an image in
a shell script. Then you just have to write a script hat loops over 360
numbers. See https://www.imagemagick.org/Usage/annotating/

___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list 


___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] numbers

2019-12-11 Thread Ofnuts

On 12/11/19 5:53 PM, Epick wrote:

Hello guys, I have made tickets for our party, but I'm having troubles with one
thing. I need to print 360 of those tickets and each should have its number
starting from 1 to 360. How can I efficiently number those tickets?
Epick

Attachments:
* https://www.gimpusers.com/system/attachments/1313/original/ticBlank.png


You can use the ImageMagick toolbox to overlay any text over an image in
a shell script. Then you just have to write a script hat loops over 360
numbers. See https://www.imagemagick.org/Usage/annotating/

___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] numbers

2019-12-11 Thread Kevin Cozens

On 2019-12-11 11:53 a.m., Epick wrote:

Hello guys, I have made tickets for our party, but I'm having troubles with one
thing. I need to print 360 of those tickets and each should have its number
starting from 1 to 360. How can I efficiently number those tickets?


I think you could also quickly make up a shell script to use ImageMagick to 
put numbers on the tickets.


--
Cheers!

Kevin.

http://www.ve3syb.ca/   | "Nerds make the shiny things that
https://www.patreon.com/KevinCozens | distract the mouth-breathers, and
| that's why we're powerful"
Owner of Elecraft K2 #2172  |
#include  | --Chris Hardwick
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] numbers

2019-12-11 Thread Liam R E Quin
On Wed, 2019-12-11 at 17:53 +0100, Epick wrote:
> starting from 1 to 360. How can I efficiently number those tickets?

Include page numbers when you print?

The functionality you need could be scripted, e.g. in script-fo
(Scheme) or Python; i know not whether someone has done this already.

Or you could do it like this:
(1) make a text file with the numbers in it. E.g.
perl -le 'foreach my $i (1 .. 500 ) { print sprintf("%00d", $i); }' >
tmp
if you are on Linux

(2) in your image, make a text layer that goes from the top of the
first number box to te bottom. Set the font to (say) Stardos Stencil
Bold :) size 90, line height 280, and check Use editor; paste the first
six lines of the text file.

(3) duplicate the text layer, move it right for the 2nd column, paste
the next 6 lines.

(4) export to page1.png

(5) repeat, editing the layers. This isn't automatic, but doing a dozen
at a time in two layers isn't too bad.

(6) now you can open all the output files and export to pdf with layers
as pages.

slave ankh



-- 
Liam Quin - web slave for https://www.fromoldbooks.org/
with fabulous vintage art and fascinating texts to read.
Click here if your mouse isn't working.

___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] numbers

2019-12-11 Thread dep
said Epick:

| Hello guys, I have made tickets for our party, but I'm having troubles
| with one thing. I need to print 360 of those tickets and each should
| have its number starting from 1 to 360. How can I efficiently number
| those tickets? Epick

Being an image-editing program, GIMP doesn't have spreadsheet functions.
-- 
dep

Some pictures:
http://www.ipernity.com/doc/depscribe/album

___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


[Gimp-user] numbers

2019-12-11 Thread Epick
Hello guys, I have made tickets for our party, but I'm having troubles with one
thing. I need to print 360 of those tickets and each should have its number
starting from 1 to 360. How can I efficiently number those tickets?
Epick

Attachments:
* https://www.gimpusers.com/system/attachments/1313/original/ticBlank.png

-- 
Epick (via www.gimpusers.com/forums)
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list