Search found 123 matches
- 2019-10-09T08:57:47-07:00
- Forum: Users
- Topic: joining images of different dimensions with automatic resizing according to smallest
- Replies: 3
- Views: 90161
joining images of different dimensions with automatic resizing according to smallest
I am using $ display --version Version: ImageMagick 6.8.9-9 Q16 x86_64 2018-09-28 Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC Features: DPC Modules OpenMP Delegates: bzlib cairo djvu fftw fontconfig freetype jbig jng jpeg lcms lqr ltdl lzma openexr pangocairo png rsvg tiff wmf x xml ...
- 2019-10-09T08:48:16-07:00
- Forum: Users
- Topic: want to label parts of an image
- Replies: 2
- Views: 76768
Re: want to label parts of an image
sorry, wasn't online for long time.
You have explained nicely.
Implementing that will be complex and tedious.
You have explained nicely.
Implementing that will be complex and tedious.
- 2019-07-02T04:52:22-07:00
- Forum: Users
- Topic: want to label parts of an image
- Replies: 2
- Views: 76768
want to label parts of an image
hi, I am using $ display --version Version: ImageMagick 6.8.9-9 Q16 x86_64 2018-09-28 http://www.imagemagick.org Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC Features: DPC Modules OpenMP Delegates: bzlib cairo djvu fftw fontconfig freetype jbig jng jpeg lcms lqr ltdl lzma openexr ...
- 2019-06-24T21:52:59-07:00
- Forum: Users
- Topic: [SOLVED] append colored text to an image
- Replies: 4
- Views: 10931
Re: append colored text to an image
That can be done using -border and -bordercolor option .
This thread is solved .
This thread is solved .
- 2019-06-24T20:33:51-07:00
- Forum: Users
- Topic: [SOLVED] drawing line using relative coordinate like 'bottom left'
- Replies: 6
- Views: 14535
Re: drawing line using relative coordinate like 'bottom left'
This adds bottom border so that vertical line touches it convert dwas.png -fill none -strokewidth 2 -stroke red -draw "circle 110,105 110,115 line 110,105 110,10000" -gravity south -background red -splice 0x2 \( -background white -pointsize 24 label:"text" -gravity south \) -append what.png
- 2019-06-24T16:11:32-07:00
- Forum: Users
- Topic: [SOLVED] append colored text to an image
- Replies: 4
- Views: 10931
Re: append colored text to an image
Geemack,
That works for me .
Can you enclose that text in rectangle before addition so that I have separated rows at bottom of image .
Actually I am pointing a straight line to bottom of image .
That works for me .
Can you enclose that text in rectangle before addition so that I have separated rows at bottom of image .
Actually I am pointing a straight line to bottom of image .
- 2019-06-24T16:04:13-07:00
- Forum: Users
- Topic: [SOLVED] drawing line using relative coordinate like 'bottom left'
- Replies: 6
- Views: 14535
Re: drawing line using relative coordinate like 'bottom left'
That draws a vertical line.
Combining both was a good idea too.
Now, if somehow I could get text enclosed in rectangle while adding to image then it will be clear that which vertical line is meant for which text .
Combining both was a good idea too.
Now, if somehow I could get text enclosed in rectangle while adding to image then it will be clear that which vertical line is meant for which text .
- 2019-06-24T15:55:21-07:00
- Forum: Users
- Topic: [SOLVED] drawing line using relative coordinate like 'bottom left'
- Replies: 6
- Views: 14535
Re: drawing line using relative coordinate like 'bottom left'
I am using $ convert --version Version: ImageMagick 6.8.9-9 Q16 x86_64 2018-09-28 http://www.imagemagick.org Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC Features: DPC Modules OpenMP Delegates: bzlib cairo djvu fftw fontconfig freetype jbig jng jpeg lcms lqr ltdl lzma openexr pangocairo ...
- 2019-06-24T04:12:00-07:00
- Forum: Users
- Topic: [SOLVED] drawing line using relative coordinate like 'bottom left'
- Replies: 6
- Views: 14535
[SOLVED] drawing line using relative coordinate like 'bottom left'
hi, I am writing a script that takes a x,y coordinate from a text file then draws a circle around that position. It also picks up label from the same text file for that x,y coordinate and appends it at the bottom of image. Now, I want to draw a line from that x,y position to bottom of image. My ...
- 2019-06-23T22:49:14-07:00
- Forum: Users
- Topic: how to specify diffferent color in a loop in script
- Replies: 10
- Views: 17744
Re: how to specify diffferent color in a loop in script
yeah.
that works.
I got an image with 1 pixel colors stacked horizontally .
Thanks snibgo .
that works.
I got an image with 1 pixel colors stacked horizontally .
Thanks snibgo .
- 2019-06-14T00:51:44-07:00
- Forum: Users
- Topic: how to specify diffferent color in a loop in script
- Replies: 10
- Views: 17744
Re: how to specify diffferent color in a loop in script
I am using imagemagick on 64bit ubuntu OS $ convert -version Version: ImageMagick 6.8.9-9 Q16 x86_64 2018-09-28 http://www.imagemagick.org Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC Features: DPC Modules OpenMP Delegates: bzlib cairo djvu fftw fontconfig freetype jbig jng jpeg lcms ...
- 2019-06-09T09:45:38-07:00
- Forum: Users
- Topic: how to specify diffferent color in a loop in script
- Replies: 10
- Views: 17744
Re: how to specify diffferent color in a loop in script
(Is there some way to tell im to consider origin at bottom left ?) Not that I am aware. But you can flip the image vertically, then process, then flip vertically again. ok . That can work . But main question remains that changing hue value results in similiar colors when saturation and brightness ...
- 2019-06-08T19:37:59-07:00
- Forum: Users
- Topic: how to specify diffferent color in a loop in script
- Replies: 10
- Views: 17744
Re: how to specify diffferent color in a loop in script
hi, here is my python script import cv2 import numpy as np import sys import os import subprocess src_img = cv2.imread(sys.argv[1]) height,width,channel=src_img.shape file_name_without_ext=sys.argv[1].split('/')[-1].replace('.png','') xyt_file=sys.argv[2] cat_xyt_wc = 'cat '+xyt_file+' | wc -l ...
- 2019-06-08T19:06:07-07:00
- Forum: Users
- Topic: [SOLVED] append colored text to an image
- Replies: 4
- Views: 10931
[SOLVED] append colored text to an image
hi, I am using $ display --version Version: ImageMagick 6.8.9-9 Q16 x86_64 2018-09-28 http://www.imagemagick.org Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC Features: DPC Modules OpenMP Delegates: bzlib cairo djvu fftw fontconfig freetype jbig jng jpeg lcms lqr ltdl lzma openexr ...
- 2019-05-11T00:48:39-07:00
- Forum: Users
- Topic: how to specify diffferent color in a loop in script
- Replies: 10
- Views: 17744
Re: how to specify diffferent color in a loop in script
sorry , wasn't online for long time.
I will try different values of h .
Then I will show the script , it draws circles after getting location from text file.
I will try different values of h .
Then I will show the script , it draws circles after getting location from text file.