mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 17:08:47 +08:00
Implements the "scale" filter to prevent image degradation (#8713)
This commit is contained in:
parent
d8bb23a4c4
commit
b854839a28
@ -22,13 +22,14 @@ namespace Orchard.MediaProcessing.Shapes {
|
||||
public ILogger Logger { get; set; }
|
||||
|
||||
[Shape]
|
||||
public void ResizeMediaUrl(dynamic Shape, dynamic Display, TextWriter Output, ContentItem ContentItem, string Path, int Width, int Height, string Mode, string Alignment, string PadColor) {
|
||||
public void ResizeMediaUrl(dynamic Shape, dynamic Display, TextWriter Output, ContentItem ContentItem, string Path, int Width, int Height, string Mode, string Alignment, string PadColor, string Scale= "upscaleOnly") {
|
||||
var state = new Dictionary<string, string> {
|
||||
{"Width", Width.ToString(CultureInfo.InvariantCulture)},
|
||||
{"Height", Height.ToString(CultureInfo.InvariantCulture)},
|
||||
{"Mode", Mode},
|
||||
{"Alignment", Alignment},
|
||||
{"PadColor", PadColor},
|
||||
{"Scale", Scale},
|
||||
};
|
||||
|
||||
var filter = new FilterRecord {
|
||||
@ -42,7 +43,8 @@ namespace Orchard.MediaProcessing.Shapes {
|
||||
+ "_h_" + Convert.ToString(Height)
|
||||
+ "_m_" + Convert.ToString(Mode)
|
||||
+ "_a_" + Convert.ToString(Alignment)
|
||||
+ "_c_" + Convert.ToString(PadColor);
|
||||
+ "_c_" + Convert.ToString(PadColor)
|
||||
+ "_s_" + Convert.ToString(Scale);
|
||||
|
||||
MediaUrl(Shape, Display, Output, profile, Path, ContentItem, filter);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user