1
vote
2answers
231 views
0
votes
4answers
155 views
Accessing Page Class From Another Page Class
How do I access a page class from another class. For example I have:
public partial class MyPage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
…
0
votes
2answers
144 views
Graphics object to image file
I would like to crop and resize my image. Here is my code:
Image image = Image.FromFile(AppDomain.CurrentDomain.BaseDirectory + "Cropper/tests/castle.jpg");
// Crop and res …
0
votes
2answers
86 views
Pass Bitmap object to unmanaged code
I have the following function in C++ managed (ref) class:
public static void Transform(Bitmap^ img);
I want to call it from C# managed code. What I do is this: …
2
votes
Sharpen on a Bitmap using C#
I took Daniel's answer and modified it for performance, by using BitmapData class, since using GetPixel/SetPixel is very expensive and inappropriate for performance-hungry systems. It works exactly …
0
votes
Compile Error CS0433 on pre-compiled ASP.NET 2.0 site.
I just had this problem. It turns out that, I accidentally drag-&-dropped files from one project to another, which created a duplicate. It took me a while to find the problem, because the files …
