mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-06 01:06:37 +08:00
120 lines
3.0 KiB
C#
120 lines
3.0 KiB
C#
/*
|
|
* Copyright 2012 ZXing.Net authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
|
|
namespace ZXing.Common
|
|
{
|
|
/// <summary>
|
|
/// Defines an container for encoder options
|
|
/// </summary>
|
|
public class EncodingOptions
|
|
{
|
|
/// <summary>
|
|
/// Gets the data container for all options
|
|
/// </summary>
|
|
public IDictionary<EncodeHintType, object> Hints { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Specifies the height of the barcode image
|
|
/// </summary>
|
|
public int Height
|
|
{
|
|
get
|
|
{
|
|
if (Hints.ContainsKey(EncodeHintType.HEIGHT))
|
|
{
|
|
return (int)Hints[EncodeHintType.HEIGHT];
|
|
}
|
|
return 0;
|
|
}
|
|
set
|
|
{
|
|
Hints[EncodeHintType.HEIGHT] = value;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Specifies the width of the barcode image
|
|
/// </summary>
|
|
public int Width
|
|
{
|
|
get
|
|
{
|
|
if (Hints.ContainsKey(EncodeHintType.WIDTH))
|
|
{
|
|
return (int)Hints[EncodeHintType.WIDTH];
|
|
}
|
|
return 0;
|
|
}
|
|
set
|
|
{
|
|
Hints[EncodeHintType.WIDTH] = value;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Don't put the content string into the output image.
|
|
/// </summary>
|
|
public bool PureBarcode
|
|
{
|
|
get
|
|
{
|
|
if (Hints.ContainsKey(EncodeHintType.PURE_BARCODE))
|
|
{
|
|
return (bool)Hints[EncodeHintType.PURE_BARCODE];
|
|
}
|
|
return false;
|
|
}
|
|
set
|
|
{
|
|
Hints[EncodeHintType.PURE_BARCODE] = value;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Specifies margin, in pixels, to use when generating the barcode. The meaning can vary
|
|
/// by format; for example it controls margin before and after the barcode horizontally for
|
|
/// most 1D formats.
|
|
/// </summary>
|
|
public int Margin
|
|
{
|
|
get
|
|
{
|
|
if (Hints.ContainsKey(EncodeHintType.MARGIN))
|
|
{
|
|
return (int) Hints[EncodeHintType.MARGIN];
|
|
}
|
|
return 0;
|
|
}
|
|
set
|
|
{
|
|
Hints[EncodeHintType.MARGIN] = value;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="EncodingOptions"/> class.
|
|
/// </summary>
|
|
public EncodingOptions()
|
|
{
|
|
Hints = new Dictionary<EncodeHintType, object>();
|
|
}
|
|
}
|
|
}
|