コード例 #1
0
ファイル: ProductController.cs プロジェクト: fathurxzz/aleqx
        public ActionResult Create(FormCollection collection, HttpPostedFileBase fileUpload, HttpPostedFileBase previewFileUpload)
        {
            using (var context = new SiteContainer())
            {
                if (fileUpload != null && previewFileUpload != null)
                {
                    var product = new Product();

                    TryUpdateModel(product, new[] { "SortOrder" });
                    product.Description = HttpUtility.HtmlDecode(collection["Description"]);

                    string fileName = IOHelper.GetUniqueFileName("~/Content/Images", fileUpload.FileName);
                    string filePath = Server.MapPath("~/Content/Images");
                    filePath = Path.Combine(filePath, fileName);
                    GraphicsHelper.SaveOriginalImage(filePath, fileName, fileUpload, 500);
                    product.ImageSource = fileName;

                    fileName = IOHelper.GetUniqueFileName("~/Content/Images", previewFileUpload.FileName);
                    filePath = Server.MapPath("~/Content/Images");
                    filePath = Path.Combine(filePath, fileName);
                    GraphicsHelper.SaveOriginalImage(filePath, fileName, previewFileUpload, 500);
                    product.PreviewImageSource = fileName;

                    context.AddToProduct(product);

                    context.SaveChanges();
                }

                return RedirectToAction("Index", "Home", new { area = "", id = "gallery" });
            }
        }
コード例 #2
0
ファイル: ProductController.cs プロジェクト: fathurxzz/aleqx
        public ActionResult CustomCreate(FormCollection form, HttpPostedFileBase files)
        {
            using (var context = new SiteContainer())
            {
                if (files!=null)
                {
                    var product = new Product();
                    TryUpdateModel(product, new[] { "SortOrder"});
                    product.Description = HttpUtility.HtmlDecode(form["Description"]);

                    string fileName = IOHelper.GetUniqueFileName("~/Content/Images", files.FileName);
                    string filePath = Server.MapPath("~/Content/Images");
                    filePath = Path.Combine(filePath, fileName);
                    GraphicsHelper.SaveOriginalImage(filePath, fileName, files, 1200);
                    product.ImageSource = fileName;

                    fileName = IOHelper.GetUniqueFileName("~/Content/Images", files.FileName);
                    filePath = Server.MapPath("~/Content/Images");
                    filePath = Path.Combine(filePath, fileName);
                    int x1 = Convert.ToInt32(form["x1"]);
                    int y1 = Convert.ToInt32(form["y1"]);
                    int w = Convert.ToInt32(form["w"]);
                    int h = Convert.ToInt32(form["h"]);
                    
                    GraphicsHelper.SaveCropPreview(filePath, fileName, files, x1, y1, w, h);
                    product.PreviewImageSource = fileName;


                    context.AddToProduct(product);
                    context.SaveChanges();
                }
            }
            return RedirectToAction("Index", "Home", new { area = "", id = "gallery" });
        }