Search found 13 matches

by ohnonot
2017-04-09T03:24:24-07:00
Forum: Users
Topic: pango: errors with (html) entities
Replies: 16
Views: 13216

Re: pango: errors with (html) entities

thanks.
i'll just take it that it's not harmful since many users seem to be showing it.
by ohnonot
2017-04-08T00:23:03-07:00
Forum: Users
Topic: pango: errors with (html) entities
Replies: 16
Views: 13216

Re: pango: errors with (html) entities

thanks to all!

what is that authentication code in the sidebar? i can see that snibgo also has it.
by ohnonot
2017-04-06T23:40:36-07:00
Forum: Users
Topic: pango: errors with (html) entities
Replies: 16
Views: 13216

Re: pango: errors with (html) entities

PS: what is that authentication code in my sidebar? it seems i can't remove it.
by ohnonot
2017-04-06T23:39:54-07:00
Forum: Users
Topic: pango: errors with (html) entities
Replies: 16
Views: 13216

Re: pango: errors with (html) entities

thanks a bunch, that works: pangostring="<span size=\"55555\">\n$(recode ..h0 <<<"$(mpi-panel -u -l2 -w100)" | sed 's/;/\\;/g')</span>" btw, i did some testing and at least one other pango-aware application does not display this behavior. i wonder if i should file a bug with imagemagick... Note ...
by ohnonot
2017-04-06T14:46:55-07:00
Forum: Users
Topic: pango: errors with (html) entities
Replies: 16
Views: 13216

Re: pango: errors with (html) entities

I was hoping to use pango because text spans over 4 lines with 3 different font sizes.
by ohnonot
2017-04-06T14:39:44-07:00
Forum: Users
Topic: pango: errors with (html) entities
Replies: 16
Views: 13216

Re: pango: errors with (html) entities

^ damn you're quick. version added. platform is archlinux. What was your exact command? pangostring="<span size=\"55555\">\n$(recode ..h0 <<<"$(mpi-panel -u -l2 -w100)")</span>" convert -background "$color1" -fill "$color2" -gravity center -size "$((${screensize%%x*} / 2))" pango:"$pangostring ...
by ohnonot
2017-04-06T14:28:50-07:00
Forum: Users
Topic: pango: errors with (html) entities
Replies: 16
Views: 13216

pango: errors with (html) entities

I'm using convert ... pango: to create an image from text, inside a linux bash script. The creation fails when the text contains "weird characters" like & öäå etc.: Pango-WARNING **: pango_layout_set_markup_with_accel: Error on line 3: Entity name ' some &#246' is not known convert: Error on line 3: ...
by ohnonot
2016-04-05T23:54:09-07:00
Forum: Users
Topic: transparent png => matte png with background color --- inconsistent results
Replies: 4
Views: 4937

Re: transparent png => matte png with background color --- inconsistent results

i found out how to get consistent results, but i still do not understand what is happening. tile.png is a placeholder for the original transparent tile, e.g. nami.png is one of the tiles that look differently with theose two different "flattening methods". these two commands provide consistent ...
by ohnonot
2016-04-04T11:03:01-07:00
Forum: Users
Topic: transparent png => matte png with background color --- inconsistent results
Replies: 4
Views: 4937

Re: transparent png => matte png with background color --- inconsistent results

sorry i forgot to provide the version. convert -version Version: ImageMagick 6.9.3-7 Q16 x86_64 2016-03-08 http://www.imagemagick.org Copyright: Copyright (C) 1999-2016 ImageMagick Studio LLC License: http://www.imagemagick.org/script/license.php Features: Cipher DPC HDRI Modules OpenCL OpenMP ...
by ohnonot
2016-03-31T22:13:49-07:00
Forum: Users
Topic: transparent png => matte png with background color --- inconsistent results
Replies: 4
Views: 4937

transparent png => matte png with background color --- inconsistent results

this will take a little explaining.... i have lots of transparent (mostly png) tiles. i wrote a script to preview the tiles by filling a fixed size canvas with the tile, tiled, and a particular background color display -size 800x800 -background "#ff5555" tile:tile.png if so desired, create a new ...
by ohnonot
2012-09-29T01:54:12-07:00
Forum: Users
Topic: change colors in indexed png (all files in folder)
Replies: 5
Views: 7802

Re: change colors in indexed png (all files in folder)

thank you both for the explanation!
by ohnonot
2012-09-12T07:31:32-07:00
Forum: Users
Topic: change colors in indexed png (all files in folder)
Replies: 5
Views: 7802

Re: change colors in indexed png (all files in folder)

glennrp wrote:Try

Code: Select all

  mogrify -fill "#e6d6b7" -opaque "#ffffff *.png 
now it works!
i had tried it also with *.png in the end.
but -fill has to come before -opaque, is that it?
by ohnonot
2012-09-12T05:00:43-07:00
Forum: Users
Topic: change colors in indexed png (all files in folder)
Replies: 5
Views: 7802

change colors in indexed png (all files in folder)

hello everybody, i have a large amount of small png's in a folder. i want to replace white with another color in all of them with this: mogrify *.png -opaque "#ffffff" -fill "#e6d6b7" but nothing happens. the png's are indexed and i thought it's because of that, so i tried to first change that to ...