OutOfMemory when saving imagein Richtextbox
I am using a richtextbox as a notes fields, which enable user to add image
now I get outofmemory error when saving the fields when it contains image with resolution 4800x2800,
error occurs on rtfText = Me.txtNotes.Rtf when I debug it
"An unhandled exception of type 'System.OutOfMemoryException' occurred in mscorlib.dll"
is there a limit to the size ? I am planning to limit the image to 1920x1080 but not sure how since it's returns OOM error before I can do anything (I think it's from richtextbox.rtf)
Would appreciate if I can get help to limit the image resolution that can be added
Private Function ValidateRichTextImage() As Boolean
Dim rtfText As String
Dim width As Integer
Dim height As Integer
rtfText = Me.txtNotes.Rtf
Dim widthRegex As New Regex("picwgoal[d]+")
Dim heightRegex As New Regex("pichgoal[d]+")
Dim widthmatch = widthRegex.Match(rtfText)
If widthmatch.success Then
Dim swidth As String = widthmatch.ToString.Replace("picwgoal", "")
width = Integer.Parse(swidth) / 15
End If
Dim heightmatch = heightRegex.Match(rtfText)
If heightmatch.success Then
Dim sheight As String = heightmatch.ToString.Replace("pichgoal", "")
height = Integer.Parse(sheight) / 15
End If
If rtfText.Contains("picwgoal") AndAlso width = 0 AndAlso height = 0 Then
Me.Errors.Add("P1MMO0001", , Tb.Errors.ErrorTypeType.ErrorTypeError, , )
Return False
End If
If width >= height Then 'landscape
If width > mcImageWidth OrElse height > mcImageHeight Then
Me.Errors.Add("P1MMO0001", , Tb.Errors.ErrorTypeType.ErrorTypeError, , )
Return False
End If
Else 'portrait
If width > mcImageHeight OrElse height > mcImageWidth Then
Me.Errors.Add("P1MMO0001", , Tb.Errors.ErrorTypeType.ErrorTypeError, , )
Return False
End If
End If
Return True
End Function
vb.net image out-of-memory richtextbox
add a comment |
I am using a richtextbox as a notes fields, which enable user to add image
now I get outofmemory error when saving the fields when it contains image with resolution 4800x2800,
error occurs on rtfText = Me.txtNotes.Rtf when I debug it
"An unhandled exception of type 'System.OutOfMemoryException' occurred in mscorlib.dll"
is there a limit to the size ? I am planning to limit the image to 1920x1080 but not sure how since it's returns OOM error before I can do anything (I think it's from richtextbox.rtf)
Would appreciate if I can get help to limit the image resolution that can be added
Private Function ValidateRichTextImage() As Boolean
Dim rtfText As String
Dim width As Integer
Dim height As Integer
rtfText = Me.txtNotes.Rtf
Dim widthRegex As New Regex("picwgoal[d]+")
Dim heightRegex As New Regex("pichgoal[d]+")
Dim widthmatch = widthRegex.Match(rtfText)
If widthmatch.success Then
Dim swidth As String = widthmatch.ToString.Replace("picwgoal", "")
width = Integer.Parse(swidth) / 15
End If
Dim heightmatch = heightRegex.Match(rtfText)
If heightmatch.success Then
Dim sheight As String = heightmatch.ToString.Replace("pichgoal", "")
height = Integer.Parse(sheight) / 15
End If
If rtfText.Contains("picwgoal") AndAlso width = 0 AndAlso height = 0 Then
Me.Errors.Add("P1MMO0001", , Tb.Errors.ErrorTypeType.ErrorTypeError, , )
Return False
End If
If width >= height Then 'landscape
If width > mcImageWidth OrElse height > mcImageHeight Then
Me.Errors.Add("P1MMO0001", , Tb.Errors.ErrorTypeType.ErrorTypeError, , )
Return False
End If
Else 'portrait
If width > mcImageHeight OrElse height > mcImageWidth Then
Me.Errors.Add("P1MMO0001", , Tb.Errors.ErrorTypeType.ErrorTypeError, , )
Return False
End If
End If
Return True
End Function
vb.net image out-of-memory richtextbox
Show us what you're doing now. ALWAYS show us what you're doing now.
– jmcilhinney
Nov 21 at 2:16
I was trying to limit the image resolution allowed, it works for 1920, but when larger image used it throws OOM
– yogasp
Nov 21 at 3:07
add a comment |
I am using a richtextbox as a notes fields, which enable user to add image
now I get outofmemory error when saving the fields when it contains image with resolution 4800x2800,
error occurs on rtfText = Me.txtNotes.Rtf when I debug it
"An unhandled exception of type 'System.OutOfMemoryException' occurred in mscorlib.dll"
is there a limit to the size ? I am planning to limit the image to 1920x1080 but not sure how since it's returns OOM error before I can do anything (I think it's from richtextbox.rtf)
Would appreciate if I can get help to limit the image resolution that can be added
Private Function ValidateRichTextImage() As Boolean
Dim rtfText As String
Dim width As Integer
Dim height As Integer
rtfText = Me.txtNotes.Rtf
Dim widthRegex As New Regex("picwgoal[d]+")
Dim heightRegex As New Regex("pichgoal[d]+")
Dim widthmatch = widthRegex.Match(rtfText)
If widthmatch.success Then
Dim swidth As String = widthmatch.ToString.Replace("picwgoal", "")
width = Integer.Parse(swidth) / 15
End If
Dim heightmatch = heightRegex.Match(rtfText)
If heightmatch.success Then
Dim sheight As String = heightmatch.ToString.Replace("pichgoal", "")
height = Integer.Parse(sheight) / 15
End If
If rtfText.Contains("picwgoal") AndAlso width = 0 AndAlso height = 0 Then
Me.Errors.Add("P1MMO0001", , Tb.Errors.ErrorTypeType.ErrorTypeError, , )
Return False
End If
If width >= height Then 'landscape
If width > mcImageWidth OrElse height > mcImageHeight Then
Me.Errors.Add("P1MMO0001", , Tb.Errors.ErrorTypeType.ErrorTypeError, , )
Return False
End If
Else 'portrait
If width > mcImageHeight OrElse height > mcImageWidth Then
Me.Errors.Add("P1MMO0001", , Tb.Errors.ErrorTypeType.ErrorTypeError, , )
Return False
End If
End If
Return True
End Function
vb.net image out-of-memory richtextbox
I am using a richtextbox as a notes fields, which enable user to add image
now I get outofmemory error when saving the fields when it contains image with resolution 4800x2800,
error occurs on rtfText = Me.txtNotes.Rtf when I debug it
"An unhandled exception of type 'System.OutOfMemoryException' occurred in mscorlib.dll"
is there a limit to the size ? I am planning to limit the image to 1920x1080 but not sure how since it's returns OOM error before I can do anything (I think it's from richtextbox.rtf)
Would appreciate if I can get help to limit the image resolution that can be added
Private Function ValidateRichTextImage() As Boolean
Dim rtfText As String
Dim width As Integer
Dim height As Integer
rtfText = Me.txtNotes.Rtf
Dim widthRegex As New Regex("picwgoal[d]+")
Dim heightRegex As New Regex("pichgoal[d]+")
Dim widthmatch = widthRegex.Match(rtfText)
If widthmatch.success Then
Dim swidth As String = widthmatch.ToString.Replace("picwgoal", "")
width = Integer.Parse(swidth) / 15
End If
Dim heightmatch = heightRegex.Match(rtfText)
If heightmatch.success Then
Dim sheight As String = heightmatch.ToString.Replace("pichgoal", "")
height = Integer.Parse(sheight) / 15
End If
If rtfText.Contains("picwgoal") AndAlso width = 0 AndAlso height = 0 Then
Me.Errors.Add("P1MMO0001", , Tb.Errors.ErrorTypeType.ErrorTypeError, , )
Return False
End If
If width >= height Then 'landscape
If width > mcImageWidth OrElse height > mcImageHeight Then
Me.Errors.Add("P1MMO0001", , Tb.Errors.ErrorTypeType.ErrorTypeError, , )
Return False
End If
Else 'portrait
If width > mcImageHeight OrElse height > mcImageWidth Then
Me.Errors.Add("P1MMO0001", , Tb.Errors.ErrorTypeType.ErrorTypeError, , )
Return False
End If
End If
Return True
End Function
vb.net image out-of-memory richtextbox
vb.net image out-of-memory richtextbox
edited Nov 21 at 2:58
asked Nov 21 at 1:57
yogasp
11
11
Show us what you're doing now. ALWAYS show us what you're doing now.
– jmcilhinney
Nov 21 at 2:16
I was trying to limit the image resolution allowed, it works for 1920, but when larger image used it throws OOM
– yogasp
Nov 21 at 3:07
add a comment |
Show us what you're doing now. ALWAYS show us what you're doing now.
– jmcilhinney
Nov 21 at 2:16
I was trying to limit the image resolution allowed, it works for 1920, but when larger image used it throws OOM
– yogasp
Nov 21 at 3:07
Show us what you're doing now. ALWAYS show us what you're doing now.
– jmcilhinney
Nov 21 at 2:16
Show us what you're doing now. ALWAYS show us what you're doing now.
– jmcilhinney
Nov 21 at 2:16
I was trying to limit the image resolution allowed, it works for 1920, but when larger image used it throws OOM
– yogasp
Nov 21 at 3:07
I was trying to limit the image resolution allowed, it works for 1920, but when larger image used it throws OOM
– yogasp
Nov 21 at 3:07
add a comment |
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53404290%2foutofmemory-when-saving-imagein-richtextbox%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53404290%2foutofmemory-when-saving-imagein-richtextbox%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Show us what you're doing now. ALWAYS show us what you're doing now.
– jmcilhinney
Nov 21 at 2:16
I was trying to limit the image resolution allowed, it works for 1920, but when larger image used it throws OOM
– yogasp
Nov 21 at 3:07