* Generating Channel Logo when none is provided * Moved TTF in the cached Resources folder * Using WebUtility.UrlEncode instead of Raw String Replace * Fixed mistyping * Moved Channel Logo Generator to etv.core * Return 301 to static logo if there is any error during Logo generation * minor fixes * update changelog --------- Co-authored-by: Jason Dove <1695733+jasongdove@users.noreply.github.com>
13 lines
281 B
C#
13 lines
281 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Images;
|
|
|
|
public interface IChannelLogoGenerator
|
|
{
|
|
Either<BaseError, byte[]> GenerateChannelLogo(
|
|
string text,
|
|
int logoHeight,
|
|
int logoWidth,
|
|
CancellationToken cancellationToken);
|
|
}
|