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

numbers

This discussion is connected to the gimp-user-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.

9 of 9 messages available
Toggle history

Please log in to manage your subscriptions.

numbers Epick 11 Dec 16:53
  Ticket numbers Epick 11 Dec 16:57
   Ticket numbers Jay Smith 11 Dec 20:27
  numbers dep 11 Dec 17:36
  numbers Liam R E Quin 11 Dec 20:18
  numbers Kevin Cozens 11 Dec 20:52
  numbers Ofnuts 11 Dec 23:49
   numbers Rick Strong 12 Dec 05:06
  numbers MareroQ 12 Dec 07:06
2019-12-11 16:53:33 UTC (over 4 years ago)
postings
2

numbers

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)
2019-12-11 16:57:26 UTC (over 4 years ago)
postings
2

Ticket numbers

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)
dep
2019-12-11 17:36:14 UTC (over 4 years ago)

numbers

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
Liam R E Quin
2019-12-11 20:18:11 UTC (over 4 years ago)

numbers

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.
Jay Smith
2019-12-11 20:27:03 UTC (over 4 years ago)

Ticket numbers

On 12/11/2019 11:57 AM, 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

This is not a task suitable for an image editing program.

I would do it another way.

Use a word processing program that has an auto-numbering function to develop the framework for the area of the ticket, with the number to appear (overlay) on the image you have made in an image editing program.

The easiest way to accomplish that would be to print the tickets in one run through the printer and then print ON THEM them AGAIN from word processing program to add the number on top of the image.

However, even this would be more work than simply hand-writing (oh no, not that!!!!) 360 numbers. You could write the numbers faster than it took you to even think about these emails.

Jay Smith

Kevin Cozens
2019-12-11 20:52:47 UTC (over 4 years ago)

numbers

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
Ofnuts
2019-12-11 23:49:00 UTC (over 4 years ago)

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/

Rick Strong
2019-12-12 05:06:29 UTC (over 4 years ago)

numbers

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/

2019-12-12 07:06:07 UTC (over 4 years ago)
postings
2

numbers

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)