Compare commits
2 Commits
6b22d8465e
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 7b13f45bd3 | |||
| 5535bfe290 |
@@ -33,9 +33,12 @@ You can find more info on the available Widgets and their parameters at the end
|
|||||||
### Convert image without dithering
|
### Convert image without dithering
|
||||||
`convert trmnl.png -monochrome -colors 2 -depth 1 -strip png:output.png`
|
`convert trmnl.png -monochrome -colors 2 -depth 1 -strip png:output.png`
|
||||||
|
|
||||||
### Convert image with dithering
|
### Convert image with Floyd Steinberg dithering (For normal images)
|
||||||
`convert trmnl.png -dither FloydSteinberg -remap pattern:gray50 -depth 1 -strip png:output.png`
|
`convert trmnl.png -dither FloydSteinberg -remap pattern:gray50 -depth 1 -strip png:output.png`
|
||||||
|
|
||||||
|
### Convert image with Ordered dithering (For flat colors)
|
||||||
|
`convert trmnl.png -ordered-dither o2x2 -remap pattern:gray50 -depth 1 -strip png:output.png`
|
||||||
|
|
||||||
### Resize image to fit with dithering
|
### Resize image to fit with dithering
|
||||||
`convert image.png -resize 800x480 -background white -compose Copy -gravity center -extent 800x480 -dither FloydSteinberg -remap pattern:gray50 -depth 1 -strip png:output.png`
|
`convert image.png -resize 800x480 -background white -compose Copy -gravity center -extent 800x480 -dither FloydSteinberg -remap pattern:gray50 -depth 1 -strip png:output.png`
|
||||||
|
|
||||||
|
|||||||
@@ -172,6 +172,7 @@ void WidgetText::set_halign_via_visible(bool value)
|
|||||||
{
|
{
|
||||||
m_halign_via_visible = value;
|
m_halign_via_visible = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
void WidgetText::set_valign_via_visible(bool value)
|
void WidgetText::set_valign_via_visible(bool value)
|
||||||
{
|
{
|
||||||
m_valign_via_visible = value;
|
m_valign_via_visible = value;
|
||||||
@@ -179,6 +180,7 @@ void WidgetText::set_valign_via_visible(bool value)
|
|||||||
|
|
||||||
void WidgetText::draw()
|
void WidgetText::draw()
|
||||||
{
|
{
|
||||||
|
int current_text_size = m_size;
|
||||||
if (nullptr == m_surface)
|
if (nullptr == m_surface)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
@@ -193,7 +195,7 @@ void WidgetText::draw()
|
|||||||
font_name = default_font_name;
|
font_name = default_font_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
TTF_Font* font = get_font(m_size, font_name);
|
TTF_Font* font = get_font(current_text_size, font_name);
|
||||||
if (nullptr == font)
|
if (nullptr == font)
|
||||||
{
|
{
|
||||||
// TODO: Message printing
|
// TODO: Message printing
|
||||||
@@ -209,40 +211,42 @@ void WidgetText::draw()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if text fits
|
// Enlarge text until it becomes too big
|
||||||
|
if (FIT_AUTO == m_fit)
|
||||||
|
{
|
||||||
|
while ((txt_surface->w < m_surface->w) && (txt_surface->h < m_surface->h))
|
||||||
|
{
|
||||||
|
// Increase size and try again
|
||||||
|
++current_text_size;
|
||||||
|
|
||||||
|
// Re-render text
|
||||||
|
SDL_FreeSurface(txt_surface);
|
||||||
|
font = get_font(current_text_size, font_name);
|
||||||
|
if (nullptr == font)
|
||||||
|
{
|
||||||
|
// TODO: Message printing
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
txt_surface = render_text(m_should_wrap, font, m_text, m_text_color, m_rect.w);
|
||||||
|
if (nullptr == txt_surface)
|
||||||
|
{
|
||||||
|
// TODO: Message printing
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Shrink if it doesn't fit
|
||||||
if (m_fit != FIT_NONE)
|
if (m_fit != FIT_NONE)
|
||||||
{
|
{
|
||||||
double x_scale;
|
while ((txt_surface->w > m_surface->w) || (txt_surface->h > m_surface->h))
|
||||||
double y_scale;
|
|
||||||
|
|
||||||
x_scale = m_surface->w;
|
|
||||||
x_scale /= txt_surface->w;
|
|
||||||
|
|
||||||
y_scale = m_surface->h;
|
|
||||||
y_scale /= txt_surface->h;
|
|
||||||
|
|
||||||
// Find the scale needed to shrink or enlarge with
|
|
||||||
double min_scale = x_scale;
|
|
||||||
if (y_scale < min_scale)
|
|
||||||
{
|
{
|
||||||
min_scale = y_scale;
|
// Decrease size and try again
|
||||||
}
|
--current_text_size;
|
||||||
|
|
||||||
// Do not scale up if only shrinkage is allowed
|
// Re-render text
|
||||||
if ((min_scale > 1.0) && (FIT_SHRINK == m_fit))
|
|
||||||
{
|
|
||||||
min_scale = 1.0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Find new font size
|
|
||||||
int new_text_size = m_size;
|
|
||||||
new_text_size *= min_scale;
|
|
||||||
|
|
||||||
// Re-render text
|
|
||||||
if (new_text_size != m_size)
|
|
||||||
{
|
|
||||||
SDL_FreeSurface(txt_surface);
|
SDL_FreeSurface(txt_surface);
|
||||||
font = get_font(new_text_size, font_name);
|
font = get_font(current_text_size, font_name);
|
||||||
if (nullptr == font)
|
if (nullptr == font)
|
||||||
{
|
{
|
||||||
// TODO: Message printing
|
// TODO: Message printing
|
||||||
|
|||||||
Reference in New Issue
Block a user