如何将 Net::BER::BerIdentifiedString 保存为二进制文件?

发布于 2025-01-04 19:25:00 字数 211 浏览 0 评论 0原文

任何人都知道如何将 Net::BER::BerIdentifiedString 保存为二进制文件 文件?

我尝试过 .dump,但没有成功。我注意到有一个 .bytes 枚举器,但我不知道如何处理它。

基本上,我有一个 Net::BER::BerIdentifiedString [Binary Data] 持有 LDAP 调用中的个人资料照片,我想将其另存为 jpg 文件。

Anyone know how to save a Net::BER::BerIdentifiedString as a binary
file?

I've tried .dump, but that did not work. I noticed there's a .bytes
enumerator, but I'm not sure what to do with it.

Basically, I have an Net::BER::BerIdentifiedString [Binary Data] which
is holding a profile photo from an LDAP call, and I want to save it as a
jpg file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南渊 2025-01-11 19:25:00

没关系。我只通过编写 BerIndentified 就可以完成这项工作
细绳;不知道为什么当我第一次在 Rails 中尝试时它不起作用。

无论如何,这是片段:

ldap.search(:base => base, :filter => filter, :return_result => true) do |entry|
  [:thumbnailphoto, :jpegphoto, :photo].each do |photo_key|
    if entry.attribute_names.include?(photo_key)
      @ldap_photo = entry[photo_key][0]
      File.open(file_name, 'wb') { |f| f.write(@ldap_photo) }
      break
    end
  end
end

Never mind. I got this working by just writing the BerIndentified
String; not sure why it didn't work when I first tried it in Rails.

Anyway, here's the snippet:

ldap.search(:base => base, :filter => filter, :return_result => true) do |entry|
  [:thumbnailphoto, :jpegphoto, :photo].each do |photo_key|
    if entry.attribute_names.include?(photo_key)
      @ldap_photo = entry[photo_key][0]
      File.open(file_name, 'wb') { |f| f.write(@ldap_photo) }
      break
    end
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文