Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > .NET Framework > Forum > C# โปรแกรมจัดการเกี่ยวกับรูปภาพช่วยแนะนำวิธีการ crop ภาพ



 

C# โปรแกรมจัดการเกี่ยวกับรูปภาพช่วยแนะนำวิธีการ crop ภาพ

 



Topic : 121783



โพสกระทู้ ( 57 )
บทความ ( 0 )



สถานะออฟไลน์




ทำใน วินโด้ฟอมนะครับ ตอนนี้ที่ทำคือเลือกภาพและเเสดงภาพรวมถึงการเซฟเป็นไฟล์ภาพได้แล้ว

อยากรู้วิธีในการทำฟังก์ชันการตัดภาพ ประมานว่ากดปุ่มแล้วมีสี่เหลี่ยมประขึ้นมาให้เลือกขนาดแล้วกด crop รูปอะครับ

อยากขอคำแนะนำหรือแหล่งข้อมุลสำหรับศึกษา รบกวนด้วยครับ



Tag : .NET, C#







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2016-03-07 11:01:59 By : witthawas01 View : 1233 Reply : 1
 

 

No. 1

Guest


Code (C#)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace TextBoxTest
{
    public partial class Form1 : Form
    {
        Point startPos;      // mouse-down position
        Point currentPos;    // current mouse position
        bool drawing;        // busy drawing

        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            currentPos = Point.Empty;
            startPos =  Point.Empty;
            drawing = false;
        }

        private void pictureBox1_MouseDown(object sender, MouseEventArgs e)
        {
            PictureBox pbImage = (PictureBox)sender;
            pbImage.Refresh();

            currentPos = e.Location;
            startPos = e.Location;
            drawing = true;
        }

        private void pictureBox1_MouseMove(object sender, MouseEventArgs e)
        {
            PictureBox pbImage = (PictureBox)sender;

            if (drawing)
            {
                currentPos = e.Location;
                pbImage.Refresh();         
            }
        }

        private void pictureBox1_MouseUp(object sender, MouseEventArgs e)
        {
            PictureBox pbImage = (PictureBox)sender;

            if (drawing)
            {
                drawing = false;
                pbImage.Refresh();

                if (currentPos != startPos)
                    MessageBox.Show(string.Format("x: {0}, y: {1}, w: {2}, h: {3}",
                        Math.Min(startPos.X, currentPos.X), 
                        Math.Min(startPos.Y, currentPos.Y),
                        Math.Abs(startPos.X - currentPos.X),
                        Math.Abs(startPos.Y - currentPos.Y)), "Rectangle", MessageBoxButtons.OK);
            }
        }

        private void pictureBox1_Paint(object sender, PaintEventArgs e)
        {
            Rectangle rectangle = new Rectangle(
                Math.Min(startPos.X, currentPos.X),
                Math.Min(startPos.Y, currentPos.Y),
                Math.Abs(startPos.X - currentPos.X),
                Math.Abs(startPos.Y - currentPos.Y));

            using (Brush brush = new SolidBrush(Color.FromArgb(128, 100, 149, 237)))
            {
                if (startPos != Point.Empty)
                {
                    e.Graphics.DrawRectangle(Pens.CornflowerBlue, rectangle);
                    e.Graphics.FillRectangle(brush, rectangle);
                }

                if (drawing)
                {
                    e.Graphics.DrawRectangle(Pens.CornflowerBlue, rectangle);
                    e.Graphics.FillRectangle(brush, rectangle);
                }
            }
        }
    }
}







แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2016-03-07 16:50:53 By : ห้ามตอบเกินวันละ 2 กระทู้
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : C# โปรแกรมจัดการเกี่ยวกับรูปภาพช่วยแนะนำวิธีการ crop ภาพ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 05
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่