public TinyMCEWebControl() : base() { _fs = FileSystemProviderManager.Current.GetFileSystemProvider<MediaFileSystem>(); base.TextMode = TextBoxMode.MultiLine; base.Attributes.Add("style", "visibility: hidden"); config.Add("mode", "exact"); config.Add("theme", "umbraco"); config.Add("umbraco_path", global::Umbraco.Core.IO.IOHelper.ResolveUrl(global::Umbraco.Core.IO.SystemDirectories.Umbraco)); CssClass = "tinymceContainer"; plugin.ConfigSection configSection = (plugin.ConfigSection)System.Web.HttpContext.Current.GetSection("TinyMCE"); if (configSection != null) { this.installPath = configSection.InstallPath; this.mode = configSection.Mode; this.gzipEnabled = configSection.GzipEnabled; // Copy items into local config collection foreach (string key in configSection.GlobalSettings.Keys) this.config[key] = configSection.GlobalSettings[key]; } else { configSection = new plugin.ConfigSection(); configSection.GzipExpiresOffset = TimeSpan.FromDays(10).Ticks; this.gzipEnabled = false; this.InstallPath = umbraco.editorControls.tinymce.tinyMCEConfiguration.JavascriptPath; } }
public UmbracoFile(string path) { _fs = FileSystemProviderManager.Current.GetFileSystemProvider<MediaFileSystem>(); _path = path; initialize(); }
public UmbracoMediaFile(string path) { _fs = FileSystemProviderManager.Current.GetFileSystemProvider <MediaFileSystem>(); Path = path; Initialize(); }
protected UmbracoMediaFactory() { FileSystem = FileSystemProviderManager.Current.GetFileSystemProvider<MediaFileSystem>(); }
private static Tuple<int, int, string> GenerateThumbnail(MediaFileSystem fileSystem, Image image, int maxWidthHeight, int fileWidth, int fileHeight, string fullFilePath, string extension, string thumbnailFileName, bool useFixedDimensions) { // Generate thumbnail float f = 1; if (!useFixedDimensions) { var fx = (float)image.Size.Width / (float)maxWidthHeight; var fy = (float)image.Size.Height / (float)maxWidthHeight; // must fit in thumbnail size f = Math.Max(fx, fy); //if (f < 1) f = 1; } var widthTh = (int)Math.Round((float)fileWidth / f); int heightTh = (int)Math.Round((float)fileHeight / f); // fixes for empty width or height if (widthTh == 0) widthTh = 1; if (heightTh == 0) heightTh = 1; // Create new image with best quality settings var bp = new Bitmap(widthTh, heightTh); var g = Graphics.FromImage(bp); g.SmoothingMode = SmoothingMode.HighQuality; g.InterpolationMode = InterpolationMode.HighQualityBicubic; g.PixelOffsetMode = PixelOffsetMode.HighQuality; g.CompositingQuality = CompositingQuality.HighQuality; // Copy the old image to the new and resized var rect = new Rectangle(0, 0, widthTh, heightTh); g.DrawImage(image, rect, 0, 0, image.Width, image.Height, GraphicsUnit.Pixel); // Copy metadata var imageEncoders = ImageCodecInfo.GetImageEncoders(); ImageCodecInfo codec = null; if (extension.ToLower() == "png" || extension.ToLower() == "gif") codec = imageEncoders.Single(t => t.MimeType.Equals("image/png")); else codec = imageEncoders.Single(t => t.MimeType.Equals("image/jpeg")); // Set compresion ratio to 90% var ep = new EncoderParameters(); ep.Param[0] = new EncoderParameter(Encoder.Quality, 90L); // Save the new image using the dimensions of the image string newFileName = thumbnailFileName.Replace("UMBRACOSYSTHUMBNAIL", string.Format("{0}x{1}", widthTh, heightTh)); var ms = new MemoryStream(); bp.Save(ms, codec, ep); ms.Seek(0, 0); fileSystem.AddFile(newFileName, ms); ms.Close(); bp.Dispose(); g.Dispose(); return new Tuple<int, int, string>(widthTh, heightTh, newFileName); }
private static string DoResize(MediaFileSystem fileSystem, string path, string extension, int width, int height, int maxWidthHeight, string fileNameAddition) { var fs = fileSystem.OpenFile(path); var image = Image.FromStream(fs); fs.Close(); string fileNameThumb = String.IsNullOrEmpty(fileNameAddition) ? string.Format("{0}_UMBRACOSYSTHUMBNAIL.jpg", path.Substring(0, path.LastIndexOf("."))) : string.Format("{0}_{1}.jpg", path.Substring(0, path.LastIndexOf(".")), fileNameAddition); var thumb = GenerateThumbnail(fileSystem, image, maxWidthHeight, width, height, path, extension, fileNameThumb, maxWidthHeight == 0); fileNameThumb = thumb.Item3; image.Dispose(); return fileNameThumb; }
private static Tuple<int, int> GetDimensions(MediaFileSystem fileSystem, string path) { var fs = fileSystem.OpenFile(path); var image = Image.FromStream(fs); var fileWidth = image.Width; var fileHeight = image.Height; fs.Close(); image.Dispose(); return new Tuple<int, int>(fileWidth, fileHeight); }
private static string Resize(MediaFileSystem fileSystem, string path, string extension, int maxWidthHeight, string fileNameAddition) { var fileNameThumb = DoResize(fileSystem, path, extension, GetDimensions(fileSystem, path).Item1, GetDimensions(fileSystem, path).Item2, maxWidthHeight, fileNameAddition); return fileSystem.GetUrl(fileNameThumb); }
protected UmbracoMetaWeblogAPI() { _fs = FileSystemProviderManager.Current.GetFileSystemProvider<MediaFileSystem>(); }
public UmbracoFile() { _fs = FileSystemProviderManager.Current.GetFileSystemProvider<MediaFileSystem>(); }
public mediaService() { _fs = FileSystemProviderManager.Current.GetFileSystemProvider<MediaFileSystem>(); }
public UmbracoMediaFile() { _fs = FileSystemProviderManager.Current.GetFileSystemProvider <MediaFileSystem>(); }
private static ResizedImage Resize(MediaFileSystem fileSystem, string path, string extension, int maxWidthHeight, string fileNameAddition, Image originalImage) { var fileNameThumb = String.IsNullOrEmpty(fileNameAddition) ? string.Format("{0}_UMBRACOSYSTHUMBNAIL.jpg", path.Substring(0, path.LastIndexOf("."))) : string.Format("{0}_{1}.jpg", path.Substring(0, path.LastIndexOf(".")), fileNameAddition); var thumb = GenerateThumbnail(fileSystem, originalImage, maxWidthHeight, extension, fileNameThumb, maxWidthHeight == 0); return thumb; }