Search found 69 matches

by Draoidh
2012-12-16T15:46:29-07:00
Forum: Users
Topic: [SOLVED] create a sheet of labels
Replies: 12
Views: 18164

Re: create a sheet of labels

I don't know enough about PDF/PS formats myself but if I am correct in assuming that gLabels creates the print output (PDF) by embedding the image only once, then this will always give me a smaller file. I am no expert, but I do not see how it could do that. I was wrong in assuming that gLabels emb...
by Draoidh
2012-12-02T13:33:43-07:00
Forum: Users
Topic: [SOLVED] create a sheet of labels
Replies: 12
Views: 18164

Re: create a sheet of labels

I first created the label sheet as PNG, then converted this to PDF. If I go straight to PDF, the file size is double as big. I don't know enough about PDF/PS formats myself but if I am correct in assuming that gLabels creates the print output (PDF) by embedding the image only once, then this will al...
by Draoidh
2012-12-02T07:11:00-07:00
Forum: Users
Topic: [SOLVED] create a sheet of labels
Replies: 12
Views: 18164

Re: create a sheet of labels

Fred, thank you for your help with this. A small correction: convert - -trim +repage -resize 2480x3508 -background white -extent 2480x3508 -density 300 result.png 595x842 are the correct values at 72dpi (i.e. for -density 72). If you want to print an A4 sheet at 300dpi, you need to create a picture ...
by Draoidh
2012-11-30T13:53:48-07:00
Forum: Users
Topic: [SOLVED] create a sheet of labels
Replies: 12
Views: 18164

Re: create a sheet of labels

Before I tried anything complicated, I played around with the -page option, but I didn't get to grips with it. Here I simply tried to create an A4 PDF file with one image on it: convert label.png -page a4 page.pdf When I open the file with gv , a page size of y673x476 is displayed, not y842x595. con...
by Draoidh
2012-11-30T04:15:34-07:00
Forum: Users
Topic: [SOLVED] create a sheet of labels
Replies: 12
Views: 18164

Re: create a sheet of labels

Here's an image to be printed on each label:
Image

The label sheet specification: 21 labels per A4 sheet

I'd like a print quality of 300dpi.
by Draoidh
2012-11-29T15:52:17-07:00
Forum: Users
Topic: [SOLVED] create a sheet of labels
Replies: 12
Views: 18164

Re: create a sheet of labels

I am using ImageMagick 6.7.7-10 on Debian Linux.

The intended output is a PDF file suitable to print a 7x3 A4 label sheet. The labels are rectangular with rounded edges.

The starting point is a PNG image for ONE label.
This image needs to be tiled (7x3) with the appropriate page margins.
by Draoidh
2012-11-29T13:36:58-07:00
Forum: Users
Topic: [SOLVED] create a sheet of labels
Replies: 12
Views: 18164

[SOLVED] create a sheet of labels

I would like to create a sheet of labels from an image and output it to PDF.

It's easy enough to do with gLabels but I'd be quite keen to create the sheet automagically with ImageMagick. Precise positioning is obviously very important.

Is this a sensible idea? Any views would be welcome.
by Draoidh
2012-10-19T04:07:32-07:00
Forum: Users
Topic: [SOLVED] create tile image on the fly
Replies: 3
Views: 7017

Re: [SOLVED] create tile image on the fly

Just returned from a holiday and saw your link. Thanks for that, Anthony.
by Draoidh
2012-10-08T02:53:43-07:00
Forum: Users
Topic: mask - how to draw edge?
Replies: 5
Views: 8377

Re: mask - how to draw edge?

Fred, thanks for confirming that the mask -compose approach is the way forward, which is what I did last night. Anthony, these seem to be endless ways to skin the cat but in my particular case -morphology edge produced good results. I must say it's damned handy youse two being in different timezones...
by Draoidh
2012-10-08T02:39:13-07:00
Forum: Users
Topic: [SOLVED] ImageMagick download version crisis
Replies: 9
Views: 13233

Re: [SOLVED] ImageMagick download version crisis

Thanks Anthony; that's useful to know.
by Draoidh
2012-10-07T15:30:36-07:00
Forum: Users
Topic: mask - how to draw edge?
Replies: 5
Views: 8377

Re: mask - how to draw edge?

edgeout after some playing around with the kernels did it for me!

screen only seems useful if you want white text (as per the manual example)?
by Draoidh
2012-10-06T15:27:54-07:00
Forum: Users
Topic: mask - how to draw edge?
Replies: 5
Views: 8377

mask - how to draw edge?

I have a mask, a background and a foreground image combining them with -compose.
I would like to draw an edge where the black and the white of the mask meet, similar to this example from the manual:'
Image
by Draoidh
2012-10-06T09:37:47-07:00
Forum: Users
Topic: [SOLVED] create tile image on the fly
Replies: 3
Views: 7017

Re: create tile image on the fly

sorted:

Code: Select all

convert \( +size  xc:red xc:yellow xc:green  +append -write mpr:tile +delete \) -size 60x40 tile:mpr:tile  a.png
by Draoidh
2012-10-06T05:47:47-07:00
Forum: Users
Topic: [SOLVED] create tile image on the fly
Replies: 3
Views: 7017

[SOLVED] create tile image on the fly

I have created a tile image and, in a separate step, I create a tiled canvas:

Code: Select all

convert \( +size   xc:red xc:yellow xc:green  +append \) tile.png
convert -size 60x40 tile:tile.png   tiled.png
I would like to do this in a oner. How?
by Draoidh
2012-10-05T02:22:37-07:00
Forum: Users
Topic: [SOLVED] create multi-colour chequer pattern
Replies: 7
Views: 10689

Re: create multi-colour chequer pattern

Many thanks.